/* ===================== VARIABLES ===================== */
:root {
  --navy:      #0a1f44;
  --blue:      #1a4a8a;
  --mid-blue:  #2563c6;
  --sky:       #4a9fd4;
  --pale:      #d6e8f8;
  --ice:       #eef5fc;
  --white:     #ffffff;
  --gray-text: #4a5568;
  --light-text:#718096;
  --gold:      #c9a84c;
  --shadow:    0 4px 24px rgba(10,31,68,.12);
  --shadow-lg: 0 12px 48px rgba(10,31,68,.18);
  --radius:    12px;
  --trans:     all .3s ease;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===================== TOP BAR ===================== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: .45rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar a { color: rgba(255,255,255,.75); transition: var(--trans); }
.top-bar a:hover { color: var(--gold); }
.top-bar__contact { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.top-bar__item { display: flex; align-items: center; gap: .4rem; }
.top-bar__social { display: flex; gap: .8rem; align-items: center; }
.top-bar__social a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.top-bar__social a:hover { background: var(--mid-blue); }

/* ===================== NAVBAR ===================== */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,31,68,.1);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--mid-blue), var(--navy));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; fill: white; }
.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -.5px;
}
.logo-text span {
  font-size: .7rem;
  font-weight: 500;
  color: var(--sky);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links li { position: relative; }
.nav-links a {
  display: block;
  padding: .55rem .85rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  transition: var(--trans);
}
.nav-links a:hover { background: var(--ice); color: var(--mid-blue); }
.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  border-top: 3px solid var(--mid-blue);
  overflow: hidden;
}
.dropdown-menu li a {
  border-radius: 0;
  padding: .65rem 1.1rem;
  font-size: .85rem;
  border-bottom: 1px solid var(--ice);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.nav-links li:hover .dropdown-menu { display: block; }
.nav-cta {
  background: linear-gradient(135deg, var(--mid-blue), var(--blue));
  color: white !important;
  padding: .55rem 1.1rem !important;
  border-radius: 8px !important;
}
.nav-cta:hover { opacity: .9; background: var(--mid-blue) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: .4rem;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; top: 70px;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav a {
  display: block; padding: .75rem 1rem;
  font-size: 1rem; font-weight: 500;
  border-radius: 8px;
  transition: var(--trans);
}
.mobile-nav a:hover { background: var(--ice); color: var(--mid-blue); }
.mobile-nav .mobile-sub { padding-left: 1.25rem; }
.mobile-nav .mobile-sub a { font-size: .9rem; color: var(--gray-text); }
.mobile-nav .mobile-cta {
  margin-top: 1rem;
  display: block;
  background: linear-gradient(135deg, var(--mid-blue), var(--blue));
  color: white;
  text-align: center;
  padding: .9rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.mobile-nav .mobile-system {
  margin-top: .5rem;
  display: block;
  background: var(--navy);
  color: white;
  text-align: center;
  padding: .9rem;
  border-radius: var(--radius);
  font-weight: 600;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 55%, var(--mid-blue) 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(74,159,212,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26,74,138,.3) 0%, transparent 50%);
  z-index: 0;
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-text { color: white; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .5px;
  margin-bottom: 1.5rem;
  color: var(--pale);
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  padding: .8rem 1.75rem;
  border-radius: 50px;
  transition: var(--trans);
  cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary:hover { background: #d4b060; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 1.75rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.4);
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.1); }
.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.stat { text-align: left; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

/* Hero card */
.hero-card-wrap { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 2rem;
  color: white;
  max-width: 380px;
  width: 100%;
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero-card h3 svg { width: 28px; height: 28px; flex-shrink: 0; }
.service-list { display: flex; flex-direction: column; gap: .65rem; }
.service-item {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .88rem;
  transition: var(--trans);
}
.service-item:hover { background: rgba(255,255,255,.12); }
.service-item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-card-cta {
  margin-top: 1.25rem;
  width: 100%;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), #d4b060);
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
  padding: .85rem;
  border-radius: 10px;
  transition: var(--trans);
}
.hero-card-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ===================== TRUST BAND ===================== */
.trust-band {
  background: var(--ice);
  border-bottom: 1px solid var(--pale);
  padding: 1.25rem 1.5rem;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--blue);
}
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===================== SECTIONS GENERIC ===================== */
section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--ice);
  color: var(--mid-blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: .9rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: .75rem;
}
.section-title em { font-style: normal; color: var(--mid-blue); }
.section-sub {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===================== SERVICES ===================== */
.services-bg { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--pale);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mid-blue), var(--sky));
  transform: scaleX(0);
  transition: var(--trans);
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--ice);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--trans);
}
.service-card:hover .service-icon { background: var(--mid-blue); }
.service-icon svg { width: 28px; height: 28px; stroke: var(--mid-blue); transition: var(--trans); }
.service-card:hover .service-icon svg { stroke: white; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: .65rem;
  color: var(--navy);
}
.service-card p { font-size: .88rem; color: var(--gray-text); line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1.1rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--mid-blue);
  transition: var(--trans);
}
.service-link:hover { gap: .6rem; }

