/* ============================================================
   getEmployedNow — Stylesheet
   Color palette:
     --navy-dark  #060F1E  (hero bg, footer)
     --navy       #0B2447  (primary dark)
     --navy-light #19376D  (accents)
     --teal       #00B4A6  (primary action / brand)
     --teal-light #4DD9D0
     --amber      #F5A623  (highlight / popular badge)
     --white      #FFFFFF
     --off-white  #F8FAFC
     --gray-light #E2E8F0
     --gray       #94A3B8
     --text       #1E293B
     --text-light #475569
============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: #1E293B;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --navy-dark:  #060F1E;
  --navy:       #0B2447;
  --navy-light: #19376D;
  --teal:       #00B4A6;
  --teal-light: #4DD9D0;
  --amber:      #F5A623;
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --gray-light: #E2E8F0;
  --gray:       #94A3B8;
  --text:       #1E293B;
  --text-light: #475569;
  --border:     rgba(0,0,0,0.08);
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --t:          0.25s ease;
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-teal  { color: var(--teal); }
.text-amber { color: var(--amber); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  background: rgba(0,180,166,0.12);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.section-tag--amber { background: rgba(245,166,35,0.15); color: var(--amber); }
.section-tag--on-dark { background: rgba(0,180,166,0.2); color: var(--teal-light); }

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title--white { color: var(--white); }
.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-sub--muted { color: rgba(255,255,255,0.6); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn-block { width: 100%; text-align: center; }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: #009990;
  border-color: #009990;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,180,166,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}
.btn-amber {
  background: var(--amber);
  color: var(--navy-dark);
  border-color: var(--amber);
  font-weight: 700;
}
.btn-amber:hover {
  background: #e8951a;
  border-color: #e8951a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  background: transparent;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0,0,0,0.1);
  padding: 0.8rem 0;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-svg { width: 32px; height: 32px; }
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--t);
}
.logo-text--white { color: var(--white) !important; }
.header.scrolled .logo-text { color: var(--navy); }
.logo-bold { font-weight: 900; color: var(--teal); }

.nav { margin-left: auto; }
.nav-list { display: flex; gap: 0.2rem; }
.nav-link {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: all var(--t);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.header.scrolled .nav-link { color: var(--text-light); }
.header.scrolled .nav-link:hover { color: var(--navy); background: var(--off-white); }

.staff-login-link {
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.9) !important;
}
.staff-login-link:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12) !important;
}
.header.scrolled .staff-login-link {
  border-color: var(--teal);
  color: var(--teal) !important;
}
.header.scrolled .staff-login-link:hover {
  background: rgba(0,180,166,0.08) !important;
  color: var(--teal) !important;
}

.header-cta { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.header.scrolled .hamburger span { background: var(--navy); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(0,180,166,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(245,166,35,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,180,166,0.18);
  border: 1px solid rgba(0,180,166,0.35);
  color: var(--teal-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-highlight { color: var(--teal); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  max-width: 90px;
  line-height: 1.35;
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero image */
.hero-image-wrap { position: relative; }
.hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.floating-card {
  position: absolute;
  bottom: -1rem;
  left: -2rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
}
.card-check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.card-text { display: flex; flex-direction: column; }
.card-text strong { font-size: 0.85rem; color: var(--navy); line-height: 1.3; }
.card-text span { font-size: 0.75rem; color: var(--gray); }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ===== PROBLEM ===== */
.problem {
  padding: 5rem 0;
  background: var(--navy);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--t);
}
.problem-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,180,166,0.4);
  transform: translateY(-4px);
}
.problem-icon { font-size: 2rem; margin-bottom: 1rem; }
.problem-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.87rem; color: rgba(255,255,255,0.58); line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 5rem 0; background: var(--off-white); }
.steps { display: grid; gap: 1.25rem; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
  transform: translateX(4px);
}
.step-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gray-light);
  line-height: 1;
  text-align: center;
  padding-top: 0.35rem;
  transition: color var(--t);
}
.step:hover .step-number { color: var(--teal); }
.step-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
.step-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; }
.step-content p  { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ===== FEATURES ===== */
.features { padding: 5rem 0; background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--t);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-icon--teal  { background: rgba(0,180,166,0.12); color: var(--teal); }
.feature-icon--amber { background: rgba(245,166,35,0.12); color: var(--amber); }
.feature-icon--navy  { background: rgba(11,36,71,0.08);  color: var(--navy); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ===== PERSONAS ===== */
.personas { padding: 5rem 0; background: var(--off-white); }
.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.persona-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.persona-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.persona-card--featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px var(--teal), var(--shadow-md);
}
.persona-image img {
  width: 100%; height: 230px;
  object-fit: cover;
  object-position: center top;
}
.persona-content { padding: 1.5rem; }
.persona-tag {
  display: inline-block;
  background: rgba(0,180,166,0.1);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.22rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.7rem;
}
.persona-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.persona-content p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.persona-benefits { display: flex; flex-direction: column; gap: 0.4rem; }
.persona-benefits li {
  font-size: 0.84rem;
  color: var(--text-light);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.persona-benefits li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ===== PRICING ===== */
.pricing { padding: 5rem 0; background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  position: relative;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  background: var(--white);
  transition: all var(--t);
}
.pricing-card:hover:not(.pricing-card--popular) {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}
.pricing-card--popular {
  border-color: var(--teal);
  background: var(--navy);
  transform: scale(1.04);
  box-shadow: 0 12px 48px rgba(0,180,166,0.25);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.3rem 1.25rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.pricing-card--popular .pricing-header h3 { color: var(--white); }
.pricing-header p { font-size: 0.84rem; color: var(--text-light); margin-bottom: 1.5rem; }
.pricing-card--popular .pricing-header p { color: rgba(255,255,255,0.55); }

.pricing-amount {
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
  margin-bottom: 0.25rem;
}
.currency { font-size: 1.4rem; font-weight: 700; color: var(--navy); padding-bottom: 0.4rem; }
.pricing-card--popular .currency { color: var(--amber); }
.amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.pricing-card--popular .amount { color: var(--white); }
.period { font-size: 1rem; color: var(--gray); padding-bottom: 0.4rem; }
.pricing-sub { font-size: 0.8rem; color: var(--gray); margin-bottom: 1.5rem; }
.pricing-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.pricing-card--popular .pricing-features li { color: rgba(255,255,255,0.78); }
.check { color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ===== SOCIAL PROOF ===== */
.social-proof { padding: 5rem 0; background: var(--navy-dark); }
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.stat-big {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--teal);
}
.stat-desc { font-size: 0.82rem; color: rgba(255,255,255,0.48); max-width: 145px; line-height: 1.45; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--t);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,180,166,0.3);
}
.stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--white); }
.testimonial-author span  { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.testimonial-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  margin-top: 2rem;
  font-style: italic;
}

