
:root{
  --navy:#102434;
  --navy-2:#17374a;
  --orange:#c85e2c;
  --orange-2:#f07a36;
  --cream:#f6eddb;
  --sand:#e8d5ae;
  --sage:#87a878;
  --sky:#72c7dc;
  --ink:#0b1822;
  --paper:#fff7ea;
  --white:#fffaf1;
  --line:rgba(16,36,52,.12);
  --shadow:0 20px 48px rgba(16,36,52,.12);
  --shadow-lg:0 24px 60px rgba(16,36,52,.18);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(114,199,220,.15), transparent 28%),
    radial-gradient(circle at 92% 6%, rgba(240,122,54,.13), transparent 22%),
    linear-gradient(180deg, #fffbf2 0%, #fcf2de 50%, #fff8ec 100%);
}
body::before{
  content:"";
  position:fixed; inset:0; pointer-events:none; z-index:-1; opacity:.14;
  background:
    linear-gradient(45deg, rgba(16,36,52,.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(16,36,52,.035) 25%, transparent 25%);
  background-size:34px 34px;
  background-position:0 0,17px 17px;
}
a{color:inherit}
img{max-width:100%;display:block}
.wrap{width:min(1160px,92vw);margin:auto}

.topbar{
  position:sticky; top:0; z-index:99;
  backdrop-filter: blur(14px);
  background: rgba(255,250,241,.78);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; padding:14px 0;
}
.nav-left, .nav-right{display:flex; align-items:center; gap:16px}
.insta-badge{
  display:inline-flex; align-items:center; justify-content:center;
  width:52px; height:52px; border-radius:16px;
  background:linear-gradient(135deg,#fdc468,#df4996,#6a3fd8);
  box-shadow:0 12px 22px rgba(106,63,216,.18);
  transition:.22s ease;
}
.insta-badge:hover{transform:translateY(-2px) rotate(-3deg)}
.insta-badge svg{width:26px;height:26px;fill:none;stroke:#fff;stroke-width:2.2}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand img{
  width:48px; height:48px; border-radius:50%; object-fit:cover;
  box-shadow:0 8px 18px rgba(16,36,52,.14);
}
.brand .wordmark{
  display:flex; flex-direction:column;
}
.brand .wordmark strong{
  font-family:"Bebas Neue", sans-serif;
  letter-spacing:.04em;
  font-size:1.7rem;
  color:var(--navy);
  line-height:1;
}
.brand .wordmark span{
  color:#5d6c77; font-size:.77rem; text-transform:uppercase; letter-spacing:.15em; font-weight:700;
}
.nav-links{display:flex; align-items:center; gap:22px; flex-wrap:wrap}
.nav-links a{
  text-decoration:none; font-weight:800; color:var(--navy); font-size:.95rem;
  position:relative;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-6px; width:100%; height:3px; border-radius:999px;
  transform:scaleX(0); transform-origin:left; transition:.24s ease; background:var(--orange);
}
.nav-links a:hover::after, .nav-links a.active::after{transform:scaleX(1)}
.button{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border:0; text-decoration:none; cursor:pointer;
  padding:14px 22px; border-radius:999px; font-weight:900;
  background:var(--orange); color:white;
  box-shadow:0 14px 28px rgba(200,94,44,.25);
  transition:.22s ease;
}
.button:hover{transform:translateY(-2px); background:var(--orange-2)}
.button.secondary{
  background:transparent; color:var(--navy); border:2px solid var(--navy); box-shadow:none;
}
.button.secondary:hover{background:var(--navy); color:white}

.hero{
  position:relative;
  padding:72px 0 56px;
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns:1.03fr .97fr; gap:44px; align-items:center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.75); border:1px solid rgba(16,36,52,.12);
  border-radius:999px; padding:8px 12px; font-weight:800; color:var(--navy); font-size:.87rem;
}
.eyebrow i{
  width:10px; height:10px; border-radius:50%; background:var(--orange);
  box-shadow:0 0 0 6px rgba(200,94,44,.12);
}
.hero h1{
  margin:16px 0 14px;
  font-family:"Bebas Neue", sans-serif;
  color:var(--navy);
  letter-spacing:.01em;
  font-size:clamp(4.6rem,9vw,8.2rem);
  line-height:.86;
}
.hero h1 .accent{
  color:var(--orange);
  display:inline-block;
  text-shadow:3px 3px 0 #fff;
  animation:wiggle 6s ease-in-out infinite;
}
@keyframes wiggle{0%,100%{transform:rotate(-1deg)}50%{transform:rotate(1.5deg)}}
.lead{
  font-size:1.1rem;
  line-height:1.8;
  color:#455864;
  max-width:620px;
}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-top:26px}
.mini-points{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
  margin-top:26px; max-width:680px;
}
.mini-point{
  padding:14px 16px; border-radius:18px; background:rgba(255,255,255,.75); border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.mini-point strong{
  display:block; font-family:"Bebas Neue", sans-serif; color:var(--navy); font-size:1.3rem; margin-bottom:6px;
}
.mini-point span{color:#5b6c77; font-size:.92rem; line-height:1.45}

.hero-visual{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.42));
  border:1px solid rgba(16,36,52,.08);
  border-radius:34px;
  padding:14px;
  box-shadow:var(--shadow-lg);
  overflow:hidden;
}
.hero-visual::before{
  content:"";
  position:absolute; inset:-20% -10% auto auto; width:180px; height:180px; border-radius:50%;
  background:rgba(255,215,111,.36); filter:blur(4px); animation:float 8s ease-in-out infinite;
}
.hero-visual::after{
  content:"";
  position:absolute; left:-22px; bottom:-22px; width:110px; height:110px; border-radius:50%;
  background:rgba(114,199,220,.32); animation:float 10s ease-in-out infinite reverse;
}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-18px)}}
.hero-scene{
  position:relative; z-index:2;
  border-radius:24px; overflow:hidden; background:var(--cream);
}
.hero-note{
  position:absolute; right:28px; bottom:28px; z-index:3;
  background:#ffe278; color:var(--navy);
  padding:12px 16px; border-radius:14px; transform:rotate(-5deg);
  font-family:"Bebas Neue", sans-serif; font-size:1.5rem; letter-spacing:.04em;
  box-shadow:0 12px 18px rgba(0,0,0,.12);
}

