﻿/* ===== DESIGN SYSTEM ===== */
:root {
  --blue:       #8BC5D3;
  --blue-dark:  #1A3A5C;
  --blue-mid:   #2A6080;
  --blue-light: #BDE0EA;
  --blue-xlight:#E8F4F8;
  --white:      #FFFFFF;
  --gray:       #6B7280;
  --gray-light: #F4F8FB;
  --dark:       #0F2236;
  --text:       #1A2B3C;
  --gold:       #F5A623;
  --gold-light: #FDF3E3;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Nunito Sans',sans-serif; color:var(--text); background:var(--white); overflow-x:hidden; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height:100vh;
  background:linear-gradient(135deg,#0F2236 0%,#1A3A5C 40%,#2A6080 75%,#8BC5D3 100%);
  display:flex; align-items:center; padding:100px 5% 120px;
  position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; top:-200px; right:-200px;
  width:700px; height:700px;
  background:radial-gradient(circle,rgba(139,197,211,.18) 0%,transparent 70%);
  border-radius:50%;
}
.hero::after {
  content:''; position:absolute; bottom:-150px; left:-100px;
  width:500px; height:500px;
  background:radial-gradient(circle,rgba(245,166,35,.08) 0%,transparent 70%);
  border-radius:50%;
}
.hero-shape {
  position:absolute; border-radius:50%;
  background:rgba(139,197,211,.07);
  animation:float 6s ease-in-out infinite;
}
.hero-shape:nth-child(1){width:80px;height:80px;top:20%;right:15%;}
.hero-shape:nth-child(2){width:120px;height:120px;top:60%;right:8%;animation-delay:2s;}
.hero-shape:nth-child(3){width:50px;height:50px;top:35%;right:30%;animation-delay:4s;}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-20px)}}