/* ===================== WHY US ===================== */
.why-section { background: var(--ice); }
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.why-card-main {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
}
.why-card-main h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.why-card-main p { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.7; }
.why-stats { margin-top: 1.5rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.why-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
}
.why-stat-label { font-size: .78rem; color: rgba(255,255,255,.6); }
.why-badge-float {
  background: var(--gold);
  color: var(--navy);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: .85rem;
  box-shadow: var(--shadow);
  text-align: center;
  margin-top: 1.25rem;
  display: inline-block;
}
.why-badge-float span { display: block; font-size: 1.5rem; font-family: 'Playfair Display', serif; }
.why-features { display: flex; flex-direction: column; gap: 1.25rem; }
.why-feature { display: flex; gap: 1.1rem; align-items: flex-start; }
.why-feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.why-feature-icon svg { width: 22px; height: 22px; stroke: var(--mid-blue); }
.why-feature h4 { font-size: 1rem; font-weight: 600; margin-bottom: .3rem; color: var(--navy); }
.why-feature p { font-size: .87rem; color: var(--gray-text); line-height: 1.6; }

/* ===================== PROCESS ===================== */
.process-section { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.process-step {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 16px;
  background: var(--ice);
  transition: var(--trans);
}
.process-step:hover { background: var(--pale); transform: translateY(-3px); }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--mid-blue), var(--navy));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 1.25rem;
}
.process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--navy); }
.process-step p { font-size: .85rem; color: var(--gray-text); line-height: 1.6; }

/* ===================== SYSTEM ACCESS ===================== */
.system-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  position: relative; overflow: hidden;
}
.system-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(74,159,212,.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 30%, rgba(201,168,76,.1) 0%, transparent 40%);
}
.system-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.system-text { color: white; }
.system-text .section-tag { background: rgba(255,255,255,.12); color: var(--pale); }
.system-text .section-title { color: white; }
.system-text .section-sub { color: rgba(255,255,255,.75); max-width: none; }
.system-features { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0 2rem; }
.sys-feat {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: rgba(255,255,255,.85);
}
.sys-feat svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }
.btn-system {
  display: inline-flex; align-items: center; gap: .75rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  transition: var(--trans);
  cursor: pointer; border: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-system:hover { background: #d4b060; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,.4); }
.btn-system svg { width: 22px; height: 22px; }

/* System mockup */
.system-mockup {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  overflow: hidden;
}
.mockup-topbar {
  background: rgba(255,255,255,.06);
  padding: .75rem 1.25rem;
  display: flex; align-items: center; gap: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f56; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-url {
  flex: 1;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  padding: .3rem .75rem;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-left: .75rem;
}
.mockup-body { padding: 1.5rem; }
.mock-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
}
.mock-title { font-size: .95rem; font-weight: 700; color: white; }
.mock-badge {
  font-size: .7rem; background: rgba(74,159,212,.3);
  color: var(--sky); padding: .25rem .65rem; border-radius: 50px; font-weight: 600;
}
.mock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1rem; }
.mock-card {
  background: rgba(255,255,255,.06);
  border-radius: 10px; padding: .9rem;
  border: 1px solid rgba(255,255,255,.07);
}
.mock-card-label { font-size: .7rem; color: rgba(255,255,255,.45); margin-bottom: .35rem; }
.mock-card-val { font-size: 1.1rem; font-weight: 700; color: white; }
.mock-card-sub { font-size: .7rem; color: var(--sky); margin-top: .15rem; }
.mock-chart {
  background: rgba(255,255,255,.04);
  border-radius: 10px; padding: 1rem;
  border: 1px solid rgba(255,255,255,.06);
}
.mock-chart-label { font-size: .72rem; color: rgba(255,255,255,.45); margin-bottom: .65rem; }
.mock-bars { display: flex; align-items: flex-end; gap: .4rem; height: 48px; }
.mock-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: rgba(74,159,212,.3);
}
.mock-bar.active { background: var(--sky); }

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { background: var(--ice); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-size: 4rem; line-height: 1;
  color: var(--pale);
  font-family: 'Playfair Display', serif;
}
.stars { display: flex; gap: .2rem; margin-bottom: 1rem; }
.star { color: var(--gold); font-size: 1rem; }
.testimonial-card p { font-size: .9rem; color: var(--gray-text); line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mid-blue), var(--sky));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: .95rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .9rem; }
.author-role { font-size: .78rem; color: var(--light-text); }

