/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:         #0a1628;
  --navy:         #1a3a6e;
  --blue:         #2563eb;
  --blue-light:   #3b82f6;
  --orange:       #f97316;
  --orange-dark:  #ea580c;
  --light:        #eff6ff;
  --light-grey:   #f8fafc;
  --text:         #1e293b;
  --muted:        #64748b;
  --white:        #ffffff;
  --border:       #e2e8f0;
  --radius:       14px;
  --radius-sm:    8px;
  --radius-pill:  50px;
  --whatsapp:     #25D366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a  { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .3px;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s, color .2s;
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(249,115,22,.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 28px rgba(249,115,22,.45);
  color: var(--white);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,99,235,.25);
}
.btn-blue:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 28px rgba(37,99,235,.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10,22,40,.3);
}
.btn-dark:hover {
  background: #0f2040;
  box-shadow: 0 8px 24px rgba(10,22,40,.45);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  color: var(--white);
}

.btn-sm {
  padding: 10px 22px;
  font-size: .82rem;
}

section { padding: 88px 0; }

.section-label {
  display: inline-block;
  background: rgba(37,99,235,.1);
  color: var(--blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-label.light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}
.section-label.orange {
  background: rgba(249,115,22,.12);
  color: var(--orange-dark);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
.section-title.light { color: var(--white); }

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 52px;
  max-width: 580px;
  line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,.75); }
.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* ── Navigation ───────────────────────────────────────────── */
header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.3px;
}
.logo span { color: var(--orange); }

.nav-links { list-style: none; display: flex; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,.78);
  font-weight: 600;
  font-size: .88rem;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); text-decoration: none; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .2px;
  transition: background .2s, box-shadow .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 16px rgba(249,115,22,.4);
  transform: translateY(-1px);
  text-decoration: none;
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(135deg, rgba(10,22,40,.93) 0%, rgba(26,58,110,.88) 60%, rgba(37,99,235,.7) 100%),
    url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 24px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1px;
  max-width: 720px;
}
.hero h1 span { color: var(--orange); }

.hero p {
  font-size: 1.18rem;
  max-width: 560px;
  margin-bottom: 38px;
  opacity: .88;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
}
.hero-trust-item .check {
  width: 20px; height: 20px;
  background: rgba(74,222,128,.2);
  border: 1px solid rgba(74,222,128,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  color: #4ade80;
  flex-shrink: 0;
}

/* ── Stats bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--border);
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item strong span { color: var(--orange); }
.stat-item p { color: var(--muted); font-size: .88rem; font-weight: 600; }

/* ── Features / What's Included overview ──────────────────── */
.features-section { background: var(--light-grey); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.feature-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.09);
}
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(37,99,235,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.feature-card h3 {
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 8px;
}
.feature-card p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* ── How it works ─────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--orange));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px 0;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--blue);
  box-shadow: 0 4px 16px rgba(37,99,235,.15);
}
.process-step:last-child .step-num { border-color: var(--orange); color: var(--orange); }
.process-step h3 { color: var(--dark); font-size: 1rem; margin-bottom: 8px; }
.process-step p  { color: var(--muted); font-size: .88rem; }

/* ── Why us (dark with bg image) ─────────────────────────── */
.why-section {
  background-image:
    linear-gradient(rgba(10,22,40,.93), rgba(10,22,40,.93)),
    url('images/why-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background .2s, border-color .2s;
}
.why-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(249,115,22,.4);
}
.why-card-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.why-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.why-card p  { color: rgba(255,255,255,.68); font-size: .9rem; line-height: 1.65; }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-section { background: var(--light); }
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pricing-left h2 { color: var(--dark); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.pricing-left p  { color: var(--muted); margin-bottom: 28px; }
.pricing-checklist { list-style: none; margin-bottom: 36px; }
.pricing-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: .94rem;
}
.pricing-checklist li:last-child { border-bottom: none; }
.pricing-checklist li .tick {
  color: var(--orange);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: rgba(37,99,235,.15);
  border-radius: 50%;
}
.pricing-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 160px; height: 160px;
  background: rgba(249,115,22,.1);
  border-radius: 50%;
}
.pricing-card-label {
  display: inline-block;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.price-display {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.price-display .currency {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  vertical-align: top;
  line-height: 1.2;
}
.price-display .amount {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.price-display .period {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  display: block;
  margin-top: 6px;
}
.pricing-card .sub {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.pricing-card-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.pricing-card-features li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  display: flex; align-items: center; gap: 10px;
}
.pricing-card-features li .tick { color: var(--orange); font-weight: 900; flex-shrink: 0; }
.pricing-card .btn { position: relative; z-index: 1; width: 100%; text-align: center; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--light-grey);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--blue);
  opacity: .15;
  position: absolute;
  top: 8px; left: 18px;
  line-height: 1;
}
.stars { color: var(--orange); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}
.author-name  { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; color: var(--dark); font-size: .9rem; }
.author-trade { color: var(--muted); font-size: .82rem; }

/* ── CTA banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  text-align: center;
  padding: 88px 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover;
  opacity: .06;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
  position: relative;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  background-image:
    linear-gradient(135deg, rgba(10,22,40,.92) 0%, rgba(26,58,110,.88) 100%),
    url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
.page-hero p {
  font-size: 1.1rem;
  opacity: .85;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── What You Get page ────────────────────────────────────── */
.wyg-intro {
  background: var(--light-grey);
  padding: 64px 0 0;
}
.wyg-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.wyg-intro-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border-top: 3px solid var(--blue);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.wyg-intro-card .num {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--orange);
}
.wyg-intro-card p { color: var(--muted); font-size: .88rem; }

