
:root{
  --bg:#ffffff;
  --bg-soft:#f8fbff;
  --bg-deep:#020617;
  --bg-deep-2:#0b1f3b;
  --text:#0f172a;
  --muted:#475569;
  --line:#dbe5f0;
  --line-strong:#c7d5e6;
  --blue:#2563eb;
  --blue-dark:#1d4ed8;
  --orange:#f97316;
  --orange-dark:#ea580c;
  --green:#10b981;
  --gold:#f59e0b;
  --white:#ffffff;
  --radius:24px;
  --shadow:0 20px 45px rgba(2,6,23,.08);
  --shadow-soft:0 12px 28px rgba(2,6,23,.06);
  --container:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%; display:block}
a{color:inherit}
.container{
  width:min(var(--container), calc(100% - 2rem));
  margin-inline:auto;
}
.offer-bar{
  background:linear-gradient(90deg,#081326 0%,#0e2242 100%);
  color:#dbeafe;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.offer-bar-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  min-height:48px;
  flex-wrap:wrap;
  font-size:.94rem;
  text-align:center;
}
.offer-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  font-weight:800;
  font-size:.76rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  background:rgba(249,115,22,.18);
  color:#fdba74;
}
.offer-bar a{
  color:#93c5fd;
  font-weight:700;
  text-decoration:none;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(2,6,23,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.site-logo,
.footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.site-logo{
  flex-shrink:0;
}
.logo-wordmark{
  display:block;
  width:auto;
  height:48px;
  max-width:min(320px, 38vw);
  filter:drop-shadow(0 8px 24px rgba(0,0,0,.14));
}
.footer-wordmark{
  display:block;
  width:auto;
  height:44px;
  max-width:100%;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.16));
}
.logo-text{
  display:none;
}
.logo-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-size:1.15rem;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg,var(--orange) 0%, #fb923c 100%);
  box-shadow:0 12px 28px rgba(249,115,22,.25);
}
.logo-text strong,
.footer-logo strong{
  display:block;
  color:#fff;
  letter-spacing:-.02em;
}
.logo-text small,
.footer-logo span{
  display:block;
  color:rgba(255,255,255,.72);
  font-size:.82rem;
}
.desktop-nav{
  display:flex;
  align-items:center;
  gap:4px;
  margin-left:auto;
}
.desktop-nav a{
  padding:12px 14px;
  border-radius:12px;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:700;
}
.desktop-nav a:hover,
.desktop-nav a.is-active{
  color:#fff;
  background:rgba(255,255,255,.08);
}
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.header-phone{
  text-decoration:none;
  color:#e2e8f0;
  font-weight:700;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 24px;
  border-radius:16px;
  font-weight:800;
  text-decoration:none;
  transition:.2s ease;
  border:none;
  cursor:pointer;
}
.btn-sm{ min-height:46px; padding:0 18px; border-radius:14px; }
.btn-primary{
  color:#fff;
  background:linear-gradient(180deg,var(--blue) 0%, var(--blue-dark) 100%);
  box-shadow:0 18px 35px rgba(37,99,235,.24);
}
.btn-primary:hover{ transform:translateY(-1px); }
.btn-secondary{
  background:#0b1f3b;
  color:#fff;
}
.btn-outline{
  color:#fff;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
}
.btn-outline-dark{
  color:var(--text);
  background:#fff;
  border:1px solid var(--line-strong);
}
.btn-ghost{
  color:var(--blue);
  background:rgba(37,99,235,.08);
  border:1px solid rgba(37,99,235,.16);
}
.btn.w-full{ width:100%; }
.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:transparent;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  margin:4px auto;
  border-radius:2px;
}
.mobile-menu{
  display:none;
  padding:0 1rem 1rem;
  border-top:1px solid rgba(255,255,255,.08);
}
.mobile-menu.is-open{ display:grid; gap:8px; }
.mobile-menu a{
  text-decoration:none;
  padding:14px 16px;
  border-radius:14px;
  color:#e2e8f0;
  background:rgba(255,255,255,.04);
  font-weight:700;
}
.mobile-phone{ color:#fff !important; }

.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(249,115,22,.18), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(37,99,235,.20), transparent 30%),
    linear-gradient(135deg,#020617 0%,#081529 58%,#0f2a52 100%);
  color:#fff;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.8));
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:48px;
  align-items:center;
  padding:88px 0;
}
.eyebrow,
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:.78rem;
  font-weight:900;
}
.eyebrow{ color:#fdba74; }
.eyebrow::after,
.section-kicker::after{
  content:"";
  width:44px;
  height:2px;
  border-radius:999px;
  background:currentColor;
}
.hero h1,
.page-hero h1{
  margin:.85rem 0 1rem;
  font-size:clamp(2.5rem, 6vw, 4.6rem);
  line-height:1.02;
  letter-spacing:-.04em;
}
.hero h1 .accent,
.page-hero h1 .accent{ color:var(--orange); }
.hero p.lead,
.page-hero p.lead{
  margin:0 0 1.5rem;
  color:rgba(255,255,255,.84);
  font-size:1.08rem;
  max-width:700px;
}
.hero-actions,
.inline-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:26px;
}
.proof-pill{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  box-shadow:var(--shadow-soft);
}
.proof-pill strong{
  display:block;
  margin-bottom:4px;
  color:#fff;
}
.proof-pill span{
  color:rgba(255,255,255,.78);
  font-size:.95rem;
}
.hero-visual-card{
  border-radius:32px;
  padding:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 30px 60px rgba(0,0,0,.24);
}
.visual-placeholder{
  min-height:460px;
  border-radius:24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, #102b52 0%, #081529 60%, #07111f 100%);
  border:1px dashed rgba(255,255,255,.22);
  position:relative;
  overflow:hidden;
}
.visual-placeholder::before{
  content:attr(data-label);
  position:absolute;
  inset:auto 20px 20px 20px;
  color:#cbd5e1;
  font-weight:700;
  font-size:.96rem;
}
.visual-placeholder::after{
  content:"";
  position:absolute;
  inset:20px;
  border:1px dashed rgba(255,255,255,.18);
  border-radius:18px;
}
.mini-stat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:16px;
}
.mini-stat{
  padding:14px;
  border-radius:18px;
  background:#fff;
  color:var(--text);
}
.mini-stat strong{
  display:block;
  font-size:1.2rem;
  margin-bottom:4px;
}

.section{
  padding:84px 0;
}
.section-light{ background:var(--bg-soft); }
.section-dark{
  background:linear-gradient(135deg,#061327 0%,#0b1f3b 60%,#102b52 100%);
  color:#fff;
}
.section-head{
  margin-bottom:34px;
}
.section-head.center{
  text-align:center;
}
.section-head.narrow{
  max-width:820px;
  margin-inline:auto;
  margin-bottom:34px;
}
.section-head h2{
  margin:.8rem 0 .8rem;
  font-size:clamp(1.9rem, 4vw, 3rem);
  line-height:1.08;
  letter-spacing:-.03em;
  color:inherit;
}
.section-head p{
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
}
.section-dark .section-head p{ color:rgba(255,255,255,.82); }

.route-grid,
.card-grid,
.package-grid,
.pricing-grid,
.stats-grid,
.faq-grid,
.service-mini-grid,
.portfolio-grid{
  display:grid;
  gap:24px;
}
.route-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); }
.card-grid.two{ grid-template-columns:repeat(2,minmax(0,1fr)); }
.card-grid.three,
.package-grid,
.pricing-grid,
.portfolio-grid,
.service-mini-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); }
.stats-grid{ grid-template-columns:repeat(4,minmax(0,1fr)); }
.faq-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }

.card,
.route-card,
.package-card,
.pricing-card,
.faq-card,
.metric-card,
.contact-card,
.portfolio-card,
.service-mini-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow-soft);
}
.section-dark .route-card,
.section-dark .card,
.section-dark .metric-card{
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.12);
}
.route-card{
  display:flex;
  flex-direction:column;
  gap:14px;
  height:100%;
}
.route-media{
  position:relative;
  min-height:190px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid #d7e3f2;
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:
    radial-gradient(circle at 18% 18%, rgba(37,99,235,.22), transparent 28%),
    linear-gradient(135deg,#f8fbff 0%,#edf4ff 55%,#e5eefb 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.75);
}
.route-card.orange .route-media{
  background:
    radial-gradient(circle at 18% 18%, rgba(249,115,22,.22), transparent 28%),
    linear-gradient(135deg,#fff8f2 0%,#fff1e4 55%,#fee7d5 100%);
}
.route-card.green .route-media{
  background:
    radial-gradient(circle at 18% 18%, rgba(16,185,129,.20), transparent 28%),
    linear-gradient(135deg,#f2fffb 0%,#e9fbf4 55%,#dcf7ec 100%);
}
.route-media::after{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:16px;
  border:1px dashed rgba(15,23,42,.14);
}
.route-media-label{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  width:max-content;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.85);
  color:#0b1f3b;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  backdrop-filter:blur(8px);
}
.route-media-mock{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr .82fr;
  gap:12px;
  align-items:end;
}
.route-media-panel{
  min-height:96px;
  border-radius:18px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.95);
  box-shadow:0 18px 28px rgba(15,23,42,.08);
}
.route-media-panel::before{
  content:"";
  display:block;
  width:66%;
  height:10px;
  border-radius:999px;
  background:rgba(148,163,184,.45);
  margin:18px 16px 10px;
}
.route-media-panel::after{
  content:"";
  display:block;
  width:84%;
  height:48px;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(37,99,235,.18), rgba(37,99,235,.08));
  margin:0 16px 16px;
}
.route-media-stack{
  display:grid;
  gap:10px;
}
.route-media-stack span{
  display:block;
  min-height:24px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.95);
  box-shadow:0 10px 18px rgba(15,23,42,.05);
}
.route-card.orange .route-media-panel::after{
  background:linear-gradient(180deg, rgba(249,115,22,.18), rgba(249,115,22,.08));
}
.route-card.green .route-media-panel::after{
  background:linear-gradient(180deg, rgba(16,185,129,.18), rgba(16,185,129,.08));
}
.route-badge,
.card-badge{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 12px;
  width:max-content;
  border-radius:999px;
  background:rgba(37,99,235,.10);
  color:var(--blue);
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.route-card.orange .route-badge,
.package-card.orange .package-price,
.card-badge.orange{
  color:var(--orange);
  background:rgba(249,115,22,.12);
}
.route-card.green .route-badge,
.package-card.green .package-price,
.card-badge.green{
  color:var(--green);
  background:rgba(16,185,129,.12);
}
.route-card h3,
.package-card h3,
.pricing-card h3,
.faq-card h3,
.portfolio-card h3,
.service-mini-card h3{
  margin:0;
  font-size:1.35rem;
  line-height:1.2;
}
.route-card p,
.package-card p,
.pricing-card p,
.faq-card p,
.service-mini-card p{
  margin:0;
  color:var(--muted);
}
.route-card ul,
.package-card ul,
.check-list{
  list-style:none;
  padding:0;
  margin:0;
}
.route-card li,
.package-card li,
.check-list li{
  position:relative;
  padding-left:24px;
  margin-bottom:10px;
  font-weight:600;
}
.route-card li::before,
.package-card li::before,
.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--blue);
  font-weight:900;
}
.route-card.orange li::before{ color:var(--orange); }
.route-card.green li::before{ color:var(--green); }
.route-footer{
  margin-top:auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.route-footer small{
  color:#64748b;
}

.steps-band{
  padding:60px 0;
  background:#fff;
  border-top:1px solid rgba(2,6,23,.06);
  border-bottom:1px solid rgba(2,6,23,.06);
}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}
.step-card{
  position:relative;
  padding:28px;
  border-radius:24px;
  background:var(--bg-soft);
  border:1px solid var(--line);
}
.step-number{
  font-size:2rem;
  font-weight:900;
  letter-spacing:-.04em;
  color:var(--orange);
  margin-bottom:12px;
}
.step-card h3{
  margin:0 0 8px;
  font-size:1.15rem;
}
.step-card p{
  margin:0;
  color:var(--muted);
}

.page-hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(37,99,235,.18), transparent 28%),
    linear-gradient(135deg,#020617 0%,#0b1f3b 58%,#12386c 100%);
  color:#fff;
}
.page-hero-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:42px;
  align-items:center;
  padding:72px 0;
}
.page-hero p.small-note{
  color:#cbd5e1;
  margin-top:16px;
}
.page-hero .page-hero-card{
  padding:18px;
  border-radius:28px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

.compare-table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:24px;
  box-shadow:var(--shadow-soft);
  border:1px solid var(--line);
  background:#fff;
}
.compare-table th,
.compare-table td{
  padding:18px 20px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
}
.compare-table th{
  background:#eff6ff;
  color:#0b1f3b;
}
.compare-table tr:last-child td{ border-bottom:none; }

