@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --primary: #42BEE2;
  --primary-hover: #2DA7CB;
  --secondary: #102033;
  --bg-light: #f8fafc;
  --bg-blue-light: #e6f6fb;
  /* Approximated from rgba(66,190,226,0.16) */
  --text-dark: #444444;
  --text-gray: #555555;
  --text-light: #94a3b8;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: none;
  --shadow-lg: none;
  --radius: 20px;
  --radius-lg: 30px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 500;
}

h2 {
  font-size: 2.25rem;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-white {
  color: var(--white);
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 3.5rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--bg-blue-light);
}

.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
}

/* Header — Floating Pill Bar */
.header {
  padding: 0.75rem 2rem;
  position: sticky;
  top: 0.75rem;
  z-index: 50;
  border-bottom: none;
  background: transparent;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border-radius: 9999px;
  padding: 0.5rem 0.75rem 0.5rem 1.75rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  max-width: 1000px;
  margin: 0 auto;
}

.logo {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  gap: 0.5rem;
}

/* Hero Section — Two separate rounded blocks */
.hero {
  padding: 1rem 0 1.5rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  height: 600px;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  margin-bottom: 0.75rem;
  font-size: 2.4rem;
  line-height: 1.1;
  color: var(--white);
  font-weight: 600;
}

.hero-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 90%;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
}

.hero-actions .btn-primary {
  background-color: var(--white);
  color: var(--primary);
}

.hero-actions .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.hero-actions .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.hero-actions .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Banner */
.banner {
  text-align: center;
  padding: 4rem 0 1.5rem 0;
}

.banner-eyebrow {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.banner-text {
  font-size: 1.75rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 0;
}

/* Layout for Cards Section */
.cards-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.cards-col-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cards-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  flex-grow: 1;
}

.cards-col-right {
  display: flex;
  height: 100%;
}

.cards-col-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Card Styles */
.card-dark {
  background-color: var(--secondary);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-dark h3 {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
  font-weight: 500;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 90%;
}

.card-light {
  background-color: var(--bg-blue-light);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-light-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.card-light h4 {
  font-size: 1.5rem;
  color: var(--secondary);
  line-height: 1.2;
  font-weight: 500;
}

.card-light p {
  font-size: 0.9rem;
  color: var(--secondary);
  opacity: 0.8;
  margin-bottom: 0;
}

/* Features Grid */
.features-container {
  background-color: var(--bg-blue-light);
  padding: 4rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.features-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.features-header h2 {
  color: var(--primary);
  margin-bottom: 0;
  text-align: left;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-icon {
  margin-bottom: 1rem;
  color: var(--secondary);
}

.feature-item h4 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--secondary);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

/* Advantages Section */
.adv-eyebrow {
  text-align: center;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.adv-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}

.adv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adv-card-blue {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.adv-card-blue h3 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 2rem 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item .stat-icon {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.stat-item h4 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.stat-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--secondary);
  opacity: 0.8;
}

/* Growth CTA Section */
.growth-section {
  padding: 4rem 0;
}

.growth-title {
  text-align: center;
  font-size: 2.25rem;
  color: var(--secondary);
  margin-bottom: 3rem;
  font-weight: 500;
}

.growth-title span {
  color: var(--primary);
}

.cta-box {
  background-color: var(--bg-blue-light);
  padding: 4rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-box h2 {
  color: var(--secondary);
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

/* Footer */
.footer {
  background-color: var(--secondary);
  color: var(--white);
  padding: 5rem 0 2rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.footer-top h2 {
  color: var(--primary);
  margin-bottom: 0;
  text-align: left;
  font-size: 2.5rem;
  font-weight: 500;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1.5fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.footer-col h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--white);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.social-links a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 100;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

/* Mobile Responsive */
@media (max-width: 992px) {

  .hero-grid,
  .cards-layout,
  .cards-split-row,
  .features-grid,
  .adv-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-image {
    height: 260px;
    min-height: unset;
  }

  .features-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* Contact Form Section */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  background-color: var(--bg-blue-light);
  border-radius: var(--radius-lg);
  padding: 4rem;
  align-items: center;
}

.form-title {
  text-align: left;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.form-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-benefits li {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 500;
}

.form-benefits li::first-letter {
  color: var(--primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 9999px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--primary);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

@media (max-width: 992px) {
  .form-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem;
  }
}