/* ===== FAQ ===== */
.faq { padding: 5rem 0; background: var(--off-white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--t);
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--t);
  line-height: 1;
}
.faq-question.active { color: var(--teal); }
.faq-question.active::after { transform: rotate(45deg); }
.faq-question:hover { color: var(--teal); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.25s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.72;
}

/* ===== GET STARTED ===== */
.get-started { padding: 5rem 0; background: var(--white); }
.get-started-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 4rem;
  align-items: start;
}
.get-started-text .section-tag { display: inline-block; margin-bottom: 0.75rem; }
.gs-benefits { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.gs-benefits li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text-light); }
.check-green { color: #10B981; font-weight: 700; }

.form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}
.gs-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,166,0.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note { text-align: center; font-size: 0.75rem; color: var(--gray); margin-top: 0.5rem; }

.form-success { text-align: center; padding: 3rem 1.5rem; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  color: #10B981;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-weight: 700;
}
.form-success h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 0.75rem; }
.form-success p { color: var(--text-light); line-height: 1.65; }

/* ===== CONTACT ===== */
.contact { padding: 5rem 0; background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(0,180,166,0.1);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.contact-item a   { font-size: 0.88rem; color: var(--text-light); }
.contact-item a:hover { color: var(--teal); }
.contact-item span { font-size: 0.88rem; color: var(--text-light); }
.coming-soon-tag {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.1rem 0.5rem;
  border-radius: 100px;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.social-links { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700;
  transition: all var(--t);
}
.social-link:hover { background: var(--teal); transform: translateY(-2px); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 4rem 0 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-tagline {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  max-width: 260px;
  line-height: 1.65;
}
.footer-social { display: flex; gap: 0.5rem; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700;
  transition: all var(--t);
}
.social-icon:hover { background: var(--teal); border-color: var(--teal); color: var(--white); transform: translateY(-2px); }

.footer-links-group h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 1rem;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links-group a { font-size: 0.87rem; color: rgba(255,255,255,0.48); transition: color var(--t); }
.footer-links-group a:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--t); }
.footer-legal-links a:hover { color: var(--teal); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ===== SCROLL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card--popular { transform: scale(1); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .nav.open { display: flex; }
  .nav-list { flex-direction: column; gap: 1.5rem; text-align: center; }
  .nav-list .nav-link { font-size: 1.25rem; padding: 0.5rem 2rem; }
  .hamburger { display: flex; }
  .nav-cta-btn { display: none; }

  /* Hero */
  .hero-content { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .stat-divider { display: none; }
  .hero-stats { gap: 1.25rem; }

  /* Layout */
  .get-started-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 56px 1fr; gap: 1rem; }
  .step-number { font-size: 1.75rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  .hero-actions { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .personas-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
}