.band-note{
  padding:24px 28px;
  border-radius:24px;
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#9a3412;
}
.band-note strong{ color:#7c2d12; }

.quote-panel,
.contact-layout{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:26px;
  align-items:start;
}
.form-card,
.info-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:32px;
  box-shadow:var(--shadow);
}
.info-card.dark{
  background:#0b1f3b;
  color:#fff;
}
.info-card.dark p,
.info-card.dark li,
.info-card.dark .muted{ color:rgba(255,255,255,.82); }
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.field,
.field.full{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1/-1; }
label{
  font-size:.95rem;
  font-weight:700;
}
input,
select,
textarea{
  width:100%;
  min-height:54px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--line-strong);
  font:inherit;
  color:var(--text);
  background:#fff;
}
textarea{ min-height:150px; resize:vertical; }
.readonly-input{
  background:#f8fafc;
  color:#334155;
  font-weight:700;
}
.consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:18px 0 22px;
  color:var(--muted);
}
.consent input{
  width:18px;
  min-height:18px;
  margin-top:3px;
}
.list-plain{
  list-style:none;
  padding:0;
  margin:0;
}
.list-plain li{
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.list-plain li:last-child{ border-bottom:none; }

.price{
  font-size:2rem;
  letter-spacing:-.04em;
  font-weight:900;
  color:#0b1f3b;
}
.package-price{
  font-size:1.05rem;
  font-weight:900;
  color:var(--blue);
}
.price-note{
  color:#64748b;
  font-size:.94rem;
}
.pricing-card.featured{
  border-color:#93c5fd;
  box-shadow:0 24px 50px rgba(37,99,235,.12);
}
.pricing-card .card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.placeholder-thumb{
  aspect-ratio:16/10;
  border-radius:22px;
  background:
    linear-gradient(180deg,#eff6ff 0%, #dbeafe 100%);
  border:1px dashed #93c5fd;
  position:relative;
  overflow:hidden;
}
.placeholder-thumb.dark{
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.04));
  border-color:rgba(255,255,255,.18);
}
.placeholder-thumb::before{
  content:attr(data-label);
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  color:#1e3a8a;
  font-weight:700;
  font-size:.96rem;
}
.placeholder-thumb.dark::before{
  color:#cbd5e1;
}
.metric-card{
  text-align:center;
}
.metric-card strong{
  display:block;
  font-size:2rem;
  letter-spacing:-.04em;
  margin-bottom:4px;
}
.metric-card span{
  color:var(--muted);
}
.section-dark .metric-card span{
  color:rgba(255,255,255,.82);
}

.portfolio-card{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.portfolio-card .meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.portfolio-card .tag{
  display:inline-flex;
  min-height:32px;
  padding:0 12px;
  align-items:center;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:.76rem;
  font-weight:800;
  text-transform:uppercase;
}
.note-card{
  padding:24px 26px;
  border-radius:24px;
  background:#f8fafc;
  border:1px solid var(--line);
}
.note-card p{
  margin:0;
  color:var(--muted);
}

.contact-card{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.contact-card a{
  text-decoration:none;
  color:var(--blue-dark);
  font-weight:700;
}
.contact-map-placeholder{
  min-height:300px;
  border-radius:24px;
  background:linear-gradient(180deg,#eff6ff 0%, #e2e8f0 100%);
  border:1px dashed #94a3b8;
  position:relative;
}
.contact-map-placeholder::before{
  content:"Map Placeholder — Replace with embedded Google Map or service area visual";
  position:absolute;
  inset:auto 18px 18px 18px;
  color:#334155;
  font-weight:700;
}

.prefooter-band{
  background:#fff7ed;
  border-top:1px solid #fed7aa;
  border-bottom:1px solid #fed7aa;
  color:#7c2d12;
}
.prefooter-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  align-items:center;
  padding:56px 0;
}
.prefooter-grid h2{
  margin:.8rem 0 .8rem;
  font-size:clamp(1.7rem, 4vw, 2.4rem);
  line-height:1.08;
}
.prefooter-grid p{
  margin:0;
  color:#9a3412;
  max-width:720px;
}
.prefooter-steps{
  display:grid;
  gap:14px;
}
.prefooter-steps div{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  border-radius:18px;
  background:#fff;
  border:1px solid #fdba74;
}
.prefooter-steps strong{
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(180deg,var(--orange) 0%, var(--orange-dark) 100%);
  color:#fff;
}

.site-footer{
  background:#020617;
  color:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr .85fr .75fr;
  gap:30px;
  padding:70px 0 42px;
}
.footer-brand p{
  color:rgba(255,255,255,.78);
}
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-contact a,
.site-footer ul a{
  text-decoration:none;
  color:#cbd5e1;
}
.site-footer h4{
  margin:0 0 14px;
  font-size:1rem;
}
.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.footer-bottom{
  padding:22px 0 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-cta{
  text-decoration:none;
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  min-height:44px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.scroll-top{
  position:fixed;
  right:18px;
  bottom:18px;
  width:52px;
  height:52px;
  border:none;
  border-radius:16px;
  background:#0b1f3b;
  color:#fff;
  font-size:1.3rem;
  box-shadow:0 20px 35px rgba(2,6,23,.18);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  cursor:pointer;
  transition:.2s ease;
}
.scroll-top.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.success-banner{
  padding:18px 20px;
  border-radius:18px;
  background:#ecfdf5;
  border:1px solid #a7f3d0;
  color:#065f46;
  font-weight:700;
  margin-bottom:18px;
}
.muted{ color:var(--muted); }

@media (max-width: 1100px){
  .hero-grid,
  .page-hero-inner,
  .quote-panel,
  .contact-layout,
  .prefooter-grid{
    grid-template-columns:1fr;
  }
  .route-grid,
  .card-grid.three,
  .package-grid,
  .pricing-grid,
  .portfolio-grid,
  .service-mini-grid,
  .steps-grid,
  .stats-grid,
  .footer-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .hero-proof{ grid-template-columns:1fr; }
}

@media (max-width: 860px){
  .desktop-nav,
  .header-phone,
  .header-actions .btn-sm{
    display:none;
  }
  .menu-toggle{ display:block; }
  .faq-grid,
  .card-grid.two,
  .form-grid{
    grid-template-columns:1fr;
  }
  .offer-bar-inner{
    padding:10px 0;
  }
}

@media (max-width: 680px){
  .logo-wordmark{
    height:40px;
    max-width:250px;
  }
  .route-media{
    min-height:168px;
  }
  .route-media-mock{
    grid-template-columns:1fr;
  }
  .route-grid,
  .card-grid.three,
  .package-grid,
  .pricing-grid,
  .portfolio-grid,
  .service-mini-grid,
  .steps-grid,
  .stats-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .header-inner{ min-height:74px; }
  .hero-grid,
  .page-hero-inner{ padding:64px 0; }
  .section{ padding:68px 0; }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* image integrations */
.hero-visual-card.media-card,
.page-hero .page-hero-card.media-card{
  padding:10px;
}
.hero-visual-image,
.page-hero-image,
.route-photo,
.package-photo,
.pricing-photo,
.contact-map-image{
  display:block;
  width:100%;
}
.hero-visual-image{
  min-height:460px;
  aspect-ratio:16/11;
  object-fit:cover;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 24px 48px rgba(0,0,0,.18);
  background:#fff;
}
.page-hero-image{
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 24px 48px rgba(0,0,0,.16);
  background:#fff;
}
.route-media.route-media-photo{
  min-height:0;
  padding:0;
  background:none;
  border:1px solid #d7e3f2;
  box-shadow:var(--shadow-soft);
}
.route-media.route-media-photo::after,
.route-media.route-media-photo .route-media-label,
.route-media.route-media-photo .route-media-mock{
  display:none;
}
.route-photo{
  height:220px;
  object-fit:cover;
  border-radius:22px;
}
.package-media{
  margin:-28px -28px 18px;
}
.package-card .package-media:first-child{
  margin-top:-28px;
}
.package-photo{
  height:220px;
  object-fit:cover;
  border-radius:24px 24px 18px 18px;
}
.pricing-media{
  margin:-28px -28px 18px;
}
.pricing-photo{
  height:200px;
  object-fit:cover;
  border-radius:24px 24px 18px 18px;
}
.contact-map-placeholder.photo-map{
  min-height:0;
  border:none;
  background:none;
  overflow:hidden;
}
.contact-map-placeholder.photo-map::before{
  display:none;
}
.contact-map-image{
  height:300px;
  object-fit:cover;
  border-radius:24px;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}
@media (max-width: 680px){
  .hero-visual-image{ min-height:320px; }
  .route-photo,
  .package-photo,
  .pricing-photo,
  .contact-map-image{ height:auto; }
}


/* ELITE HOMEPAGE PASS 01 */
.hero.hero-dark{
  padding: clamp(56px, 7vw, 96px) 0 clamp(44px, 6vw, 76px);
}

.hero-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 42px;
  align-items: center;
}

.hero-copy h1{
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: .95;
  letter-spacing: -.045em;
  max-width: 9.6ch;
  margin-bottom: 18px;
}

.hero-copy p{
  font-size: 1.04rem;
  line-height: 1.82;
  max-width: 62ch;
}

.hero-actions-row,
.inline-actions{
  gap: 14px;
  flex-wrap: wrap;
}

.hero-linkline{
  margin-top: 20px;
  font-size: .98rem;
  line-height: 1.8;
}

.hero-trust-strip{
  margin-top: 30px;
  gap: 16px;
}

.trust-pill{
  border-radius: 18px;
  padding: 18px 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
}

.hero-visual,
.hero-visual-card,
.hero-image-frame{
  overflow: hidden;
  border-radius: 28px;
}

.hero-image-frame{
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    linear-gradient(135deg, rgba(37,99,235,.16), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 60px rgba(0,0,0,.28);
}

.hero-visual img,
.hero-image-frame img,
.hero-image{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
}

.section{
  padding: clamp(72px, 8vw, 108px) 0;
}

.section-head{
  margin-bottom: 34px;
}

.section-head h2{
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin-bottom: 14px;
}

.section-head p{
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.03rem;
  line-height: 1.82;
}

.section-kicker{
  letter-spacing: .12em;
  font-weight: 900;
}

.package-card,
.metric-card,
.faq-card,
.portfolio-card,
.contact-form-panel,
.contact-photo,
.card-panel{
  border-radius: 24px;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
}

.package-card{
  padding: 24px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.package-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(15,23,42,.14);
}

.package-card img{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 16px;
}

.package-card h3{
  font-size: 1.3rem;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.package-card p,
.metric-card span,
.faq-card p{
  line-height: 1.78;
}

.metric-card{
  padding: 26px 22px;
}

.metric-card strong{
  display:block;
  font-size: 1.08rem;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.btn,
.package-btn,
.google-review-link,
.btn-outline-light{
  border-radius: 14px;
  min-height: 50px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(37,99,235,.18);
}

.prefooter-band{
  padding: 68px 0;
  background: linear-gradient(180deg, #fff7ef 0%, #fff 100%);
  border-top: 1px solid rgba(249,115,22,.18);
}

.prefooter-grid{
  gap: 32px;
  align-items: stretch;
}

.prefooter-grid h2{
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.prefooter-steps{
  display: grid;
  gap: 14px;
}

.prefooter-steps div{
  background: #fff;
  border: 1px solid rgba(249,115,22,.26);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 16px 34px rgba(15,23,42,.06);
}

.prefooter-steps strong{
  display:block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.site-footer{
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 991px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-copy h1{
    max-width: none;
  }

  .hero-copy,
  .hero-visual{
    width: 100%;
  }

  .hero-visual{
    max-width: 680px;
    margin: 0 auto;
  }

  .hero-copy p,
  .hero-linkline{
    max-width: none;
  }
}

@media (max-width: 640px){
  .hero.hero-dark{
    padding-top: 42px;
  }

  .hero-copy h1{
    font-size: clamp(2.3rem, 10vw, 3.3rem);
  }

  .section{
    padding: 62px 0;
  }

  .package-card,
  .metric-card,
  .faq-card{
    border-radius: 20px;
  }
}


/* ELITE HOMEPAGE PASS 02 */
.home-page{
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.05), transparent 22%),
    radial-gradient(circle at 90% 22%, rgba(249,115,22,.06), transparent 18%),
    #ffffff;
}

.steps-band{
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.steps-band::before{
  content:"";
  position:absolute;
  inset:auto auto 0 -120px;
  width:320px;
  height:320px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(37,99,235,.08) 0%, rgba(37,99,235,0) 70%);
  pointer-events:none;
}

.steps-band::after{
  content:"";
  position:absolute;
  top:-120px;
  right:-100px;
  width:280px;
  height:280px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(249,115,22,.08) 0%, rgba(249,115,22,0) 72%);
  pointer-events:none;
}

.steps-grid{
  gap: 22px;
}

.step-card{
  position: relative;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(37,99,235,.12);
  border-radius: 22px;
  padding: 26px 22px 22px;
  box-shadow: 0 18px 40px rgba(15,23,42,.07);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.step-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(15,23,42,.12);
  border-color: rgba(37,99,235,.28);
}

.step-card h3{
  font-size: 1.08rem;
  line-height: 1.28;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.step-card p{
  line-height: 1.72;
  color: #475569;
}

.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:42px;
  border-radius:12px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(249,115,22,.14);
  margin-bottom: 14px;
}

.route-grid{
  gap: 26px;
}

.route-card{
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 38px rgba(15,23,42,.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}

.route-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
}

.route-card.orange::before{
  background: linear-gradient(90deg, #f97316 0%, #fdba74 100%);
}

.route-card.green::before{
  background: linear-gradient(90deg, #10b981 0%, #6ee7b7 100%);
}

.route-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 56px rgba(15,23,42,.14);
  border-color: rgba(37,99,235,.20);
}

.route-media{
  background:
    linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,.08)),
    linear-gradient(135deg, rgba(37,99,235,.08), rgba(37,99,235,.02));
  border: 1px solid rgba(37,99,235,.10);
  border-radius: 18px;
  padding: 8px;
  margin-bottom: 14px;
}

.route-card.orange .route-media{
  background:
    linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,.08)),
    linear-gradient(135deg, rgba(249,115,22,.08), rgba(249,115,22,.02));
  border-color: rgba(249,115,22,.14);
}

.route-card.green .route-media{
  background:
    linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,.08)),
    linear-gradient(135deg, rgba(16,185,129,.08), rgba(16,185,129,.02));
  border-color: rgba(16,185,129,.14);
}

.route-photo{
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15,23,42,.10);
}

.route-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #eff6ff;
  color: #2563eb;
  margin-bottom: 12px;
}