.wyg-feature {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.wyg-feature:nth-child(even) { background: var(--light-grey); }
.wyg-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.wyg-feature-grid.reverse .wyg-image { order: 2; }
.wyg-feature-grid.reverse .wyg-content { order: 1; }
.wyg-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wyg-image-icon {
  font-size: 5rem;
  opacity: .6;
}
.wyg-content h2 { color: var(--dark); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 14px; }
.wyg-content p  { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }
.wyg-content ul { list-style: none; margin-top: 20px; }
.wyg-content ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: .94rem;
}
.wyg-content ul li .tick { color: var(--orange); font-weight: 900; flex-shrink: 0; }
.wyg-content ul li:last-child { border-bottom: none; }

.wyg-icon-badge {
  width: 80px; height: 80px;
  background: rgba(37,99,235,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* ── About page ───────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light);
  position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img .badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: .82rem;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
}
.about-content h2 { color: var(--dark); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.about-content p  { color: var(--muted); margin-bottom: 16px; line-height: 1.75; }

.values-section { background: var(--light-grey); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  border-bottom: 4px solid var(--orange);
  transition: transform .2s;
}
.value-card:hover { transform: translateY(-4px); }
.value-card .icon { font-size: 2.2rem; margin-bottom: 14px; }
.value-card h3 { color: var(--dark); margin-bottom: 8px; }
.value-card p  { color: var(--muted); font-size: .88rem; }

.credentials-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.credential {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 36px;
  text-align: center;
  min-width: 170px;
  border-top: 3px solid var(--blue);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.credential .icon { font-size: 2rem; margin-bottom: 10px; }
.credential strong { display: block; color: var(--dark); font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: .92rem; margin-bottom: 4px; }
.credential span   { color: var(--muted); font-size: .8rem; }

/* ── Contact page ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }
.contact-info h2 { color: var(--dark); font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; }
.contact-info > p { color: var(--muted); margin-bottom: 36px; line-height: 1.75; }

.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-detail .icon-box {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(37,99,235,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-detail strong { display: block; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; color: var(--dark); margin-bottom: 3px; font-size: .92rem; }
.contact-detail span   { color: var(--muted); font-size: .88rem; line-height: 1.5; }
.contact-detail a { color: var(--blue); }

.contact-form-wrap {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
  border: 1px solid var(--border);
}
.contact-form-wrap h2 { color: var(--dark); font-size: 1.5rem; font-weight: 800; margin-bottom: 28px; }

/* Contact page — new two-col layout */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.contact-form-col h2 { color: var(--dark); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 10px; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: 0 4px 28px rgba(0,0,0,.07); }

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.contact-card:last-child { margin-bottom: 0; }
.contact-card-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,.08);
  color: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.contact-card h3 { color: var(--dark); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.contact-card p  { color: var(--muted); font-size: .88rem; line-height: 1.65; }

.contact-steps { list-style: none; margin: 0; padding: 0; }
.contact-steps li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: .9rem;
}
.contact-steps li:last-child { border-bottom: none; }
.contact-steps li span {
  width: 26px; height: 26px; min-width: 26px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: .78rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* FAQ grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--blue);
}
.faq-item h3 { color: var(--dark); font-size: .96rem; font-weight: 700; margin-bottom: 10px; }
.faq-item p  { color: var(--muted); font-size: .88rem; line-height: 1.7; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
  font-size: .85rem;
  letter-spacing: .2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .94rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--light-grey);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── WhatsApp float ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
  text-decoration: none;
}
.whatsapp-float svg { width: 32px; height: 32px; fill: var(--white); }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 14px; display: block; font-size: 1.15rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 260px; }

footer h4 {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--orange); text-decoration: none; }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--orange); text-decoration: none; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .wyg-intro-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .wyg-feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .wyg-feature-grid.reverse .wyg-image { order: 0; }
  .wyg-feature-grid.reverse .wyg-content { order: 0; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  section { padding: 60px 0; }
  .hero { min-height: auto; padding: 80px 24px 100px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .wyg-intro-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 16px; }
  .cta-btns { flex-direction: column; align-items: center; }
}