.hero-inner { display:flex; align-items:center; gap:60px; width:100%; position:relative; z-index:2; max-width:1200px; margin:0 auto; }
.hero-content { flex:1; max-width:560px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(245,166,35,.2); border:1px solid rgba(245,166,35,.4);
  color:#fde68a; padding:8px 18px; border-radius:50px;
  font-size:.78rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; margin-bottom:28px;
}
.hero-badge::before {
  content:''; width:8px; height:8px; background:var(--gold);
  border-radius:50%; animation:pulse 2s infinite;
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)}}
@keyframes slideUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
.hero h1 {
  font-family:'Nunito',sans-serif; font-size:3.2rem; font-weight:900;
  color:var(--white); line-height:1.1; margin-bottom:16px;
  animation:slideUp .8s ease both;
}
.hero h1 span { color:var(--gold); }
.hero-sub {
  font-family:'Nunito',sans-serif; font-size:1.2rem; font-weight:700;
  color:rgba(255,255,255,.75); margin-bottom:28px;
  animation:slideUp .8s ease both .1s;
}
.hero-sub span { color:var(--gold); }
.hero-desc {
  font-size:1rem; color:rgba(255,255,255,.65); line-height:1.75;
  margin-bottom:40px; animation:slideUp .8s ease both .2s;
}
.hero-btns { display:flex; gap:16px; flex-wrap:wrap; animation:slideUp .8s ease both .3s; }
.btn-primary {
  background:var(--gold); color:var(--dark); padding:16px 36px;
  border-radius:50px; font-weight:800; font-size:.95rem;
  text-decoration:none; transition:all .3s;
  box-shadow:0 8px 30px rgba(245,166,35,.35);
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { background:var(--white); transform:translateY(-2px); box-shadow:0 12px 40px rgba(245,166,35,.5); }
.btn-secondary {
  border:2px solid rgba(255,255,255,.35); color:var(--white);
  padding:16px 36px; border-radius:50px; font-weight:700;
  font-size:.95rem; text-decoration:none; transition:all .3s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-secondary:hover { border-color:var(--gold); background:rgba(245,166,35,.1); transform:translateY(-2px); }

/* Hero visual — Google Ads mockup */
.hero-visual { flex:1; display:flex; justify-content:center; padding-left:40px; animation:slideUp 1s ease both .4s; }
.hero-mockup {
  width:460px; background:rgba(255,255,255,.05);
  border:1px solid rgba(245,166,35,.25); border-radius:24px;
  overflow:hidden; backdrop-filter:blur(20px);
  box-shadow:0 40px 80px rgba(0,0,0,.4),0 0 0 1px rgba(245,166,35,.1);
}
.mockup-bar {
  background:rgba(0,0,0,.4); padding:12px 18px;
  display:flex; align-items:center; gap:8px;
  border-bottom:1px solid rgba(245,166,35,.12);
}
.mockup-dot{width:11px;height:11px;border-radius:50%;}
.mockup-dot:nth-child(1){background:#ff5f57}
.mockup-dot:nth-child(2){background:#febc2e}
.mockup-dot:nth-child(3){background:#28c840}
.mockup-url {
  flex:1; background:rgba(255,255,255,.07); border-radius:6px;
  padding:5px 12px; color:rgba(255,255,255,.5); font-size:.73rem;
  text-align:center; font-family:monospace;
}
.mockup-content { background:linear-gradient(160deg,#0a1628 0%,#0f2236 100%); }
.mockup-header {
  padding:16px 20px 12px; border-bottom:1px solid rgba(245,166,35,.1);
  display:flex; align-items:center; justify-content:space-between;
}
.mockup-title { color:var(--white); font-weight:700; font-size:.85rem; }
.mockup-badge { background:rgba(245,166,35,.2); color:var(--gold); padding:3px 10px; border-radius:20px; font-size:.68rem; font-weight:700; }

/* Ads mockup content */
.ads-kpis { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:rgba(245,166,35,.05); }
.ads-kpi { background:rgba(10,22,40,.8); padding:13px 16px; text-align:center; }
.ads-kpi-val { color:var(--gold); font-size:1.15rem; font-weight:800; font-family:'Nunito',sans-serif; display:block; }
.ads-kpi-lbl { color:rgba(255,255,255,.4); font-size:.6rem; text-transform:uppercase; letter-spacing:.05em; margin-top:2px; display:block; }

.ads-campaigns { padding:14px 18px; display:flex; flex-direction:column; gap:8px; border-bottom:1px solid rgba(245,166,35,.08); }
.ads-camp {
  background:rgba(245,166,35,.05); border:1px solid rgba(245,166,35,.12);
  border-radius:10px; padding:10px 12px;
}
.ads-camp-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:6px; }
.ads-camp-name { color:rgba(255,255,255,.8); font-size:.75rem; font-weight:700; }
.ads-camp-badge { background:rgba(34,197,94,.15); color:#4ade80; font-size:.6rem; font-weight:700; padding:2px 8px; border-radius:20px; }
.ads-camp-metrics { display:flex; gap:12px; }
.ads-camp-metric { text-align:center; }
.ads-camp-metric-val { color:var(--gold); font-family:'Nunito',sans-serif; font-weight:800; font-size:.78rem; display:block; }
.ads-camp-metric-lbl { color:rgba(255,255,255,.3); font-size:.58rem; display:block; }
.ads-bar-wrap { margin-top:6px; height:4px; background:rgba(255,255,255,.06); border-radius:2px; overflow:hidden; }
.ads-bar { height:100%; background:linear-gradient(90deg,var(--gold),#fde68a); border-radius:2px; animation:growW 1.5s ease both; }
@keyframes growW{from{width:0}to{width:var(--w)}}

.ads-mini-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(245,166,35,.05); }
.ads-mini { background:rgba(10,22,40,.8); padding:12px 10px; text-align:center; }
.ads-mini-val { color:var(--gold); font-size:1rem; font-weight:800; font-family:'Nunito',sans-serif; display:block; }
.ads-mini-lbl { color:rgba(255,255,255,.35); font-size:.58rem; text-transform:uppercase; letter-spacing:.04em; margin-top:2px; display:block; }

/* Hero stats bar */
.hero-stats {
  position:absolute; bottom:0; left:0; right:0;
  background:rgba(255,255,255,.05); backdrop-filter:blur(20px);
  border-top:1px solid rgba(245,166,35,.2);
  display:flex; justify-content:center;
}
.hero-stat { flex:1; max-width:220px; padding:22px 20px; text-align:center; border-right:1px solid rgba(245,166,35,.15); }
.hero-stat:last-child { border-right:none; }
.hero-stat-num { font-family:'Nunito',sans-serif; font-size:2rem; font-weight:900; color:var(--gold); display:block; line-height:1; }
.hero-stat-lbl { color:rgba(255,255,255,.55); font-size:.78rem; margin-top:5px; display:block; }

/* ── BREADCRUMB ───────────────────────────────────────── */
.breadcrumb-bar {
  background:var(--gray-light); border-bottom:1px solid rgba(139,197,211,.2);
  padding:14px 5%;
}
.breadcrumb {
  display:flex; align-items:center; gap:8px;
  font-size:.8rem; color:var(--gray);
  max-width:1200px; margin:0 auto;
}
.breadcrumb a { color:var(--blue-mid); text-decoration:none; font-weight:600; transition:color .2s; }
.breadcrumb a:hover { color:var(--blue); }
.breadcrumb span { color:var(--gray); }
.breadcrumb .current { color:var(--text); font-weight:700; }

/* ── SECTION BASE ─────────────────────────────────────── */
section { padding:90px 5%; }
.section-tag {
  display:inline-block; background:var(--blue-xlight); color:var(--blue-mid);
  padding:6px 16px; border-radius:50px; font-size:.73rem; font-weight:700;
  text-transform:uppercase; letter-spacing:.1em; margin-bottom:14px;
}
.section-tag.gold { background:rgba(245,166,35,.12); color:#b45309; }
.section-title {
  font-family:'Nunito',sans-serif; font-size:2.5rem; font-weight:900;
  color:var(--dark); line-height:1.15; margin-bottom:14px;
}
.section-title span { color:var(--blue-mid); }
.section-title span.gold { color:var(--gold); }
.section-sub { color:var(--gray); font-size:1rem; line-height:1.7; max-width:600px; }
.section-center { text-align:center; }
.section-center .section-sub { margin:0 auto; }

/* ── WHAT IS SEA ──────────────────────────────────────── */
.what-section { background:var(--white); }
.what-inner { max-width:860px; margin:0 auto; text-align:center; }
.what-inner p { font-size:.97rem; color:var(--gray); line-height:1.85; margin-bottom:14px; }
.what-inner p strong { color:var(--text); }
.what-highlight { color:var(--blue-mid); font-weight:700; }

/* ── WHY SECTION ──────────────────────────────────────── */
.why-section { background:var(--gray-light); padding:0 5% 90px; }
.why-banner {
  background:linear-gradient(135deg,var(--gold) 0%,#f0b429 100%);
  border-radius:22px; padding:40px 50px; text-align:center;
  margin-bottom:30px;
  box-shadow:0 20px 50px rgba(245,166,35,.25);
}
.why-banner h2 {
  font-family:'Nunito',sans-serif; font-size:2.2rem; font-weight:900;
  color:var(--dark); line-height:1.2;
}
.why-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.why-card {
  border-radius:20px; padding:34px 28px; transition:all .3s;
  position:relative; overflow:hidden;
}
.why-card.dark {
  background:linear-gradient(135deg,var(--dark),var(--blue-dark));
  border:1px solid rgba(139,197,211,.2);
}
.why-card.gold-card {
  background:linear-gradient(135deg,var(--gold),#f0b429);
  border:1px solid rgba(245,166,35,.3);
}
.why-card:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(0,0,0,.15); }
.why-card-tag {
  font-family:'Nunito',sans-serif; font-size:.75rem; font-weight:800;
  text-transform:uppercase; letter-spacing:.1em; margin-bottom:12px; display:block;
}
.why-card.dark .why-card-tag { color:var(--blue); }
.why-card.gold-card .why-card-tag { color:rgba(15,34,54,.7); }
.why-card h3 {
  font-family:'Nunito',sans-serif; font-size:1.1rem; font-weight:900;
  line-height:1.35; margin-bottom:12px;
}
.why-card.dark h3 { color:var(--white); }
.why-card.gold-card h3 { color:var(--dark); }
.why-card p { font-size:.86rem; line-height:1.7; }
.why-card.dark p { color:rgba(255,255,255,.62); }
.why-card.gold-card p { color:rgba(15,34,54,.72); }
.why-card-icon {
  width:50px; height:50px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; margin-bottom:18px;
}
.why-card.dark .why-card-icon { background:rgba(139,197,211,.15); }
.why-card.gold-card .why-card-icon { background:rgba(15,34,54,.12); }

/* ── HOW SECTION (dark) ───────────────────────────────── */
.how-section {
  background:linear-gradient(135deg,#0F2236 0%,#1A3A5C 50%,#2A6080 100%);
  padding:90px 5%; position:relative; overflow:hidden;
}
.how-section::before {
  content:''; position:absolute; top:-100px; right:-100px;
  width:500px; height:500px;
  background:radial-gradient(circle,rgba(245,166,35,.1) 0%,transparent 70%);
  border-radius:50%;
}
.how-inner { display:flex; gap:70px; align-items:flex-start; max-width:1100px; margin:0 auto; position:relative; z-index:1; }
.how-left { flex:0 0 360px; }
.how-left h2 { font-family:'Nunito',sans-serif; font-size:2.4rem; font-weight:900; color:var(--white); line-height:1.15; margin-bottom:28px; }
.how-left h2 span { color:var(--gold); }
.how-left p { color:rgba(255,255,255,.6); font-size:.9rem; line-height:1.75; margin-bottom:28px; }
.how-illu { background:rgba(255,255,255,.05); border:1px solid rgba(245,166,35,.2); border-radius:20px; overflow:hidden; backdrop-filter:blur(10px); }
.how-illu-top { background:rgba(0,0,0,.3); padding:12px 16px; display:flex; align-items:center; gap:8px; border-bottom:1px solid rgba(245,166,35,.12); }
.how-illu-dot { width:9px; height:9px; border-radius:50%; }
.how-illu-dot:nth-child(1){background:#ff5f57}
.how-illu-dot:nth-child(2){background:#febc2e}
.how-illu-dot:nth-child(3){background:#28c840}
.how-illu-label { color:rgba(255,255,255,.4); font-size:.7rem; font-family:monospace; flex:1; text-align:center; }
.how-illu-body { padding:20px 18px; display:flex; flex-direction:column; gap:10px; }
.illu-row { background:rgba(245,166,35,.07); border:1px solid rgba(245,166,35,.12); border-radius:10px; padding:12px 14px; display:flex; align-items:center; gap:12px; }
.illu-icon { font-size:1.1rem; flex-shrink:0; }
.illu-text { flex:1; }
.illu-title { color:rgba(255,255,255,.8); font-size:.78rem; font-weight:700; }
.illu-sub { color:rgba(255,255,255,.4); font-size:.65rem; margin-top:2px; }
.illu-pct { color:var(--gold); font-family:'Nunito',sans-serif; font-weight:900; font-size:.9rem; }

.how-right { flex:1; padding-top:4px; }
.acc-item { border-bottom:1px solid rgba(245,166,35,.12); overflow:hidden; }
.acc-item:last-child { border-bottom:none; }
.acc-header { display:flex; align-items:center; gap:14px; padding:22px 0; cursor:pointer; transition:all .2s; }
.acc-num {
  width:32px; height:32px; background:rgba(245,166,35,.15);
  border:1px solid rgba(245,166,35,.3); color:var(--gold); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:.75rem; flex-shrink:0; transition:background .2s;
}
.acc-item.open .acc-num, .acc-item:hover .acc-num { background:var(--gold); color:var(--dark); }
.acc-title { flex:1; color:rgba(255,255,255,.85); font-size:1rem; font-weight:700; transition:color .2s; }
.acc-item:hover .acc-title, .acc-item.open .acc-title { color:var(--white); }
.acc-plus { color:rgba(255,255,255,.4); font-size:1.4rem; font-weight:300; transition:transform .3s,color .2s; flex-shrink:0; line-height:1; }
.acc-item.open .acc-plus { transform:rotate(45deg); color:var(--gold); }
.acc-body { max-height:0; overflow:hidden; transition:max-height .4s ease,padding .3s; padding:0 0 0 46px; }
.acc-item.open .acc-body { max-height:160px; padding:0 20px 20px 46px; }
.acc-body p { color:rgba(255,255,255,.55); font-size:.86rem; line-height:1.75; }

/* ── OFFER SECTION ────────────────────────────────────── */
.offer-section {
  background:linear-gradient(160deg,var(--blue-xlight) 0%,#fdf3e3 100%);
  padding:90px 5%;
}
.offer-inner { max-width:1100px; margin:0 auto; }
.offer-title {
  font-family:'Nunito',sans-serif; font-size:2.4rem; font-weight:900;
  color:var(--dark); text-align:center; margin-bottom:14px;
}
.offer-title span { color:var(--gold); text-decoration:underline; text-decoration-color:rgba(245,166,35,.4); }
.offer-sub { text-align:center; color:var(--gray); font-size:1rem; margin-bottom:50px; }
.offer-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.offer-card {
  border-radius:22px; padding:36px 30px; transition:all .3s;
  position:relative; overflow:hidden;
}
.offer-card.gold-card {
  background:linear-gradient(135deg,var(--gold),#f0b429);
  box-shadow:0 20px 50px rgba(245,166,35,.25);
}
.offer-card.dark-card {
  background:linear-gradient(135deg,var(--dark),var(--blue-dark));
  border:1px solid rgba(245,166,35,.2);
  box-shadow:0 20px 50px rgba(0,0,0,.2);
}
.offer-card:hover { transform:translateY(-6px); box-shadow:0 30px 60px rgba(0,0,0,.2); }
.offer-num {
  font-family:'Nunito',sans-serif; font-size:3rem; font-weight:900;
  line-height:1; margin-bottom:14px; display:block;
}
.offer-card.gold-card .offer-num { color:rgba(15,34,54,.2); }
.offer-card.dark-card .offer-num { color:rgba(245,166,35,.2); }
.offer-icon {
  width:54px; height:54px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; margin-bottom:18px;
}
.offer-card.gold-card .offer-icon { background:rgba(15,34,54,.12); }
.offer-card.dark-card .offer-icon { background:rgba(245,166,35,.15); }
.offer-card h3 {
  font-family:'Nunito',sans-serif; font-size:1.15rem; font-weight:900;
  line-height:1.35; margin-bottom:10px;
}
.offer-card.gold-card h3 { color:var(--dark); }
.offer-card.dark-card h3 { color:var(--white); }
.offer-card p { font-size:.86rem; line-height:1.7; }
.offer-card.gold-card p { color:rgba(15,34,54,.72); }
.offer-card.dark-card p { color:rgba(255,255,255,.6); }

/* ── DETAIL SECTION ───────────────────────────────────── */
.detail-section { background:var(--white); }
.detail-inner { display:flex; gap:70px; align-items:center; max-width:1100px; margin:0 auto; }
.detail-content { flex:1; }
.detail-content .section-sub { max-width:100%; margin-bottom:28px; }
.detail-list { list-style:none; display:flex; flex-direction:column; gap:14px; margin-top:28px; }
.detail-list li {
  display:flex; align-items:flex-start; gap:14px; padding:16px 20px;
  background:var(--gray-light); border-radius:14px;
  border:1px solid rgba(245,166,35,.15); transition:all .3s;
}
.detail-list li:hover { border-color:var(--gold); transform:translateX(4px); box-shadow:0 6px 20px rgba(245,166,35,.12); }
.detail-list-icon {
  width:36px; height:36px; background:rgba(245,166,35,.12);
  border-radius:10px; display:flex; align-items:center; justify-content:center;
  font-size:1rem; flex-shrink:0;
}
.detail-list-text strong { display:block; font-weight:700; font-size:.9rem; color:var(--dark); margin-bottom:3px; }
.detail-list-text span { font-size:.82rem; color:var(--gray); }
.detail-visual { flex:0 0 400px; }
.sea-card {
  background:linear-gradient(135deg,var(--dark),var(--blue-dark));
  border:1px solid rgba(245,166,35,.25); border-radius:24px;
  overflow:hidden; box-shadow:0 30px 60px rgba(0,0,0,.25);
}
.sea-card-head { padding:18px 20px; border-bottom:1px solid rgba(245,166,35,.1); display:flex; align-items:center; gap:12px; }
.sea-card-logo {
  width:38px; height:38px; background:linear-gradient(135deg,#4285f4,#34a853);
  border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.1rem;
}
.sea-card-name { color:var(--white); font-weight:700; font-size:.9rem; }
.sea-card-sub { color:rgba(255,255,255,.45); font-size:.7rem; margin-top:2px; }
.sea-card-body { padding:18px 20px; display:flex; flex-direction:column; gap:12px; }
.sea-kpi-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.sea-kpi { background:rgba(245,166,35,.07); border:1px solid rgba(245,166,35,.12); border-radius:12px; padding:14px; }
.sea-kpi-val { font-family:'Nunito',sans-serif; font-size:1.4rem; font-weight:900; color:var(--gold); display:block; }
.sea-kpi-lbl { color:rgba(255,255,255,.45); font-size:.65rem; text-transform:uppercase; letter-spacing:.05em; margin-top:2px; display:block; }
.sea-progress { background:rgba(245,166,35,.07); border:1px solid rgba(245,166,35,.12); border-radius:12px; padding:14px; }
.sea-progress-lbl { color:rgba(255,255,255,.55); font-size:.72rem; margin-bottom:8px; display:flex; justify-content:space-between; }
.sea-progress-lbl span { color:var(--gold); font-weight:700; }
.sea-bar-track { height:6px; background:rgba(255,255,255,.08); border-radius:3px; overflow:hidden; }
.sea-bar-fill { height:100%; background:linear-gradient(90deg,#b45309,var(--gold)); border-radius:3px; }

/* ── PROCESS SECTION ──────────────────────────────────── */
.process-section { background:var(--gray-light); }
.process-inner { max-width:1100px; margin:0 auto; }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:50px; }
.process-step {
  background:var(--white); border-radius:20px; padding:32px 26px;
  border:1px solid rgba(245,166,35,.15); transition:all .3s; text-align:center;
}
.process-step:hover { border-color:var(--gold); box-shadow:0 10px 30px rgba(245,166,35,.12); transform:translateY(-4px); }
.step-num {
  width:52px; height:52px; background:linear-gradient(135deg,#b45309,var(--gold));
  color:var(--white); border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Nunito',sans-serif; font-size:1.4rem; font-weight:900;
  margin:0 auto 18px;
}
.process-step h3 { font-family:'Nunito',sans-serif; font-size:1.05rem; font-weight:800; color:var(--dark); margin-bottom:10px; }
.process-step p { font-size:.84rem; color:var(--gray); line-height:1.65; }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testi-section { background:var(--white); }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; max-width:1100px; margin:50px auto 0; }
.testi-card { background:var(--gray-light); border-radius:20px; padding:30px 26px; border:1px solid rgba(245,166,35,.2); transition:all .3s; }
.testi-card:hover { box-shadow:0 16px 40px rgba(245,166,35,.12); transform:translateY(-4px); }
.testi-quote { font-family:'Nunito',sans-serif; font-size:3.5rem; font-weight:900; color:rgba(245,166,35,.3); line-height:.6; margin-bottom:16px; }
.testi-text { font-size:.88rem; color:var(--gray); line-height:1.7; margin-bottom:20px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:44px; height:44px; background:linear-gradient(135deg,#b45309,var(--gold)); color:var(--white); border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.82rem; flex-shrink:0; }
.testi-name { font-weight:700; font-size:.88rem; color:var(--dark); }
.testi-role { font-size:.76rem; color:var(--gray); }
.testi-stars { color:#f59e0b; font-size:.78rem; margin-top:3px; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-section { background:var(--gray-light); }
.faq-inner { max-width:780px; margin:50px auto 0; }
.faq-item { border:1px solid rgba(245,166,35,.2); border-radius:14px; margin-bottom:12px; overflow:hidden; transition:border-color .3s; }
.faq-item:hover { border-color:var(--gold); }
.faq-item.open { border-color:var(--gold); }
.faq-q { padding:18px 22px; cursor:pointer; display:flex; align-items:center; justify-content:space-between; font-weight:700; font-size:.9rem; color:var(--dark); background:var(--white); user-select:none; }
.faq-q:hover { background:var(--gold-light); }
.faq-item.open .faq-q { background:var(--gold-light); }
.faq-arrow { color:#b45309; font-size:.9rem; transition:transform .3s; flex-shrink:0; }
.faq-item.open .faq-arrow { transform:rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .4s ease,padding .3s; }
.faq-item.open .faq-a { max-height:200px; }
.faq-a p { padding:0 22px 18px; font-size:.86rem; color:var(--gray); line-height:1.75; }

/* ── CTA STRIP ─────────────────────────────────────────── */
.cta-strip { background:linear-gradient(135deg,var(--dark) 0%,#1a3a5c 50%,#2a6080 100%); text-align:center; padding:90px 5%; position:relative; overflow:hidden; }
.cta-strip::before { content:''; position:absolute; top:-100px; right:-100px; width:400px; height:400px; background:radial-gradient(circle,rgba(245,166,35,.1) 0%,transparent 70%); border-radius:50%; }
.cta-strip h2 { font-family:'Nunito',sans-serif; font-size:2.6rem; font-weight:900; color:var(--white); line-height:1.2; margin-bottom:16px; position:relative; }
.cta-strip h2 span { color:var(--gold); }
.cta-strip p { color:rgba(255,255,255,.7); font-size:1rem; margin-bottom:36px; position:relative; }
.cta-strip .contact-details { color:rgba(255,255,255,.65); font-size:.92rem; line-height:1.9; margin-bottom:36px; position:relative; }
.cta-strip .contact-details strong { color:var(--white); }
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; }
.btn-gold {
  background:var(--gold); color:var(--dark); padding:16px 36px;
  border-radius:50px; font-weight:800; font-size:.95rem;
  text-decoration:none; transition:all .3s;
  box-shadow:0 8px 30px rgba(245,166,35,.35);
  display:inline-flex; align-items:center; gap:8px;
}
.btn-gold:hover { background:#fde68a; transform:translateY(-2px); box-shadow:0 12px 40px rgba(245,166,35,.5); }
.btn-outline-white {
  border:2px solid rgba(255,255,255,.4); color:var(--white);
  padding:16px 36px; border-radius:50px; font-weight:700; font-size:.95rem;
  text-decoration:none; transition:all .3s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-outline-white:hover { border-color:var(--gold); background:rgba(245,166,35,.1); transform:translateY(-2px); }

/* ── FADE-UP ─────────────────────────────────────────────── */
.fade-up { opacity:0; transform:translateY(30px); transition:opacity .7s ease,transform .7s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:900px){
  .hero-visual { display:none; }
  .hero-inner { flex-direction:column; }
  .hero h1 { font-size:2.3rem; }
  .why-cards { grid-template-columns:1fr; }
  .offer-grid { grid-template-columns:1fr; }
  .how-inner { flex-direction:column; }
  .how-left { flex:none; width:100%; }
  .detail-inner { flex-direction:column; }
  .detail-visual { width:100%; flex:none; }
  .process-steps { grid-template-columns:1fr 1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; gap:30px; }
  .hero-stats { position:relative; flex-wrap:wrap; }
}