.route-card.orange .route-badge{
  background: #fff7ed;
  color: #ea580c;
}

.route-card.green .route-badge{
  background: #ecfdf5;
  color: #059669;
}

.route-card h3{
  font-size: 1.34rem;
  line-height: 1.16;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}

.route-card p,
.route-card li,
.service-mini-card p,
.metric-card span{
  line-height: 1.74;
}

.route-footer{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,.08);
}

.section-light{
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  position: relative;
}

.section-light::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:1px;
  background: linear-gradient(90deg, rgba(37,99,235,0), rgba(37,99,235,.24), rgba(37,99,235,0));
}

.service-mini-grid{
  gap: 18px;
}

.service-mini-card{
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(37,99,235,.10);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 14px 30px rgba(15,23,42,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-mini-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(15,23,42,.10);
  border-color: rgba(37,99,235,.22);
}

.service-mini-card h3{
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.section.section-dark{
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,.12), transparent 26%),
    linear-gradient(135deg, #061327 0%, #0b1f3b 58%, #102b52 100%);
  overflow: hidden;
}

.section.section-dark::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:320px;
  height:320px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(255,255,255,.05), rgba(255,255,255,0) 70%);
  pointer-events:none;
}

.stats-grid{
  gap: 20px;
}

.metric-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 18px 38px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.metric-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(0,0,0,.22);
  border-color: rgba(147,197,253,.48);
}

.metric-card strong{
  display:block;
  margin-bottom: 8px;
  font-size: 1.06rem;
  letter-spacing: -.01em;
}

.prefooter-band{
  position: relative;
  background:
    radial-gradient(circle at right top, rgba(249,115,22,.10), transparent 24%),
    linear-gradient(180deg, #fff7ef 0%, #fff 100%);
  overflow:hidden;
}

.prefooter-band::after{
  content:"";
  position:absolute;
  left:-80px;
  bottom:-80px;
  width:240px;
  height:240px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(249,115,22,.08), rgba(249,115,22,0) 72%);
  pointer-events:none;
}

.prefooter-grid{
  gap: 32px;
  align-items: center;
}

.prefooter-grid h2{
  max-width: 13ch;
}

.prefooter-steps{
  display:grid;
  gap:14px;
}

.prefooter-steps div{
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(249,115,22,.22);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 14px 30px rgba(15,23,42,.06);
  backdrop-filter: blur(8px);
  transition: transform .22s ease, box-shadow .22s ease;
}

.prefooter-steps div:hover{
  transform: translateX(4px);
  box-shadow: 0 18px 34px rgba(15,23,42,.09);
}

.prefooter-steps strong{
  display:block;
  margin-bottom: 6px;
  color: #f97316;
}

.footer-grid{
  gap: 26px;
}

@media (max-width: 991px){
  .steps-grid,
  .route-grid,
  .service-mini-grid,
  .stats-grid{
    gap: 18px;
  }

  .prefooter-grid h2{
    max-width: none;
  }
}

@media (max-width: 640px){
  .route-card,
  .step-card,
  .service-mini-card,
  .metric-card{
    border-radius: 18px;
  }

  .route-card{
    padding: 16px;
  }

  .route-media{
    padding: 6px;
  }
}



/* WHY WORDPRESS PLACE IMAGE PASS */
.steps-intro{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,460px);
  gap:32px;
  align-items:center;
  margin-bottom:30px;
}

.steps-head{
  margin-bottom:0;
}

.steps-intro .section-head{
  margin-bottom:0;
}

.steps-intro .section-head.center.narrow{
  max-width:none;
  text-align:left;
}

.steps-intro .section-head p{
  margin-left:0;
  margin-right:0;
  max-width:62ch;
}

.steps-visual{
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border:1px solid rgba(37,99,235,.10);
  box-shadow:0 22px 48px rgba(15,23,42,.10);
  padding:12px;
}

.steps-visual-image{
  display:block;
  width:100%;
  height:auto;
  border-radius:16px;
}

@media (max-width: 991px){
  .steps-intro{
    grid-template-columns:1fr;
    gap:20px;
  }

  .steps-intro .section-head.center.narrow{
    text-align:center;
  }

  .steps-intro .section-head p{
    margin-left:auto;
    margin-right:auto;
  }

  .steps-visual{
    max-width:680px;
    margin:0 auto;
  }
}


/* HERO ELITE PASS 03 */
.hero-grid-elite{
  grid-template-columns:minmax(0,1.02fr) minmax(360px,.98fr);
  gap:42px;
  align-items:center;
}

.hero-copy-wrap{
  max-width:680px;
}

.hero-proof-row{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:26px;
}

.hero-proof-chip{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px 16px;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
  backdrop-filter:blur(10px);
}

.hero-proof-chip strong{
  display:block;
  margin-bottom:8px;
  font-size:1rem;
  color:#ffffff;
}

.hero-proof-chip span{
  display:block;
  line-height:1.72;
  color:rgba(255,255,255,.82);
  font-size:.95rem;
}

.hero-showcase{
  padding:16px;
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(37,99,235,.18), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 30px 60px rgba(0,0,0,.26);
}

.hero-showcase-panel{
  border-radius:22px;
  overflow:hidden;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}

.hero-showcase .hero-visual-image{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
  object-position:center top;
}

.hero-showcase-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.hero-showcase-meta div{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.hero-showcase-meta strong{
  display:block;
  margin-bottom:6px;
  font-size:.92rem;
  line-height:1.2;
  color:#0f172a;
}

.hero-showcase-meta span{
  display:block;
  font-size:.84rem;
  line-height:1.55;
  color:#475569;
}

.hero-showcase-note{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px 18px;
}

.hero-showcase-note strong{
  display:block;
  margin-bottom:8px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.35;
}

.hero-showcase-note p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.75;
  font-size:.95rem;
}

@media (max-width: 991px){
  .hero-grid-elite{
    grid-template-columns:1fr;
    gap:26px;
  }

  .hero-proof-row,
  .hero-showcase-meta{
    grid-template-columns:1fr;
  }

  .hero-showcase{
    max-width:680px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .hero-proof-row{
    gap:12px;
  }

  .hero-proof-chip,
  .hero-showcase,
  .hero-showcase-panel,
  .hero-showcase-note{
    border-radius:18px;
  }
}


/* WHY SECTION ELITE PASS 04 */
.steps-band{
  padding-top: 82px;
  padding-bottom: 86px;
}

.steps-intro{
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 36px;
}

.steps-intro .section-head h2{
  max-width: 12ch;
}

.steps-intro .section-head p{
  max-width: 58ch;
}

.steps-visual{
  padding: 14px;
  border-radius: 26px;
  border: 1px solid rgba(37,99,235,.12);
  box-shadow: 0 24px 48px rgba(15,23,42,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,255,.94));
}

.steps-visual-image{
  border-radius: 18px;
  display: block;
  width: 100%;
  height: auto;
}

.steps-grid{
  gap: 22px;
}

.step-card{
  min-height: 100%;
  padding: 28px 22px 24px;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(15,23,42,.07);
}

.step-number{
  min-width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: .92rem;
  font-weight: 900;
  color: #f97316;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(249,115,22,.16),
    0 10px 20px rgba(249,115,22,.08);
  margin-bottom: 16px;
}

.step-card h3{
  font-size: 1.08rem;
  line-height: 1.28;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.step-card p{
  font-size: .95rem;
  line-height: 1.72;
}

@media (max-width: 991px){
  .steps-intro{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .steps-intro .section-head h2,
  .steps-intro .section-head p{
    max-width: none;
  }

  .steps-visual{
    max-width: 720px;
    margin: 0 auto;
  }
}


/* PROOF BAND PASS 05 */
.proof-band{
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  position: relative;
}

.proof-band::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:1px;
  background: linear-gradient(90deg, rgba(37,99,235,0), rgba(37,99,235,.22), rgba(37,99,235,0));
}

.proof-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  margin-top:8px;
}

.proof-card{
  background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);
  border:1px solid rgba(37,99,235,.10);
  border-radius:22px;
  padding:24px 22px;
  box-shadow:0 18px 36px rgba(15,23,42,.07);
}

.proof-card strong{
  display:block;
  margin-bottom:10px;
  font-size:1.08rem;
  line-height:1.25;
  letter-spacing:-.02em;
  color:#0f172a;
}

.proof-card p{
  margin:0;
  line-height:1.74;
  color:#475569;
}

.proof-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}

@media (max-width: 991px){
  .proof-grid{
    grid-template-columns:1fr;
  }
}


/* RESULTS PREVIEW PASS 06 */
.results-preview-band{
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  position: relative;
}

.results-preview-band::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:1px;
  background: linear-gradient(90deg, rgba(37,99,235,0), rgba(37,99,235,.22), rgba(37,99,235,0));
}

.results-preview-head{
  margin-bottom: 30px;
}