/* ===================== CONTACT ===================== */
.contact-section { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--ice);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; stroke: var(--mid-blue); }
.contact-item h4 { font-size: .9rem; font-weight: 700; margin-bottom: .2rem; }
.contact-item p { font-size: .87rem; color: var(--gray-text); line-height: 1.6; }
.contact-item a { color: var(--mid-blue); font-weight: 500; }
.contact-form {
  background: var(--ice);
  border-radius: 20px;
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid var(--pale);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  transition: var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mid-blue);
  box-shadow: 0 0 0 3px rgba(37,99,198,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(135deg, var(--mid-blue), var(--navy));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: .95rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  font-family: 'DM Sans', sans-serif;
}
.btn-submit:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,198,.3); }
.form-note { font-size: .78rem; color: var(--light-text); margin-top: .75rem; text-align: center; }

/* ===================== FOOTER ===================== */
footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-main {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo .logo-icon {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
}
.footer-logo strong { color: white; }
.footer-logo span { color: var(--sky); }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .65rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.footer-social a:hover { background: var(--mid-blue); border-color: var(--mid-blue); }
.footer-col h4 {
  color: white; font-size: .9rem; font-weight: 700;
  margin-bottom: 1.1rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.6); transition: var(--trans); display: block; }
.footer-col a:hover { color: var(--sky); padding-left: .25rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1200px; margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--sky); }
.footer-bottom-links { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.sat-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: .3rem .75rem;
  border-radius: 50px;
  font-size: .78rem;
}

/* ===================== MODAL ===================== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,31,68,.6);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%; max-width: 420px;
  box-shadow: 0 24px 64px rgba(10,31,68,.3);
  position: relative;
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--ice); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.modal-close:hover { background: var(--pale); }
.modal-logo { text-align: center; margin-bottom: 1.5rem; }
.modal-logo .logo-icon {
  width: 60px; height: 60px; border-radius: 16px;
  margin: 0 auto .75rem;
  background: linear-gradient(135deg, var(--mid-blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
}
.modal-logo .logo-icon svg { width: 34px; height: 34px; }
.modal-logo strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--navy);
}
.modal-logo span { font-size: .8rem; color: var(--light-text); }
.modal-footer { margin-top: 1rem; text-align: center; font-size: .82rem; color: var(--light-text); }
.modal-footer a { color: var(--mid-blue); font-weight: 600; }

/* ===================== SCROLL TO TOP ===================== */
#scrollTop {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--mid-blue);
  color: white; border: none; border-radius: 12px;
  cursor: pointer; display: none;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  z-index: 500;
  transition: var(--trans);
}
#scrollTop:hover { background: var(--navy); transform: translateY(-2px); }
#scrollTop.visible { display: flex; }

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float { position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 500; }
.wa-float a {
  display: flex; align-items: center; gap: .65rem;
  background: #25d366;
  color: white;
  font-weight: 700; font-size: .88rem;
  padding: .75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: var(--trans);
}
.wa-float a:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ===================== ANIMATIONS ===================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .top-bar { font-size: .75rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .hero-card-wrap { display: none; }
  .hero { min-height: auto; }
  .why-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .system-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .system-mockup { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .wa-float a .wa-text { display: none; }
  .wa-float a { padding: .75rem; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
}
@media (max-width: 480px) {
  section { padding: 3.5rem 1rem; }
  .footer-main { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-stats { gap: 1.25rem; }
  .stat-num { font-size: 1.6rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline-white { justify-content: center; }
  .top-bar { display: none; }
}