.ticker{
  overflow:hidden; background:var(--orange); color:#fff; border-block:3px solid var(--navy);
}
.ticker-track{
  white-space:nowrap; display:inline-block; padding:12px 0;
  font-family:"Bebas Neue"; font-size:1.32rem; letter-spacing:.08em;
  animation:marquee 18s linear infinite;
}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

.page-hero{
  padding:58px 0 30px;
}
.page-hero h1{
  margin:10px 0 10px; font-family:"Bebas Neue"; color:var(--navy); font-size:clamp(3.7rem,7vw,6rem); line-height:.9;
}
.page-hero p{
  max-width:760px; color:#50626d; line-height:1.8; font-size:1.08rem;
}

section{padding:74px 0}
.section-head{
  display:flex; justify-content:space-between; gap:18px; align-items:end; margin-bottom:28px;
}
.section-head h2{
  margin:0; font-family:"Bebas Neue"; color:var(--navy); font-size:clamp(2.8rem,6vw,4.8rem); line-height:.9;
}
.section-head p{
  max-width:600px; color:#596976; line-height:1.75;
}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:24px}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
.card{
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  border-radius:26px;
  padding:24px;
  box-shadow:var(--shadow);
  transition:.24s ease;
}
.card:hover{transform:translateY(-6px); box-shadow:var(--shadow-lg)}
.card h3{
  margin:8px 0 8px; font-family:"Bebas Neue"; color:var(--navy); font-size:2.2rem; line-height:.95;
}
.kicker{
  text-transform:uppercase; letter-spacing:.13em; font-size:.78rem; font-weight:900; color:var(--orange);
}
.card p, .card li{color:#566874; line-height:1.72}
.card ul{margin:12px 0 0; padding-left:18px}
.price{
  font-size:2rem; font-weight:900; color:var(--orange);
}
.feature{
  display:flex; gap:16px; align-items:flex-start;
}
.feature-bullet{
  min-width:42px; height:42px; display:grid; place-items:center; border-radius:50%;
  background:linear-gradient(135deg, var(--orange), var(--orange-2)); color:white; font-weight:900;
  box-shadow:0 12px 18px rgba(200,94,44,.22);
}

.story-strip{
  background:linear-gradient(135deg, rgba(114,199,220,.92), rgba(135,168,120,.9));
  border-radius:36px; padding:32px; position:relative; overflow:hidden; box-shadow:var(--shadow-lg);
}
.story-strip::before{
  content:"";
  position:absolute; inset:-45%;
  background:conic-gradient(from 0deg, rgba(255,255,255,.18), transparent 12%, rgba(255,255,255,.1) 28%, transparent 42%);
  animation:spin 28s linear infinite;
}
.story-strip > *{position:relative; z-index:1}
@keyframes spin{to{transform:rotate(360deg)}}
.story-strip h2{
  margin:0 0 10px; font-family:"Bebas Neue"; color:var(--navy); font-size:4rem; line-height:.9;
}
.story-strip p{color:#183746; line-height:1.8}
.story-strip .note{
  background:rgba(255,250,241,.8); border:2px dashed rgba(16,36,52,.2); border-radius:18px; padding:16px 18px;
}

.gallery-grid{
  display:grid; grid-template-columns:1.2fr .8fr .8fr; grid-auto-rows:220px; gap:14px;
}
.gallery-item{
  position:relative; overflow:hidden; border-radius:24px; box-shadow:var(--shadow);
}
.gallery-item img{width:100%; height:100%; object-fit:cover; transition:.45s ease}
.gallery-item:hover img{transform:scale(1.06)}
.gallery-item.big{grid-row:span 2}
.gallery-item span{
  position:absolute; left:14px; bottom:14px;
  background:rgba(16,36,52,.78); color:#fff; font-size:.78rem; font-weight:900;
  padding:8px 12px; border-radius:999px;
}

.shop-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.product{
  background:rgba(255,255,255,.86); border:1px solid var(--line); border-radius:28px; overflow:hidden; box-shadow:var(--shadow);
}
.product .product-media{
  height:215px;
}
.product .product-media img{
  width:100%; height:100%; object-fit:cover;
}
.product .body{padding:22px}
.badge{
  display:inline-block; padding:6px 10px; border-radius:999px; font-weight:900; font-size:.75rem; letter-spacing:.08em;
  text-transform:uppercase; background:#fff0c8; color:#7a541c;
}
.split{
  display:grid; grid-template-columns:.85fr 1.15fr; gap:26px;
}
.form-panel, .info-panel{
  background:rgba(255,255,255,.84); border:1px solid var(--line); border-radius:30px; padding:26px; box-shadow:var(--shadow);
}
.info-panel{
  background:var(--navy); color:#fff; position:relative; overflow:hidden;
}
.info-panel::after{
  content:""; position:absolute; right:-50px; bottom:-60px; width:180px; height:180px; border-radius:50%; background:rgba(240,122,54,.95);
}
.info-panel > *{position:relative; z-index:1}
.info-panel h3{
  margin:0 0 8px; font-family:"Bebas Neue"; font-size:2.8rem;
}
.info-panel p, .info-panel li{color:#d6e3ea; line-height:1.75}
form{
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
.field{display:grid; gap:7px}
.field.full{grid-column:1/-1}
label{font-size:.85rem; font-weight:900; color:var(--navy)}
input, select, textarea{
  border:1px solid #c5d0d8; border-radius:14px; padding:13px 14px; font:inherit; background:#fffdf8;
}
textarea{min-height:132px; resize:vertical}
.footer{
  padding:26px 0 42px; color:#5b6b76;
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  border-top:1px solid var(--line); padding-top:22px;
}
.footer-brand{display:flex; align-items:center; gap:10px}
.footer-brand img{width:38px; height:38px; border-radius:50%}

.pill-list{
  display:flex; flex-wrap:wrap; gap:10px;
}
.pill-list span{
  display:inline-flex; padding:9px 12px; border-radius:999px; background:#fff; border:1px solid var(--line); font-size:.86rem; font-weight:800; color:#4c606e;
}

@media (max-width: 980px){
  .hero-grid, .grid-2, .shop-grid, .split{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .mini-points{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .gallery-item.big{grid-row:span 1; grid-column:span 2}
}
@media (max-width: 760px){
  .topbar-inner{flex-direction:column; align-items:stretch}
  .nav-left, .nav-right{justify-content:center; flex-wrap:wrap}
  .nav-links{justify-content:center}
  .section-head{display:block}
  .gallery-grid{grid-template-columns:1fr}
  .gallery-item.big{grid-column:auto}
  form{grid-template-columns:1fr}
  .footer-inner{flex-direction:column}
}


/* ----- conversion + credibility additions ----- */
.hero-proof{
  margin-top:18px; display:flex; gap:10px; flex-wrap:wrap;
}
.proof-chip{
  display:inline-flex; gap:8px; align-items:center;
  padding:9px 12px; border-radius:999px; background:#fff;
  border:1px solid var(--line); font-size:.84rem; font-weight:800; color:#4a5e6b;
}
.proof-chip b{color:var(--navy)}
.comparison-wrap{
  overflow:auto; border-radius:24px; box-shadow:var(--shadow); border:1px solid var(--line);
  background:rgba(255,255,255,.88);
}
.comparison-table{
  width:100%; border-collapse:collapse; min-width:860px;
}
.comparison-table th,.comparison-table td{
  padding:16px 18px; border-bottom:1px solid var(--line); text-align:left; vertical-align:top;
}
.comparison-table th{
  color:var(--navy); background:#fff7e7; font-size:.84rem; text-transform:uppercase; letter-spacing:.08em;
}
.comparison-table td:first-child{font-weight:900;color:var(--navy)}
.comparison-table tr:last-child td{border-bottom:0}
.recommended{
  background:rgba(114,199,220,.10);
}
.recommended td:nth-child(3), .recommended th:nth-child(3){
  position:relative;
}
.popular-label{
  display:inline-block; margin-left:6px; padding:4px 8px; border-radius:999px;
  background:var(--orange); color:#fff; font-size:.68rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase;
}
.timeline{
  display:grid; grid-template-columns:repeat(5,1fr); gap:14px;
}
.timeline-step{
  position:relative; background:rgba(255,255,255,.84); border:1px solid var(--line);
  border-radius:22px; padding:20px; box-shadow:var(--shadow);
}
.timeline-step .n{
  width:38px; height:38px; border-radius:50%; display:grid; place-items:center; font-weight:900;
  background:var(--orange); color:#fff; margin-bottom:12px;
}
.timeline-step h3{font-family:"Bebas Neue";font-size:1.8rem;color:var(--navy);margin:0 0 8px}
.timeline-step p{color:#5b6b76;line-height:1.6;font-size:.92rem}
.spec-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
}
.spec{
  padding:20px; border-radius:22px; background:var(--navy); color:#fff; min-height:150px;
  box-shadow:var(--shadow);
}
.spec strong{display:block;font-family:"Bebas Neue";font-size:2rem;margin-bottom:6px}
.spec span{color:#d8e4ea;line-height:1.6;font-size:.92rem}
.complexity-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px
}
.complexity{
  border-radius:24px;padding:22px;background:rgba(255,255,255,.86);border:1px solid var(--line);box-shadow:var(--shadow)
}
.complexity h3{font-family:"Bebas Neue";font-size:2.2rem;color:var(--navy);margin:8px 0}
.complexity .examples{font-size:.9rem;color:#5c6c77;line-height:1.7}
.social-strip{
  border-radius:28px; background:linear-gradient(135deg,#fdc468,#df4996,#6a3fd8);
  color:#fff; padding:24px; display:flex; align-items:center; justify-content:space-between; gap:18px;
  box-shadow:var(--shadow-lg);
}
.social-strip h3{margin:0;font-family:"Bebas Neue";font-size:2.7rem}
.social-strip p{margin:4px 0 0;color:rgba(255,255,255,.9)}
.faq{
  display:grid;gap:12px
}
.faq details{
  background:rgba(255,255,255,.86);border:1px solid var(--line);border-radius:18px;padding:16px 18px;box-shadow:var(--shadow)
}
.faq summary{cursor:pointer;font-weight:900;color:var(--navy)}
.faq p{color:#566874;line-height:1.7}
.policy-box{
  background:#fff4cf;border:2px dashed rgba(200,94,44,.45);border-radius:22px;padding:20px;color:#6a512d;line-height:1.7
}
.price-note{
  font-size:.9rem;color:#667883;line-height:1.7;margin-top:10px
}
.shop-product.featured-product{
  outline:3px solid rgba(240,122,54,.35); transform:translateY(-6px);
}
.design-badges{
  display:flex;flex-wrap:wrap;gap:8px;margin-top:12px
}
.design-badges span{
  padding:7px 10px;border-radius:999px;background:#fff;border:1px solid var(--line);font-size:.78rem;font-weight:800;color:#50616c
}
@media(max-width:980px){
  .timeline,.spec-grid,.complexity-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .timeline,.spec-grid,.complexity-grid{grid-template-columns:1fr}
  .social-strip{flex-direction:column;align-items:flex-start}
}

.section-tight{padding-top:44px;padding-bottom:44px}
.shop-note{
  margin-top:12px;color:#62727d;font-size:.88rem;line-height:1.65
}
.form-status{
  grid-column:1/-1;margin:0;color:#6a7780;font-size:.86rem;line-height:1.55
}