.results-preview-copy{
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.results-preview-copy h2{
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}

.results-preview-copy p{
  max-width: 70ch;
  margin: 0 auto 18px;
  line-height: 1.82;
  color: #475569;
}

.results-preview-points{
  list-style: none;
  padding: 0;
  margin: 0 auto 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.results-preview-points li{
  background: #ffffff;
  border: 1px solid rgba(37,99,235,.12);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  font-weight: 700;
  color: #0f172a;
}

.results-preview-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}

.results-preview-card{
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(37,99,235,.10);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(15,23,42,.08);
  display: flex;
  flex-direction: column;
}

.results-preview-image-link{
  display: block;
  background: #eef4ff;
}

.results-preview-image{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.results-preview-body{
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.results-preview-label{
  display: inline-flex;
  width: max-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.results-preview-body h3{
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.16;
  letter-spacing: -.02em;
}

.results-preview-body p{
  margin: 0;
  line-height: 1.76;
  color: #475569;
}

.results-preview-actions{
  margin-top: 18px;
}

.results-preview-actions.stacked{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.results-preview-card-cta{
  justify-content: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

@media (max-width: 991px){
  .results-preview-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .results-preview-points{
    flex-direction: column;
    align-items: stretch;
  }
}


/* FINAL CLOSE PASS 07 */
.prefooter-band{
  padding: 78px 0;
  background:
    radial-gradient(circle at right top, rgba(249,115,22,.10), transparent 24%),
    linear-gradient(180deg, #fff7ef 0%, #fff 100%);
}

.final-close-panel{
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, #061327 0%, #0b1f3b 58%, #102b52 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 60px rgba(15,23,42,.20);
  overflow: hidden;
  position: relative;
}

.final-close-panel::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.final-close-copy,
.final-close-points{
  position: relative;
  z-index: 1;
}

.final-close-copy .section-kicker{
  color: #fdba74;
}

.final-close-copy h2{
  margin: 10px 0 14px;
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  max-width: 14ch;
}

.final-close-copy p{
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.82;
  max-width: 62ch;
}

.final-close-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.final-close-points{
  display: grid;
  gap: 14px;
}

.final-close-points div{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 16px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}

.final-close-points strong{
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
}

.final-close-points span{
  display: block;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  font-size: .95rem;
}

@media (max-width: 991px){
  .final-close-panel{
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .final-close-copy h2,
  .final-close-copy p{
    max-width: none;
  }
}

@media (max-width: 640px){
  .prefooter-band{
    padding: 62px 0;
  }

  .final-close-panel{
    border-radius: 22px;
    padding: 20px;
  }

  .final-close-points div{
    border-radius: 16px;
  }

  .final-close-actions .btn,
  .final-close-actions .btn-outline-light{
    width: 100%;
    justify-content: center;
  }
}


/* SERVICES HUB PASS 01 */
.services-guidance-card{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(260px,.92fr);
  gap:28px;
  align-items:center;
  padding:28px;
  border-radius:26px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border:1px solid rgba(37,99,235,.10);
  box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.services-guidance-card h2{
  margin:10px 0 12px;
  font-size:clamp(1.8rem,3vw,2.6rem);
  line-height:1.04;
  letter-spacing:-.03em;
}

.services-guidance-card p{
  margin:0;
  line-height:1.8;
  color:#475569;
  max-width:64ch;
}

.services-guidance-actions{
  display:grid;
  gap:12px;
}

.services-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.services-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.services-final-copy,
.services-final-points{
  position:relative;
  z-index:1;
}

.services-final-copy .section-kicker{
  color:#fdba74;
}

.services-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.services-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.services-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.services-final-points{
  display:grid;
  gap:14px;
}

.services-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.services-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.services-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .services-guidance-card,
  .services-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .services-final-copy h2,
  .services-final-copy p,
  .services-guidance-card p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .services-guidance-card,
  .services-final-close{
    padding:20px;
    border-radius:22px;
  }

  .services-final-actions .btn,
  .services-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* SERVICES HERO ELITE PASS 02 */
.services-hero-elite{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:38px;
  align-items:center;
}

.services-hero-copy{
  max-width:680px;
}

.services-hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.services-hero-proof-chip{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 15px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}

.services-hero-proof-chip strong{
  display:block;
  margin-bottom:7px;
  color:#ffffff;
  font-size:.98rem;
  line-height:1.25;
}

.services-hero-proof-chip span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.66;
  font-size:.92rem;
}

.services-hero-showcase{
  padding:16px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(37,99,235,.18), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 58px rgba(0,0,0,.24);
}

.services-hero-showcase-panel{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.services-hero-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center top;
}

.services-hero-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.services-hero-meta div{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.services-hero-meta strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:.9rem;
  line-height:1.2;
}

.services-hero-meta span{
  display:block;
  color:#475569;
  font-size:.83rem;
  line-height:1.52;
}

.services-hero-note{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 17px;
  color:#ffffff;
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .services-hero-elite{
    grid-template-columns:1fr;
    gap:24px;
  }

  .services-hero-proof,
  .services-hero-meta{
    grid-template-columns:1fr;
  }

  .services-hero-showcase{
    max-width:700px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .services-hero-showcase,
  .services-hero-showcase-panel,
  .services-hero-note,
  .services-hero-proof-chip{
    border-radius:18px;
  }
}


/* SMALL BUSINESS HERO PASS 01 */
.sb-hero-elite{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:38px;
  align-items:center;
}

.sb-hero-copy{
  max-width:700px;
}

.sb-hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.sb-hero-proof-chip{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 15px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}

.sb-hero-proof-chip strong{
  display:block;
  margin-bottom:7px;
  color:#ffffff;
  font-size:.98rem;
  line-height:1.25;
}

.sb-hero-proof-chip span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.66;
  font-size:.92rem;
}

.sb-hero-showcase{
  padding:16px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(37,99,235,.18), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 58px rgba(0,0,0,.24);
}

.sb-hero-showcase-panel{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.sb-hero-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center top;
}

.sb-hero-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.sb-hero-meta div{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.sb-hero-meta strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:.9rem;
  line-height:1.2;
}

.sb-hero-meta span{
  display:block;
  color:#475569;
  font-size:.83rem;
  line-height:1.52;
}

.sb-hero-showcase-note{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 17px;
  color:#ffffff;
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .sb-hero-elite{
    grid-template-columns:1fr;
    gap:24px;
  }

  .sb-hero-proof,
  .sb-hero-meta{
    grid-template-columns:1fr;
  }

  .sb-hero-showcase{
    max-width:700px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .sb-hero-showcase,
  .sb-hero-showcase-panel,
  .sb-hero-showcase-note,
  .sb-hero-proof-chip{
    border-radius:18px;
  }
}


/* SMALL BUSINESS FINAL CLOSE PASS 02 */
.sb-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.sb-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.sb-final-copy,
.sb-final-points{
  position:relative;
  z-index:1;
}

.sb-final-copy .section-kicker{
  color:#fdba74;
}

.sb-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.sb-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.sb-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.sb-final-points{
  display:grid;
  gap:14px;
}

.sb-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.sb-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.sb-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .sb-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .sb-final-copy h2,
  .sb-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .sb-final-close{
    padding:20px;
    border-radius:22px;
  }

  .sb-final-actions .btn,
  .sb-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* AI HERO PASS 01 */
.ai-hero-elite{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:38px;
  align-items:center;
}

.ai-hero-copy{
  max-width:700px;
}

.ai-hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.ai-hero-proof-chip{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 15px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}

.ai-hero-proof-chip strong{
  display:block;
  margin-bottom:7px;
  color:#ffffff;
  font-size:.98rem;
  line-height:1.25;
}

.ai-hero-proof-chip span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.66;
  font-size:.92rem;
}

.ai-hero-showcase{
  padding:16px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(37,99,235,.18), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 58px rgba(0,0,0,.24);
}

.ai-hero-showcase-panel{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.ai-hero-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center top;
}

.ai-hero-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.ai-hero-meta div{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.ai-hero-meta strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:.9rem;
  line-height:1.2;
}

.ai-hero-meta span{
  display:block;
  color:#475569;
  font-size:.83rem;
  line-height:1.52;
}

.ai-hero-showcase-note{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 17px;
  color:#ffffff;
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .ai-hero-elite{
    grid-template-columns:1fr;
    gap:24px;
  }

  .ai-hero-proof,
  .ai-hero-meta{
    grid-template-columns:1fr;
  }

  .ai-hero-showcase{
    max-width:700px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .ai-hero-showcase,
  .ai-hero-showcase-panel,
  .ai-hero-showcase-note,
  .ai-hero-proof-chip{
    border-radius:18px;
  }
}


/* AI FINAL CLOSE PASS 02 */
.ai-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.ai-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.ai-final-copy,
.ai-final-points{
  position:relative;
  z-index:1;
}

.ai-final-copy .section-kicker{
  color:#fdba74;
}

.ai-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.ai-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.ai-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.ai-final-points{
  display:grid;
  gap:14px;
}

.ai-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.ai-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.ai-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .ai-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .ai-final-copy h2,
  .ai-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .ai-final-close{
    padding:20px;
    border-radius:22px;
  }

  .ai-final-actions .btn,
  .ai-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* GROWTH HERO PASS 01 */
.growth-hero-elite{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:38px;
  align-items:center;
}

.growth-hero-copy{
  max-width:700px;
}

.growth-hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.growth-hero-proof-chip{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 15px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}

.growth-hero-proof-chip strong{
  display:block;
  margin-bottom:7px;
  color:#ffffff;
  font-size:.98rem;
  line-height:1.25;
}

.growth-hero-proof-chip span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.66;
  font-size:.92rem;
}

.growth-hero-showcase{
  padding:16px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(16,185,129,.16), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 58px rgba(0,0,0,.24);
}

.growth-hero-showcase-panel{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.growth-hero-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center top;
}

.growth-hero-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.growth-hero-meta div{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.growth-hero-meta strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:.9rem;
  line-height:1.2;
}

.growth-hero-meta span{
  display:block;
  color:#475569;
  font-size:.83rem;
  line-height:1.52;
}

.growth-hero-showcase-note{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 17px;
  color:#ffffff;
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .growth-hero-elite{
    grid-template-columns:1fr;
    gap:24px;
  }

  .growth-hero-proof,
  .growth-hero-meta{
    grid-template-columns:1fr;
  }

  .growth-hero-showcase{
    max-width:700px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .growth-hero-showcase,
  .growth-hero-showcase-panel,
  .growth-hero-showcase-note,
  .growth-hero-proof-chip{
    border-radius:18px;
  }
}


/* GROWTH FINAL CLOSE PASS 02 */
.growth-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.growth-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.growth-final-copy,
.growth-final-points{
  position:relative;
  z-index:1;
}

.growth-final-copy .section-kicker{
  color:#86efac;
}

.growth-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.growth-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.growth-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.growth-final-points{
  display:grid;
  gap:14px;
}

.growth-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.growth-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.growth-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .growth-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .growth-final-copy h2,
  .growth-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .growth-final-close{
    padding:20px;
    border-radius:22px;
  }

  .growth-final-actions .btn,
  .growth-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* PRICING HERO PASS 01 */
.pricing-hero-elite{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:38px;
  align-items:center;
}

.pricing-hero-copy{
  max-width:700px;
}

.pricing-hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.pricing-hero-proof-chip{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 15px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}

.pricing-hero-proof-chip strong{
  display:block;
  margin-bottom:7px;
  color:#ffffff;
  font-size:.98rem;
  line-height:1.25;
}

.pricing-hero-proof-chip span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.66;
  font-size:.92rem;
}

.pricing-hero-showcase{
  padding:16px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(37,99,235,.18), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 58px rgba(0,0,0,.24);
}

.pricing-hero-showcase-panel{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.pricing-hero-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center top;
}

.pricing-hero-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.pricing-hero-meta div{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.pricing-hero-meta strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:.9rem;
  line-height:1.2;
}

.pricing-hero-meta span{
  display:block;
  color:#475569;
  font-size:.83rem;
  line-height:1.52;
}

.pricing-hero-showcase-note{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 17px;
  color:#ffffff;
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .pricing-hero-elite{
    grid-template-columns:1fr;
    gap:24px;
  }

  .pricing-hero-proof,
  .pricing-hero-meta{
    grid-template-columns:1fr;
  }

  .pricing-hero-showcase{
    max-width:700px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .pricing-hero-showcase,
  .pricing-hero-showcase-panel,
  .pricing-hero-showcase-note,
  .pricing-hero-proof-chip{
    border-radius:18px;
  }
}


/* PRICING FINAL CLOSE PASS 02 */
.pricing-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.pricing-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.pricing-final-copy,
.pricing-final-points{
  position:relative;
  z-index:1;
}

.pricing-final-copy .section-kicker{
  color:#fdba74;
}

.pricing-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.pricing-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.pricing-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.pricing-final-points{
  display:grid;
  gap:14px;
}

.pricing-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.pricing-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.pricing-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .pricing-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .pricing-final-copy h2,
  .pricing-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .pricing-final-close{
    padding:20px;
    border-radius:22px;
  }

  .pricing-final-actions .btn,
  .pricing-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* PORTFOLIO LIVE GRID PASS 01 */
.project-thumb-panel{
  min-height: 220px;
  border-radius: 22px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 36px rgba(15,23,42,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.project-thumb-panel h3{
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.06;
  letter-spacing: -.03em;
}

.project-thumb-panel p{
  margin: 0;
  color: rgba(255,255,255,.84);
  line-height: 1.72;
  font-size: .95rem;
}

.project-thumb-label{
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #ffffff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-thumb-domain{
  display: inline-block;
  margin-top: 16px;
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .01em;
}

.project-thumb-blue{
  background:
    linear-gradient(135deg, #0b1f3b 0%, #153a74 100%);
}

.project-thumb-dark{
  background:
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.project-thumb-green{
  background:
    linear-gradient(135deg, #0f172a 0%, #166534 100%);
}

.project-thumb-gold{
  background:
    linear-gradient(135deg, #3b1d0b 0%, #8a4b13 100%);
}


/* PORTFOLIO REAL PROJECTS PASS 01 */
.portfolio-shot-wrap{
  position:relative;
  aspect-ratio:16 / 10;
  border-radius:20px;
  overflow:hidden;
  background:linear-gradient(135deg,#0b1f3b 0%,#153a74 100%);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 18px 36px rgba(15,23,42,.08);
}

.portfolio-shot{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.portfolio-shot-wrap::before{
  content:attr(data-fallback);
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px;
  color:#ffffff;
  font-size:1.2rem;
  font-weight:800;
  line-height:1.2;
  letter-spacing:-.02em;
  opacity:0;
}

.portfolio-shot-wrap.portfolio-shot-missing::before{
  opacity:1;
}

.portfolio-card .meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

.project-thumb-panel{
  min-height:220px;
  border-radius:20px;
  padding:22px 20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 18px 36px rgba(15,23,42,.10);
  border:1px solid rgba(255,255,255,.12);
}

.project-thumb-panel h3{
  margin:0 0 10px;
  color:#ffffff;
  font-size:1.45rem;
  line-height:1.06;
  letter-spacing:-.03em;
}

.project-thumb-panel p{
  margin:0;
  color:rgba(255,255,255,.84);
  line-height:1.72;
  font-size:.95rem;
}

.project-thumb-label{
  display:inline-flex;
  width:max-content;
  min-height:28px;
  align-items:center;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:#ffffff;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.project-thumb-domain{
  display:inline-block;
  margin-top:16px;
  color:rgba(255,255,255,.92);
  font-weight:800;
  font-size:.88rem;
  letter-spacing:.01em;
}

.project-thumb-blue{
  background:linear-gradient(135deg,#0b1f3b 0%,#153a74 100%);
}


/* PORTFOLIO ELITE PASS 02 */
.portfolio-page .portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
  align-items:start;
}

.portfolio-page .portfolio-card{
  border-radius:24px;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  padding:18px;
  background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.portfolio-page .portfolio-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 54px rgba(15,23,42,.14);
  border-color:rgba(37,99,235,.18);
}

.portfolio-page .portfolio-card:nth-child(1){
  grid-column:span 2;
}

.portfolio-page .portfolio-card:nth-child(1) .portfolio-shot-wrap,
.portfolio-page .portfolio-card:nth-child(1) .project-thumb-panel{
  aspect-ratio:16 / 8;
  min-height:260px;
}

.portfolio-page .portfolio-card:nth-child(1) h3{
  font-size:1.4rem;
}

.portfolio-page .portfolio-shot-wrap{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 16px 34px rgba(15,23,42,.10);
}

.portfolio-page .portfolio-shot{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.portfolio-page .project-thumb-panel{
  border-radius:18px;
  min-height:220px;
}

.portfolio-page .meta{
  margin-top:14px;
  margin-bottom:10px;
}

.portfolio-page .tag{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.portfolio-page .portfolio-card h3{
  margin:0 0 8px;
  font-size:1.14rem;
  line-height:1.18;
  letter-spacing:-.02em;
}

.portfolio-page .portfolio-card p{
  line-height:1.74;
  color:#475569;
}

.portfolio-page .note-card{
  padding:24px 26px;
  border-radius:22px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border:1px solid rgba(37,99,235,.10);
  box-shadow:0 16px 34px rgba(15,23,42,.06);
}

.portfolio-page .note-card p{
  margin:0;
  font-size:1rem;
  line-height:1.82;
  color:#334155;
}

@media (max-width: 991px){
  .portfolio-page .portfolio-grid{
    grid-template-columns:1fr 1fr;
  }

  .portfolio-page .portfolio-card:nth-child(1){
    grid-column:span 2;
  }
}

@media (max-width: 640px){
  .portfolio-page .portfolio-grid{
    grid-template-columns:1fr;
  }

  .portfolio-page .portfolio-card:nth-child(1){
    grid-column:span 1;
  }

  .portfolio-page .portfolio-card:nth-child(1) .portfolio-shot-wrap,
  .portfolio-page .portfolio-card:nth-child(1) .project-thumb-panel{
    aspect-ratio:16 / 10;
    min-height:0;
  }
}


/* PORTFOLIO ELITE PASS 03 */
.portfolio-proof-panel{
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(320px,.98fr);
  gap:28px;
  align-items:center;
  padding:30px;
  border-radius:26px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border:1px solid rgba(37,99,235,.10);
  box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.portfolio-proof-copy h2{
  margin:10px 0 12px;
  font-size:clamp(1.9rem,3vw,2.8rem);
  line-height:1.03;
  letter-spacing:-.03em;
  max-width:14ch;
}

.portfolio-proof-copy p{
  margin:0;
  color:#475569;
  line-height:1.82;
  max-width:64ch;
}

.portfolio-proof-points{
  display:grid;
  gap:14px;
}

.portfolio-proof-points div{
  background:#ffffff;
  border:1px solid rgba(37,99,235,.10);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 30px rgba(15,23,42,.06);
}

.portfolio-proof-points strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:1rem;
  line-height:1.3;
}

.portfolio-proof-points span{
  display:block;
  color:#475569;
  line-height:1.7;
  font-size:.95rem;
}

.portfolio-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.portfolio-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.portfolio-final-copy,
.portfolio-final-points{
  position:relative;
  z-index:1;
}

.portfolio-final-copy .section-kicker{
  color:#fdba74;
}

.portfolio-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.portfolio-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.portfolio-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.portfolio-final-points{
  display:grid;
  gap:14px;
}

.portfolio-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.portfolio-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.portfolio-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .portfolio-proof-panel,
  .portfolio-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .portfolio-proof-copy h2,
  .portfolio-proof-copy p,
  .portfolio-final-copy h2,
  .portfolio-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .portfolio-proof-panel,
  .portfolio-final-close{
    padding:20px;
    border-radius:22px;
  }

  .portfolio-final-actions .btn,
  .portfolio-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* PORTFOLIO IMAGE ALIGN FIX */
.portfolio-page .portfolio-shot-wrap{
  background: #ffffff;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.portfolio-page .portfolio-shot{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #ffffff;
}

.portfolio-page .portfolio-card:nth-child(1) .portfolio-shot-wrap{
  padding: 14px;
}

.portfolio-page .portfolio-card:nth-child(1) .portfolio-shot{
  object-position: center top;
}


/* PORTFOLIO IMAGE FIT PASS 02 */
.portfolio-page .portfolio-shot-wrap{
  aspect-ratio: 16 / 10;
  padding: 0;
  background: #ffffff;
  display: block;
  overflow: hidden;
}

.portfolio-page .portfolio-shot{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: #ffffff;
}

.portfolio-page .portfolio-card:nth-child(1) .portfolio-shot-wrap{
  aspect-ratio: 16 / 8;
}

.portfolio-page .portfolio-card:nth-child(1) .portfolio-shot{
  object-position: center top;
}



/* CONTACT HERO PASS 01 */
.contact-hero-elite{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:38px;
  align-items:center;
}

.contact-hero-copy{
  max-width:700px;
}

.contact-hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.contact-hero-proof-chip{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 15px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}

.contact-hero-proof-chip strong{
  display:block;
  margin-bottom:7px;
  color:#ffffff;
  font-size:.98rem;
  line-height:1.25;
}

.contact-hero-proof-chip span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.66;
  font-size:.92rem;
}

.contact-hero-showcase{
  padding:16px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(37,99,235,.18), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 58px rgba(0,0,0,.24);
}

.contact-hero-showcase-panel{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.contact-hero-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center top;
}

.contact-hero-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.contact-hero-meta div{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.contact-hero-meta strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:.9rem;
  line-height:1.2;
}

.contact-hero-meta span{
  display:block;
  color:#475569;
  font-size:.83rem;
  line-height:1.52;
}

.contact-hero-showcase-note{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 17px;
  color:#ffffff;
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .contact-hero-elite{
    grid-template-columns:1fr;
    gap:24px;
  }

  .contact-hero-proof,
  .contact-hero-meta{
    grid-template-columns:1fr;
  }

  .contact-hero-showcase{
    max-width:700px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .contact-hero-showcase,
  .contact-hero-showcase-panel,
  .contact-hero-showcase-note,
  .contact-hero-proof-chip{
    border-radius:18px;
  }
}


/* CONTACT FINAL CLOSE PASS 02 */
.contact-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.contact-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.contact-final-copy,
.contact-final-points{
  position:relative;
  z-index:1;
}

.contact-final-copy .section-kicker{
  color:#fdba74;
}

.contact-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.contact-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.contact-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.contact-final-points{
  display:grid;
  gap:14px;
}

.contact-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.contact-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.contact-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .contact-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .contact-final-copy h2,
  .contact-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .contact-final-close{
    padding:20px;
    border-radius:22px;
  }

  .contact-final-actions .btn,
  .contact-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* ABOUT HERO PASS 01 */
.about-hero-elite{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:38px;
  align-items:center;
}

.about-hero-copy{
  max-width:700px;
}

.about-hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.about-hero-proof-chip{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 15px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}

.about-hero-proof-chip strong{
  display:block;
  margin-bottom:7px;
  color:#ffffff;
  font-size:.98rem;
  line-height:1.25;
}

.about-hero-proof-chip span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.66;
  font-size:.92rem;
}

.about-hero-showcase{
  padding:16px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(37,99,235,.18), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 58px rgba(0,0,0,.24);
}

.about-hero-showcase-panel{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.about-hero-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center top;
}

.about-hero-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.about-hero-meta div{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.about-hero-meta strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:.9rem;
  line-height:1.2;
}

.about-hero-meta span{
  display:block;
  color:#475569;
  font-size:.83rem;
  line-height:1.52;
}

.about-hero-showcase-note{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 17px;
  color:#ffffff;
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .about-hero-elite{
    grid-template-columns:1fr;
    gap:24px;
  }

  .about-hero-proof,
  .about-hero-meta{
    grid-template-columns:1fr;
  }

  .about-hero-showcase{
    max-width:700px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .about-hero-showcase,
  .about-hero-showcase-panel,
  .about-hero-showcase-note,
  .about-hero-proof-chip{
    border-radius:18px;
  }
}


/* ABOUT FINAL CLOSE PASS 02 */
.about-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.about-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.about-final-copy,
.about-final-points{
  position:relative;
  z-index:1;
}

.about-final-copy .section-kicker{
  color:#fdba74;
}

.about-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.about-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.about-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.about-final-points{
  display:grid;
  gap:14px;
}

.about-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.about-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.about-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .about-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .about-final-copy h2,
  .about-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .about-final-close{
    padding:20px;
    border-radius:22px;
  }

  .about-final-actions .btn,
  .about-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* WORDPRESS DESIGN HERO PASS 01 */
.wd-hero-elite{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:38px;
  align-items:center;
}

.wd-hero-copy{
  max-width:700px;
}

.wd-hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.wd-hero-proof-chip{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 15px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}

.wd-hero-proof-chip strong{
  display:block;
  margin-bottom:7px;
  color:#ffffff;
  font-size:.98rem;
  line-height:1.25;
}

.wd-hero-proof-chip span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.66;
  font-size:.92rem;
}

.wd-hero-showcase{
  padding:16px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(37,99,235,.18), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 58px rgba(0,0,0,.24);
}

.wd-hero-showcase-panel{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.wd-hero-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center top;
}

.wd-hero-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.wd-hero-meta div{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.wd-hero-meta strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:.9rem;
  line-height:1.2;
}

.wd-hero-meta span{
  display:block;
  color:#475569;
  font-size:.83rem;
  line-height:1.52;
}

.wd-hero-showcase-note{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 17px;
  color:#ffffff;
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .wd-hero-elite{
    grid-template-columns:1fr;
    gap:24px;
  }

  .wd-hero-proof,
  .wd-hero-meta{
    grid-template-columns:1fr;
  }

  .wd-hero-showcase{
    max-width:700px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .wd-hero-showcase,
  .wd-hero-showcase-panel,
  .wd-hero-showcase-note,
  .wd-hero-proof-chip{
    border-radius:18px;
  }
}


/* WORDPRESS DESIGN FINAL CLOSE PASS 02 */
.wd-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.wd-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.wd-final-copy,
.wd-final-points{
  position:relative;
  z-index:1;
}

.wd-final-copy .section-kicker{
  color:#fdba74;
}

.wd-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.wd-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.wd-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.wd-final-points{
  display:grid;
  gap:14px;
}

.wd-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.wd-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.wd-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .wd-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .wd-final-copy h2,
  .wd-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .wd-final-close{
    padding:20px;
    border-radius:22px;
  }

  .wd-final-actions .btn,
  .wd-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* WEBSITE REDESIGN FINAL CLOSE PASS 02 */
.wr-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.wr-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.wr-final-copy,
.wr-final-points{
  position:relative;
  z-index:1;
}

.wr-final-copy .section-kicker{
  color:#fdba74;
}

.wr-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.wr-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.wr-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.wr-final-points{
  display:grid;
  gap:14px;
}

.wr-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.wr-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.wr-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .wr-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .wr-final-copy h2,
  .wr-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .wr-final-close{
    padding:20px;
    border-radius:22px;
  }

  .wr-final-actions .btn,
  .wr-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* LANDING PAGE HERO PASS 01 */
.lpd-hero-elite{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:38px;
  align-items:center;
}

.lpd-hero-copy{
  max-width:700px;
}

.lpd-hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.lpd-hero-proof-chip{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 15px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}

.lpd-hero-proof-chip strong{
  display:block;
  margin-bottom:7px;
  color:#ffffff;
  font-size:.98rem;
  line-height:1.25;
}

.lpd-hero-proof-chip span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.66;
  font-size:.92rem;
}

.lpd-hero-showcase{
  padding:16px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(37,99,235,.18), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 58px rgba(0,0,0,.24);
}

.lpd-hero-showcase-panel{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.lpd-hero-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center top;
}

.lpd-hero-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.lpd-hero-meta div{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.lpd-hero-meta strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:.9rem;
  line-height:1.2;
}

.lpd-hero-meta span{
  display:block;
  color:#475569;
  font-size:.83rem;
  line-height:1.52;
}

.lpd-hero-showcase-note{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 17px;
  color:#ffffff;
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .lpd-hero-elite{
    grid-template-columns:1fr;
    gap:24px;
  }

  .lpd-hero-proof,
  .lpd-hero-meta{
    grid-template-columns:1fr;
  }

  .lpd-hero-showcase{
    max-width:700px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .lpd-hero-showcase,
  .lpd-hero-showcase-panel,
  .lpd-hero-showcase-note,
  .lpd-hero-proof-chip{
    border-radius:18px;
  }
}


/* LANDING PAGE FINAL CLOSE PASS 02 */
.lpd-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.lpd-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.lpd-final-copy,
.lpd-final-points{
  position:relative;
  z-index:1;
}

.lpd-final-copy .section-kicker{
  color:#fdba74;
}

.lpd-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.lpd-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.lpd-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.lpd-final-points{
  display:grid;
  gap:14px;
}

.lpd-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.lpd-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.lpd-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .lpd-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .lpd-final-copy h2,
  .lpd-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .lpd-final-close{
    padding:20px;
    border-radius:22px;
  }

  .lpd-final-actions .btn,
  .lpd-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* LOCAL SEO HERO PASS 01 */
.lseo-hero-elite{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:38px;
  align-items:center;
}

.lseo-hero-copy{
  max-width:700px;
}

.lseo-hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.lseo-hero-proof-chip{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 15px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}

.lseo-hero-proof-chip strong{
  display:block;
  margin-bottom:7px;
  color:#ffffff;
  font-size:.98rem;
  line-height:1.25;
}

.lseo-hero-proof-chip span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.66;
  font-size:.92rem;
}

.lseo-hero-showcase{
  padding:16px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(37,99,235,.18), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 58px rgba(0,0,0,.24);
}

.lseo-hero-showcase-panel{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.lseo-hero-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center top;
}

.lseo-hero-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.lseo-hero-meta div{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.lseo-hero-meta strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:.9rem;
  line-height:1.2;
}

.lseo-hero-meta span{
  display:block;
  color:#475569;
  font-size:.83rem;
  line-height:1.52;
}

.lseo-hero-showcase-note{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 17px;
  color:#ffffff;
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .lseo-hero-elite{
    grid-template-columns:1fr;
    gap:24px;
  }

  .lseo-hero-proof,
  .lseo-hero-meta{
    grid-template-columns:1fr;
  }

  .lseo-hero-showcase{
    max-width:700px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .lseo-hero-showcase,
  .lseo-hero-showcase-panel,
  .lseo-hero-showcase-note,
  .lseo-hero-proof-chip{
    border-radius:18px;
  }
}


/* LOCAL SEO FINAL CLOSE PASS 02 */
.lseo-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.lseo-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.lseo-final-copy,
.lseo-final-points{
  position:relative;
  z-index:1;
}

.lseo-final-copy .section-kicker{
  color:#fdba74;
}

.lseo-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.lseo-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.lseo-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.lseo-final-points{
  display:grid;
  gap:14px;
}

.lseo-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.lseo-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.lseo-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .lseo-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .lseo-final-copy h2,
  .lseo-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .lseo-final-close{
    padding:20px;
    border-radius:22px;
  }

  .lseo-final-actions .btn,
  .lseo-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* ECOMMERCE HERO PASS 01 */
.eco-hero-elite{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:38px;
  align-items:center;
}

.eco-hero-copy{
  max-width:700px;
}

.eco-hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.eco-hero-proof-chip{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 15px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}

.eco-hero-proof-chip strong{
  display:block;
  margin-bottom:7px;
  color:#ffffff;
  font-size:.98rem;
  line-height:1.25;
}

.eco-hero-proof-chip span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.66;
  font-size:.92rem;
}

.eco-hero-showcase{
  padding:16px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(37,99,235,.18), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 58px rgba(0,0,0,.24);
}

.eco-hero-showcase-panel{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.eco-hero-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center top;
}

.eco-hero-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.eco-hero-meta div{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.eco-hero-meta strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:.9rem;
  line-height:1.2;
}

.eco-hero-meta span{
  display:block;
  color:#475569;
  font-size:.83rem;
  line-height:1.52;
}

.eco-hero-showcase-note{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 17px;
  color:#ffffff;
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .eco-hero-elite{
    grid-template-columns:1fr;
    gap:24px;
  }

  .eco-hero-proof,
  .eco-hero-meta{
    grid-template-columns:1fr;
  }

  .eco-hero-showcase{
    max-width:700px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .eco-hero-showcase,
  .eco-hero-showcase-panel,
  .eco-hero-showcase-note,
  .eco-hero-proof-chip{
    border-radius:18px;
  }
}


/* ECOMMERCE FINAL CLOSE PASS 02 */
.eco-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.eco-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.eco-final-copy,
.eco-final-points{
  position:relative;
  z-index:1;
}

.eco-final-copy .section-kicker{
  color:#fdba74;
}

.eco-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.eco-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.eco-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.eco-final-points{
  display:grid;
  gap:14px;
}

.eco-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.eco-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.eco-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .eco-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .eco-final-copy h2,
  .eco-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .eco-final-close{
    padding:20px;
    border-radius:22px;
  }

  .eco-final-actions .btn,
  .eco-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* WORDPRESS CARE PLAN HERO PASS 01 */
.wcp-hero-elite{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:38px;
  align-items:center;
}

.wcp-hero-copy{
  max-width:700px;
}

.wcp-hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

.wcp-hero-proof-chip{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 15px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
}

.wcp-hero-proof-chip strong{
  display:block;
  margin-bottom:7px;
  color:#ffffff;
  font-size:.98rem;
  line-height:1.25;
}

.wcp-hero-proof-chip span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.66;
  font-size:.92rem;
}

.wcp-hero-showcase{
  padding:16px;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    linear-gradient(135deg, rgba(37,99,235,.18), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 28px 58px rgba(0,0,0,.24);
}

.wcp-hero-showcase-panel{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.wcp-hero-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center top;
}

.wcp-hero-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.wcp-hero-meta div{
  background:#ffffff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:14px 12px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.wcp-hero-meta strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:.9rem;
  line-height:1.2;
}

.wcp-hero-meta span{
  display:block;
  color:#475569;
  font-size:.83rem;
  line-height:1.52;
}

.wcp-hero-showcase-note{
  margin-top:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px 17px;
  color:#ffffff;
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .wcp-hero-elite{
    grid-template-columns:1fr;
    gap:24px;
  }

  .wcp-hero-proof,
  .wcp-hero-meta{
    grid-template-columns:1fr;
  }

  .wcp-hero-showcase{
    max-width:700px;
    margin:0 auto;
  }
}

@media (max-width: 640px){
  .wcp-hero-showcase,
  .wcp-hero-showcase-panel,
  .wcp-hero-showcase-note,
  .wcp-hero-proof-chip{
    border-radius:18px;
  }
}


/* WORDPRESS CARE PLAN FINAL CLOSE PASS 02 */
.wcp-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.wcp-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.wcp-final-copy,
.wcp-final-points{
  position:relative;
  z-index:1;
}

.wcp-final-copy .section-kicker{
  color:#fdba74;
}

.wcp-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.wcp-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.wcp-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.wcp-final-points{
  display:grid;
  gap:14px;
}

.wcp-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.wcp-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.wcp-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .wcp-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .wcp-final-copy h2,
  .wcp-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .wcp-final-close{
    padding:20px;
    border-radius:22px;
  }

  .wcp-final-actions .btn,
  .wcp-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* WORDPRESS QUICK FIX FINAL CLOSE PASS 02 */
.wqf-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.wqf-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.wqf-final-copy,
.wqf-final-points{
  position:relative;
  z-index:1;
}

.wqf-final-copy .section-kicker{
  color:#fdba74;
}

.wqf-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.wqf-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.wqf-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.wqf-final-points{
  display:grid;
  gap:14px;
}

.wqf-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.wqf-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.wqf-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .wqf-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .wqf-final-copy h2,
  .wqf-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .wqf-final-close{
    padding:20px;
    border-radius:22px;
  }

  .wqf-final-actions .btn,
  .wqf-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* SERVICES FINAL CLOSE PASS 01 */
.services-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.services-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.services-final-copy,
.services-final-points{
  position:relative;
  z-index:1;
}

.services-final-copy .section-kicker{
  color:#fdba74;
}

.services-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.services-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.services-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.services-final-points{
  display:grid;
  gap:14px;
}

.services-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.services-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.services-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .services-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .services-final-copy h2,
  .services-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .services-final-close{
    padding:20px;
    border-radius:22px;
  }

  .services-final-actions .btn,
  .services-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* PRIVACY FINAL CLOSE PASS 01 */
.privacy-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    linear-gradient(135deg,#061327 0%,#0b1f3b 58%,#102b52 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 60px rgba(15,23,42,.20);
  position:relative;
  overflow:hidden;
}

.privacy-final-close::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.08), rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.privacy-final-copy,
.privacy-final-points{
  position:relative;
  z-index:1;
}

.privacy-final-copy .section-kicker{
  color:#fdba74;
}

.privacy-final-copy h2{
  margin:10px 0 14px;
  color:#ffffff;
  font-size:clamp(2rem,3.3vw,3rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

.privacy-final-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.82;
  max-width:62ch;
}

.privacy-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.privacy-final-points{
  display:grid;
  gap:14px;
}

.privacy-final-points div{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}

.privacy-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:1rem;
  line-height:1.3;
}

.privacy-final-points span{
  display:block;
  color:rgba(255,255,255,.80);
  line-height:1.7;
  font-size:.95rem;
}

@media (max-width: 991px){
  .privacy-final-close{
    grid-template-columns:1fr;
    gap:22px;
  }

  .privacy-final-copy h2,
  .privacy-final-copy p{
    max-width:none;
  }
}

@media (max-width: 640px){
  .privacy-final-close{
    padding:20px;
    border-radius:22px;
  }

  .privacy-final-actions .btn,
  .privacy-final-actions .btn-outline-light{
    width:100%;
    justify-content:center;
  }
}


/* PRIVACY HERO IMAGE FIX */
.privacy-hero-elite{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
  gap:32px;
  align-items:center;
}

.privacy-hero-image{
  display:block;
  width:100%;
  height:auto;
  border-radius:18px;
  object-fit:cover;
}

@media (max-width: 991px){
  .privacy-hero-elite{
    grid-template-columns:1fr;
  }
}


/* PORTFOLIO HERO IMAGE FILL FIX */
.portfolio-page .page-hero-card{
  overflow:hidden;
}

.portfolio-page .portfolio-hero-image{
  display:block;
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
  object-position:center top;
}

@media (max-width: 991px){
  .portfolio-page .portfolio-hero-image{
    min-height:260px;
  }
}

/* HOMEPAGE PRE-FOOTER CONTRAST FIX */
.prefooter-band{
  padding: 78px 0;
  background: linear-gradient(180deg, #fff7ef 0%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: none;
}

.final-close-panel{
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 22px 50px rgba(15,23,42,.10);
  overflow: hidden;
  position: relative;
}

.final-close-panel::after{
  content: "";
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.08), rgba(37,99,235,0) 72%);
  pointer-events: none;
}

.final-close-copy,
.final-close-points{
  position: relative;
  z-index: 1;
}

.final-close-copy .section-kicker{
  color: #ea580c;
}

.final-close-copy h2{
  margin: 10px 0 14px;
  color: #0f172a;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  max-width: 14ch;
}

.final-close-copy p{
  margin: 0;
  color: #475569;
  line-height: 1.82;
  max-width: 62ch;
}

.final-close-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.final-close-actions .btn-outline-light{
  background: transparent;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  box-shadow: none;
}

.final-close-actions .btn-outline-light:hover{
  background: #f8fafc;
  border-color: #94a3b8;
}

.final-close-points{
  display: grid;
  gap: 14px;
}

.final-close-points div{
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 18px;
  padding: 18px;
  box-shadow: none;
  backdrop-filter: none;
}

.final-close-points strong{
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.3;
}

.final-close-points span{
  display: block;
  color: #475569;
  line-height: 1.7;
  font-size: .95rem;
}

.site-footer{
  background: #020617;
  color: #fff;
}

@media (max-width: 991px){
  .final-close-panel{
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .final-close-copy h2,
  .final-close-copy p{
    max-width: none;
  }
}

@media (max-width: 640px){
  .prefooter-band{
    padding: 62px 0;
  }

  .final-close-panel{
    border-radius: 22px;
    padding: 20px;
  }

  .final-close-actions .btn,
  .final-close-actions .btn-outline-light{
    width: 100%;
    justify-content: center;
  }
}

/* GLOBAL PRE-FOOTER CONTRAST FIX — ALL CORE PAGES */
.prefooter-band{
  padding:78px 0;
  background:linear-gradient(180deg,#fff7ef 0%,#f8fafc 100%);
  border-top:1px solid #e2e8f0;
  border-bottom:none;
}

/* main closing boxes */
.final-close-panel,
.about-final-close,
.contact-final-close,
.pricing-final-close,
.portfolio-final-close,
.services-final-close,
.privacy-final-close{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:30px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:#ffffff;
  border:1px solid #e2e8f0;
  box-shadow:0 22px 50px rgba(15,23,42,.10);
  overflow:hidden;
  position:relative;
}

.final-close-panel::after,
.about-final-close::after,
.contact-final-close::after,
.pricing-final-close::after,
.portfolio-final-close::after,
.services-final-close::after,
.privacy-final-close::after{
  content:"";
  position:absolute;
  right:-110px;
  bottom:-110px;
  width:260px;
  height:260px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(37,99,235,.08), rgba(37,99,235,0) 72%);
  pointer-events:none;
}

/* keep content above decorative glow */
.final-close-copy,
.final-close-points,
.about-final-copy,
.about-final-points,
.contact-final-copy,
.contact-final-points,
.pricing-final-copy,
.pricing-final-points,
.portfolio-final-copy,
.portfolio-final-points,
.services-final-copy,
.services-final-points,
.privacy-final-copy,
.privacy-final-points{
  position:relative;
  z-index:1;
}

/* kicker */
.final-close-copy .section-kicker,
.about-final-copy .section-kicker,
.contact-final-copy .section-kicker,
.pricing-final-copy .section-kicker,
.portfolio-final-copy .section-kicker,
.services-final-copy .section-kicker,
.privacy-final-copy .section-kicker{
  color:#ea580c;
}

/* headings */
.final-close-copy h2,
.about-final-copy h2,
.contact-final-copy h2,
.pricing-final-copy h2,
.portfolio-final-copy h2,
.services-final-copy h2,
.privacy-final-copy h2{
  margin:10px 0 14px;
  color:#0f172a;
  font-size:clamp(2rem,3.4vw,3.2rem);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:14ch;
}

/* body text */
.final-close-copy p,
.about-final-copy p,
.contact-final-copy p,
.pricing-final-copy p,
.portfolio-final-copy p,
.services-final-copy p,
.privacy-final-copy p{
  margin:0;
  color:#475569;
  line-height:1.82;
  max-width:62ch;
}

/* actions row */
.final-close-actions,
.about-final-actions,
.contact-final-actions,
.pricing-final-actions,
.portfolio-final-actions,
.services-final-actions,
.privacy-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

/* outline buttons inside closing boxes */
.final-close-actions .btn-outline-light,
.about-final-actions .btn-outline-light,
.contact-final-actions .btn-outline-light,
.pricing-final-actions .btn-outline-light,
.portfolio-final-actions .btn-outline-light,
.services-final-actions .btn-outline-light,
.privacy-final-actions .btn-outline-light{
  background:transparent;
  color:#0f172a;
  border:1px solid #cbd5e1;
  box-shadow:none;
}

.final-close-actions .btn-outline-light:hover,
.about-final-actions .btn-outline-light:hover,
.contact-final-actions .btn-outline-light:hover,
.pricing-final-actions .btn-outline-light:hover,
.portfolio-final-actions .btn-outline-light:hover,
.services-final-actions .btn-outline-light:hover,
.privacy-final-actions .btn-outline-light:hover{
  background:#f8fafc;
  border-color:#94a3b8;
}

/* point columns */
.final-close-points,
.about-final-points,
.contact-final-points,
.pricing-final-points,
.portfolio-final-points,
.services-final-points,
.privacy-final-points{
  display:grid;
  gap:14px;
}

/* point cards */
.final-close-points div,
.about-final-points div,
.contact-final-points div,
.pricing-final-points div,
.portfolio-final-points div,
.services-final-points div,
.privacy-final-points div{
  background:#fff7ed;
  border:1px solid #fed7aa;
  border-radius:18px;
  padding:18px;
  box-shadow:none;
  backdrop-filter:none;
}

.final-close-points strong,
.about-final-points strong,
.contact-final-points strong,
.pricing-final-points strong,
.portfolio-final-points strong,
.services-final-points strong,
.privacy-final-points strong{
  display:block;
  margin-bottom:6px;
  color:#0f172a;
  font-size:1rem;
  line-height:1.3;
}

.final-close-points span,
.about-final-points span,
.contact-final-points span,
.pricing-final-points span,
.portfolio-final-points span,
.services-final-points span,
.privacy-final-points span{
  display:block;
  color:#475569;
  line-height:1.7;
  font-size:.95rem;
}

/* keep footer darker so it pops */
.site-footer{
  background:#020617;
  color:#fff;
}

@media (max-width:991px){
  .final-close-panel,
  .about-final-close,
  .contact-final-close,
  .pricing-final-close,
  .portfolio-final-close,
  .services-final-close,
  .privacy-final-close{
    grid-template-columns:1fr;
    gap:22px;
    padding:24px;
  }

  .final-close-copy h2,
  .about-final-copy h2,
  .contact-final-copy h2,
  .pricing-final-copy h2,
  .portfolio-final-copy h2,
  .services-final-copy h2,
  .privacy-final-copy h2,
  .final-close-copy p,
  .about-final-copy p,
  .contact-final-copy p,
  .pricing-final-copy p,
  .portfolio-final-copy p,
  .services-final-copy p,
  .privacy-final-copy p{
    max-width:none;
  }
}

@media (max-width:640px){
  .prefooter-band{
    padding:62px 0;
  }

  .final-close-panel,
  .about-final-close,
  .contact-final-close,
  .pricing-final-close,
  .portfolio-final-close,
  .services-final-close,
  .privacy-final-close{
    border-radius:22px;
    padding:20px;
  }

  .final-close-actions .btn,
  .about-final-actions .btn,
  .contact-final-actions .btn,
  .pricing-final-actions .btn,
  .portfolio-final-actions .btn,
  .services-final-actions .btn,
  .privacy-final-actions .btn{
    width:100%;
    justify-content:center;
  }
}

/* HOMEPAGE RESULTS PREVIEW — SHOW TOP OF SCREENSHOTS */
.results-preview-grid .results-preview-card:nth-child(1) .results-preview-image,
.results-preview-grid .results-preview-card:nth-child(2) .results-preview-image{
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
}

/* keep the first two image frames clean */
.results-preview-grid .results-preview-card:nth-child(1) .results-preview-image-link,
.results-preview-grid .results-preview-card:nth-child(2) .results-preview-image-link{
  background:#f8fafc;
}


/* === WPPLACE SERVICE PREFOOTER CONTRAST OVERRIDE START === */
/* Keeps the footer dark, but makes the service-page CTA section above it contrast clearly. */

.site-footer .prefooter-band{
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%) !important;
  border-top: 1px solid #dbeafe !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.10) !important;
}

.sb-final-close,
.ai-final-close,
.growth-final-close,
.wd-final-close,
.wr-final-close,
.lpd-final-close,
.lseo-final-close,
.eco-final-close,
.wcp-final-close,
.wqf-final-close{
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #dbeafe !important;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14) !important;
}

.sb-final-close::after,
.ai-final-close::after,
.growth-final-close::after,
.wd-final-close::after,
.wr-final-close::after,
.lpd-final-close::after,
.lseo-final-close::after,
.eco-final-close::after,
.wcp-final-close::after,
.wqf-final-close::after{
  display: none !important;
}

.sb-final-close h2,
.ai-final-close h2,
.growth-final-close h2,
.wd-final-close h2,
.wr-final-close h2,
.lpd-final-close h2,
.lseo-final-close h2,
.eco-final-close h2,
.wcp-final-close h2,
.wqf-final-close h2{
  color: #0f172a !important;
}

.sb-final-close p,
.ai-final-close p,
.growth-final-close p,
.wd-final-close p,
.wr-final-close p,
.lpd-final-close p,
.lseo-final-close p,
.eco-final-close p,
.wcp-final-close p,
.wqf-final-close p{
  color: #334155 !important;
}

.sb-final-close .section-kicker,
.ai-final-close .section-kicker,
.growth-final-close .section-kicker,
.wd-final-close .section-kicker,
.wr-final-close .section-kicker,
.lpd-final-close .section-kicker,
.lseo-final-close .section-kicker,
.eco-final-close .section-kicker,
.wcp-final-close .section-kicker,
.wqf-final-close .section-kicker{
  color: #f97316 !important;
}

.sb-final-points > *,
.ai-final-points > *,
.growth-final-points > *,
.wd-final-points > *,
.wr-final-points > *,
.lpd-final-points > *,
.lseo-final-points > *,
.eco-final-points > *,
.wcp-final-points > *,
.wqf-final-points > *{
  background: #f8fafc !important;
  border: 1px solid #dbeafe !important;
  color: #0f172a !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08) !important;
}

.sb-final-points strong,
.ai-final-points strong,
.growth-final-points strong,
.wd-final-points strong,
.wr-final-points strong,
.lpd-final-points strong,
.lseo-final-points strong,
.eco-final-points strong,
.wcp-final-points strong,
.wqf-final-points strong{
  color: #0f172a !important;
}

.sb-final-points span,
.ai-final-points span,
.growth-final-points span,
.wd-final-points span,
.wr-final-points span,
.lpd-final-points span,
.lseo-final-points span,
.eco-final-points span,
.wcp-final-points span,
.wqf-final-points span{
  color: #475569 !important;
}

.sb-final-close .btn-outline-light,
.ai-final-close .btn-outline-light,
.growth-final-close .btn-outline-light,
.wd-final-close .btn-outline-light,
.wr-final-close .btn-outline-light,
.lpd-final-close .btn-outline-light,
.lseo-final-close .btn-outline-light,
.eco-final-close .btn-outline-light,
.wcp-final-close .btn-outline-light,
.wqf-final-close .btn-outline-light{
  background: #eff6ff !important;
  border-color: #bfdbfe !important;
  color: #1d4ed8 !important;
}

.sb-final-close .btn-outline-light:hover,
.ai-final-close .btn-outline-light:hover,
.growth-final-close .btn-outline-light:hover,
.wd-final-close .btn-outline-light:hover,
.wr-final-close .btn-outline-light:hover,
.lpd-final-close .btn-outline-light:hover,
.lseo-final-close .btn-outline-light:hover,
.eco-final-close .btn-outline-light:hover,
.wcp-final-close .btn-outline-light:hover,
.wqf-final-close .btn-outline-light:hover{
  background: #dbeafe !important;
  color: #1e3a8a !important;
}
/* === WPPLACE SERVICE PREFOOTER CONTRAST OVERRIDE END === */


/* === WPPLACE FORCE LIGHT FINAL CTA START === */
/* Forces all service and package page CTA boxes above the footer to match the light services-page style. */

.site-footer > .prefooter-band,
footer.site-footer > section.prefooter-band{
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.10), transparent 30%),
    linear-gradient(180deg, #fff7ed 0%, #f8fafc 58%, #eef4ff 100%) !important;
  border-top: 1px solid rgba(15, 23, 42, 0.18) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12) !important;
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.site-footer > .prefooter-band [class$="-final-close"],
footer.site-footer > section.prefooter-band [class$="-final-close"],
.site-footer > .prefooter-band [class*="-final-close"],
footer.site-footer > section.prefooter-band [class*="-final-close"]{
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 18px !important;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12) !important;
  overflow: hidden !important;
}

.site-footer > .prefooter-band [class$="-final-close"]::before,
.site-footer > .prefooter-band [class$="-final-close"]::after,
.site-footer > .prefooter-band [class*="-final-close"]::before,
.site-footer > .prefooter-band [class*="-final-close"]::after{
  display: none !important;
  content: none !important;
}

.site-footer > .prefooter-band [class$="-final-close"] h2,
.site-footer > .prefooter-band [class*="-final-close"] h2{
  color: #0f172a !important;
  text-shadow: none !important;
}

.site-footer > .prefooter-band [class$="-final-close"] p,
.site-footer > .prefooter-band [class*="-final-close"] p{
  color: #334155 !important;
  text-shadow: none !important;
}

.site-footer > .prefooter-band [class$="-final-close"] .section-kicker,
.site-footer > .prefooter-band [class*="-final-close"] .section-kicker{
  color: #f97316 !important;
}

.site-footer > .prefooter-band [class$="-final-close"] .section-kicker::after,
.site-footer > .prefooter-band [class*="-final-close"] .section-kicker::after{
  background: #f97316 !important;
}

.site-footer > .prefooter-band [class$="-final-points"] > *,
.site-footer > .prefooter-band [class*="-final-points"] > *{
  background: #f8fafc !important;
  color: #0f172a !important;
  border: 1px solid #dbeafe !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
}

.site-footer > .prefooter-band [class$="-final-points"] strong,
.site-footer > .prefooter-band [class*="-final-points"] strong{
  color: #0f172a !important;
}

.site-footer > .prefooter-band [class$="-final-points"] span,
.site-footer > .prefooter-band [class*="-final-points"] span{
  color: #475569 !important;
}

.site-footer > .prefooter-band .btn-outline-light{
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08) !important;
}

.site-footer > .prefooter-band .btn-outline-light:hover{
  background: #eff6ff !important;
  border-color: #93c5fd !important;
  color: #1d4ed8 !important;
}

.site-footer > .prefooter-band .btn-primary{
  background: #2563eb !important;
  border-color: #2563eb !important;
  color: #ffffff !important;
}
/* === WPPLACE FORCE LIGHT FINAL CTA END === */


/* === WPPLACE HOMEPAGE HERO 10 PASS START === */
/* Premium homepage hero refinement: more breathing room, cleaner hierarchy, stronger visual balance. */

.home-page .hero{
  background:
    radial-gradient(circle at 82% 16%, rgba(37, 99, 235, 0.22), transparent 28%),
    radial-gradient(circle at 12% 22%, rgba(249, 115, 22, 0.12), transparent 24%),
    linear-gradient(135deg, #020617 0%, #071b35 48%, #082449 100%) !important;
  border-bottom: 1px solid rgba(219, 234, 254, 0.10) !important;
}

.home-page .hero-grid-elite{
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr) !important;
  gap: clamp(34px, 5vw, 74px) !important;
  align-items: center !important;
  padding: clamp(72px, 8vw, 112px) 0 clamp(76px, 8vw, 116px) !important;
}

.home-page .hero-copy-wrap{
  max-width: 760px !important;
}

.home-page .hero .eyebrow{
  color: #f97316 !important;
  letter-spacing: 0.14em !important;
  font-weight: 900 !important;
}

.home-page .hero h1{
  max-width: 780px !important;
  font-size: clamp(44px, 6vw, 82px) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.065em !important;
  margin-top: 14px !important;
  margin-bottom: 24px !important;
}

.home-page .hero h1 .accent{
  color: #fb923c !important;
}

.home-page .hero p.lead{
  max-width: 700px !important;
  font-size: clamp(17px, 1.35vw, 20px) !important;
  line-height: 1.72 !important;
  color: #dbeafe !important;
  margin-bottom: 28px !important;
}

.home-page .hero-actions{
  gap: 14px !important;
  margin-top: 8px !important;
}

.home-page .hero-actions .btn{
  min-height: 46px !important;
  padding-inline: 22px !important;
}

.home-page .hero-proof-row{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 30px !important;
}

.home-page .hero-proof-chip{
  min-height: 0 !important;
  padding: 16px 15px !important;
  border-radius: 16px !important;
  background: rgba(15, 23, 42, 0.58) !important;
  border: 1px solid rgba(191, 219, 254, 0.22) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18) !important;
}

.home-page .hero-proof-chip strong{
  color: #ffffff !important;
  font-size: 0.92rem !important;
  line-height: 1.15 !important;
  margin-bottom: 6px !important;
}

.home-page .hero-proof-chip span{
  color: #bfdbfe !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
}

.home-page .hero-showcase{
  width: 100% !important;
  max-width: 485px !important;
  justify-self: end !important;
  padding: 16px !important;
  border-radius: 26px !important;
  background: rgba(15, 23, 42, 0.58) !important;
  border: 1px solid rgba(191, 219, 254, 0.28) !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.30) !important;
}

.home-page .hero-showcase-panel{
  border-radius: 20px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid rgba(219, 234, 254, 0.30) !important;
}

.home-page .hero-showcase .hero-visual-image{
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  object-fit: cover !important;
}

.home-page .hero-showcase-meta{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 9px !important;
  margin-top: 12px !important;
}

.home-page .hero-showcase-meta div{
  padding: 12px 10px !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  border: 1px solid rgba(219, 234, 254, 0.92) !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10) !important;
}

.home-page .hero-showcase-meta strong{
  color: #0f172a !important;
  font-size: 0.74rem !important;
  line-height: 1.2 !important;
}

.home-page .hero-showcase-meta span{
  color: #64748b !important;
  font-size: 0.66rem !important;
  line-height: 1.35 !important;
}

.home-page .hero-showcase-note{
  margin-top: 13px !important;
  padding: 16px 17px !important;
  border-radius: 16px !important;
  background: rgba(2, 6, 23, 0.62) !important;
  border: 1px solid rgba(191, 219, 254, 0.22) !important;
}

.home-page .hero-showcase-note strong{
  color: #ffffff !important;
  font-size: 0.9rem !important;
  line-height: 1.35 !important;
}

.home-page .hero-showcase-note p{
  color: #bfdbfe !important;
  font-size: 0.78rem !important;
  line-height: 1.55 !important;
  margin-top: 7px !important;
}

@media (max-width: 980px){
  .home-page .hero-grid-elite{
    grid-template-columns: 1fr !important;
    padding: 64px 0 72px !important;
  }

  .home-page .hero h1{
    font-size: clamp(42px, 10vw, 64px) !important;
    line-height: 0.93 !important;
  }

  .home-page .hero-showcase{
    justify-self: stretch !important;
    max-width: none !important;
  }
}

@media (max-width: 640px){
  .home-page .hero-grid-elite{
    padding: 52px 0 60px !important;
    gap: 30px !important;
  }

  .home-page .hero h1{
    font-size: clamp(38px, 12vw, 52px) !important;
    letter-spacing: -0.055em !important;
  }

  .home-page .hero p.lead{
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .home-page .hero-proof-row,
  .home-page .hero-showcase-meta{
    grid-template-columns: 1fr !important;
  }

  .home-page .hero-proof-chip,
  .home-page .hero-showcase-meta div{
    padding: 14px !important;
  }
}
/* === WPPLACE HOMEPAGE HERO 10 PASS END === */


/* === WPPLACE HOMEPAGE HERO TYPOGRAPHY POLISH START === */
/* Tightens the homepage hero so it feels more premium and less vertically heavy. */

.home-page .hero h1{
  max-width: 720px !important;
  font-size: clamp(42px, 5.4vw, 72px) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.058em !important;
}

.home-page .hero p.lead{
  max-width: 660px !important;
}

@media (max-width: 980px){
  .home-page .hero h1{
    max-width: 680px !important;
    font-size: clamp(40px, 8.5vw, 58px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.052em !important;
  }
}

@media (max-width: 640px){
  .home-page .hero{
    padding-top: 0 !important;
  }

  .home-page .hero-grid-elite{
    padding: 44px 0 56px !important;
  }

  .home-page .hero h1{
    font-size: clamp(34px, 10.5vw, 44px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
    margin-bottom: 18px !important;
  }

  .home-page .hero p.lead{
    font-size: 15.5px !important;
    line-height: 1.62 !important;
    margin-bottom: 22px !important;
  }

  .home-page .hero-actions{
    gap: 10px !important;
  }

  .home-page .hero-actions .btn{
    width: 100% !important;
    justify-content: center !important;
  }

  .home-page .hero-proof-row{
    margin-top: 22px !important;
  }
}
/* === WPPLACE HOMEPAGE HERO TYPOGRAPHY POLISH END === */


/* === WPPLACE HOMEPAGE RESULTS 10 PASS START === */
/* Premium proof/results section refinement for homepage conversion and trust. */

.home-page .results-preview-band{
  position: relative !important;
  background:
    radial-gradient(circle at 16% 12%, rgba(37, 99, 235, 0.08), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(249, 115, 22, 0.08), transparent 26%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #eef4ff 100%) !important;
  border-top: 1px solid #dbeafe !important;
  border-bottom: 1px solid #cbd5e1 !important;
  overflow: hidden !important;
}

.home-page .results-preview-head{
  max-width: 980px !important;
  margin: 0 auto 34px !important;
  text-align: center !important;
}

.home-page .results-preview-copy{
  max-width: 900px !important;
  margin: 0 auto !important;
}

.home-page .results-preview-copy h2{
  max-width: 820px !important;
  margin: 10px auto 14px !important;
  font-size: clamp(34px, 4vw, 54px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.052em !important;
  color: #020617 !important;
}

.home-page .results-preview-copy p{
  max-width: 760px !important;
  margin: 0 auto !important;
  font-size: 1rem !important;
  line-height: 1.72 !important;
  color: #475569 !important;
}

.home-page .results-proof-row{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 26px auto 22px !important;
  max-width: 900px !important;
}

.home-page .results-proof-row > div{
  text-align: left !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid #dbeafe !important;
  border-radius: 16px !important;
  padding: 16px 16px 15px !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08) !important;
}

.home-page .results-proof-row strong{
  display: block !important;
  color: #0f172a !important;
  font-size: 0.9rem !important;
  line-height: 1.25 !important;
  margin-bottom: 6px !important;
}

.home-page .results-proof-row span{
  display: block !important;
  color: #64748b !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
}

.home-page .results-preview-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.home-page .results-preview-card{
  position: relative !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid #dbeafe !important;
  border-radius: 22px !important;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12) !important;
  overflow: hidden !important;
  transform: translateY(0) !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease !important;
}

.home-page .results-preview-card:hover{
  transform: translateY(-4px) !important;
  border-color: #bfdbfe !important;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16) !important;
}

.home-page .results-preview-image-link{
  display: block !important;
  padding: 12px 12px 0 !important;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%) !important;
}

.home-page .results-preview-image{
  width: 100% !important;
  aspect-ratio: 16 / 11 !important;
  height: auto !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  border: 1px solid #dbeafe !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12) !important;
}

.home-page .results-preview-body{
  padding: 20px !important;
}

.home-page .results-preview-label{
  color: #2563eb !important;
  letter-spacing: 0.12em !important;
  font-weight: 900 !important;
}

.home-page .results-preview-body h3{
  font-size: 1.2rem !important;
  line-height: 1.15 !important;
  letter-spacing: -0.026em !important;
  color: #0f172a !important;
  margin-top: 8px !important;
}

.home-page .results-preview-body p{
  color: #475569 !important;
  line-height: 1.64 !important;
}

.home-page .results-preview-card-cta{
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.11), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  border-color: #fed7aa !important;
}

.home-page .results-preview-card-cta .results-preview-body{
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 100% !important;
}

.home-page .results-preview-card-cta .results-preview-label{
  color: #f97316 !important;
}

.home-page .results-preview-card-cta h3{
  font-size: clamp(24px, 2vw, 32px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.046em !important;
  max-width: 360px !important;
}

.home-page .results-preview-mini-points{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
  margin: 18px 0 20px !important;
}

.home-page .results-preview-mini-points span{
  display: block !important;
  padding: 9px 10px !important;
  border-radius: 999px !important;
  background: #eff6ff !important;
  border: 1px solid #bfdbfe !important;
  color: #1d4ed8 !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  text-align: center !important;
}

.home-page .results-preview-actions .btn,
.home-page .proof-actions .btn{
  min-height: 40px !important;
}

@media (max-width: 980px){
  .home-page .results-preview-grid,
  .home-page .results-proof-row{
    grid-template-columns: 1fr !important;
  }

  .home-page .results-preview-card-cta .results-preview-body{
    min-height: auto !important;
  }
}

@media (max-width: 640px){
  .home-page .results-preview-copy h2{
    font-size: clamp(30px, 9vw, 40px) !important;
    line-height: 1.02 !important;
  }

  .home-page .results-preview-body{
    padding: 18px !important;
  }

  .home-page .results-preview-mini-points{
    grid-template-columns: 1fr !important;
  }
}
/* === WPPLACE HOMEPAGE RESULTS 10 PASS END === */


/* === WPPLACE HOMEPAGE PACKAGE CARDS 10 PASS START === */
/* Premium homepage package path cards: stronger hierarchy, cleaner buyer choice, better visual polish. */

.home-page .section-light .section-head.center.narrow{
  max-width: 820px !important;
}

.home-page .section-light .section-head.center.narrow h2{
  font-size: clamp(34px, 4vw, 52px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.052em !important;
  color: #020617 !important;
}

.home-page .packages-grid{
  gap: 24px !important;
  align-items: stretch !important;
}

.home-page .packages-grid .route-card{
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
  padding: 18px 18px 20px !important;
  border-radius: 26px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.96) 100%) !important;
  border: 1px solid #dbeafe !important;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12) !important;
  overflow: hidden !important;
}

.home-page .packages-grid .route-card::before{
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  height: 5px !important;
  background: linear-gradient(90deg, #2563eb, #60a5fa) !important;
  opacity: 1 !important;
}

.home-page .packages-grid .route-card.orange::before{
  background: linear-gradient(90deg, #f97316, #fdba74) !important;
}

.home-page .packages-grid .route-card.green::before{
  background: linear-gradient(90deg, #16a34a, #86efac) !important;
}

.home-page .packages-grid .route-card:hover{
  transform: translateY(-5px) !important;
  border-color: #bfdbfe !important;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.17) !important;
}

.home-page .packages-grid .route-media{
  position: relative !important;
  margin: 0 0 18px !important;
  padding: 12px !important;
  border-radius: 22px !important;
  background: radial-gradient(circle at 20% 10%, rgba(37, 99, 235, 0.12), transparent 34%), linear-gradient(180deg, #eff6ff 0%, #ffffff 100%) !important;
  border: 1px solid #dbeafe !important;
}

.home-page .packages-grid .route-card.orange .route-media{
  background: radial-gradient(circle at 20% 10%, rgba(249, 115, 22, 0.14), transparent 34%), linear-gradient(180deg, #fff7ed 0%, #ffffff 100%) !important;
  border-color: #fed7aa !important;
}

.home-page .packages-grid .route-card.green .route-media{
  background: radial-gradient(circle at 20% 10%, rgba(22, 163, 74, 0.12), transparent 34%), linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%) !important;
  border-color: #bbf7d0 !important;
}

.home-page .packages-grid .route-photo{
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  border: 1px solid rgba(148, 163, 184, 0.28) !important;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14) !important;
}

.home-page .packages-grid .route-badge{
  width: fit-content !important;
  padding: 7px 10px !important;
  border-radius: 999px !important;
  background: #eff6ff !important;
  color: #1d4ed8 !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
}

.home-page .packages-grid .route-card.orange .route-badge{
  background: #fff7ed !important;
  color: #c2410c !important;
}

.home-page .packages-grid .route-card.green .route-badge{
  background: #f0fdf4 !important;
  color: #15803d !important;
}

.home-page .package-fit{
  display: block !important;
  margin-top: 12px !important;
  color: #64748b !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.home-page .packages-grid .route-card h3{
  margin-top: 8px !important;
  color: #0f172a !important;
  font-size: clamp(22px, 2vw, 29px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.04em !important;
}

.home-page .packages-grid .route-card p{
  color: #475569 !important;
  line-height: 1.62 !important;
  margin-top: 12px !important;
}

.home-page .packages-grid .package-list{
  margin-top: 16px !important;
  display: grid !important;
  gap: 10px !important;
}

.home-page .packages-grid .package-list li{
  position: relative !important;
  padding: 11px 12px 11px 34px !important;
  border-radius: 14px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #334155 !important;
  font-size: 0.9rem !important;
  line-height: 1.35 !important;
}

.home-page .packages-grid .package-list li::before{
  left: 12px !important;
  top: 11px !important;
  color: #2563eb !important;
}

.home-page .packages-grid .route-card.orange .package-list li::before{
  color: #f97316 !important;
}

.home-page .packages-grid .route-card.green .package-list li::before{
  color: #16a34a !important;
}

.home-page .packages-grid .route-footer{
  margin-top: auto !important;
  padding-top: 18px !important;
}

.home-page .packages-grid .package-btn{
  width: 100% !important;
  min-height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #2563eb !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24) !important;
}

.home-page .packages-grid .route-card.orange .package-btn{
  background: #f97316 !important;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.22) !important;
}

.home-page .packages-grid .route-card.green .package-btn{
  background: #16a34a !important;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.20) !important;
}

.home-page .packages-grid .package-btn:hover{
  filter: brightness(0.96) !important;
  transform: translateY(-1px) !important;
}

@media (max-width: 980px){
  .home-page .packages-grid{
    grid-template-columns: 1fr !important;
  }

  .home-page .packages-grid .route-card{
    max-width: 720px !important;
    margin-inline: auto !important;
  }
}

@media (max-width: 640px){
  .home-page .packages-grid .route-card{
    padding: 14px 14px 18px !important;
    border-radius: 22px !important;
  }

  .home-page .packages-grid .route-media{
    padding: 10px !important;
    border-radius: 18px !important;
  }

  .home-page .packages-grid .route-card h3{
    font-size: 24px !important;
  }
}
/* === WPPLACE HOMEPAGE PACKAGE CARDS 10 PASS END === */

