/* ===== Double M Agency — custom design, no template ===== */

:root{
  --bg: #dfe1e3;
  --bg-soft: #c7c9ce;
  --bg-soft-2: #eef0f1;
  --ink: #1c1d1f;
  --ink-dim: #55575c;
  --line: rgba(28,29,31,0.14);
  --accent-bright: #f4ff2b;
  --dark: #1b1c1e;
  --light: #f6f6f5;
  --glass-bg: rgba(255,255,255,0.4);
  --glass-bg-soft: rgba(255,255,255,0.22);
  --glass-border: rgba(255,255,255,0.6);
  --radius: 20px;
  --ff-display: 'Space Grotesk', sans-serif;
  --ff-mono: 'JetBrains Mono', monospace;
}

*{ margin:0; padding:0; box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--ff-display);
  overflow-x:hidden;
  cursor:none;
}

a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:none; border:none; background:none; color:inherit; }

::selection{ background:var(--accent-bright); color:var(--dark); }

/* grain overlay */
.grain{
  position:fixed; inset:0; z-index:9998; pointer-events:none;
  opacity:.025;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* custom cursor */
.cursor-dot, .cursor-ring{
  position:fixed; top:0; left:0; pointer-events:none; z-index:9999;
  border-radius:50%; transform:translate(-50%,-50%);
  transition:opacity .2s ease;
}
.cursor-dot{ width:7px; height:7px; background:var(--dark); box-shadow:0 0 0 3px rgba(244,255,43,.5); }
.cursor-ring{ width:34px; height:34px; border:1px solid rgba(28,29,31,.3); transition:width .2s,height .2s,border-color .2s,transform .1s; }
.cursor-ring.hovered{ width:60px; height:60px; border-color:var(--accent-bright); background:rgba(244,255,43,.12); }
@media (hover:none){ .cursor-dot,.cursor-ring{ display:none; } body{ cursor:auto; } a,button{ cursor:pointer; } }

/* loader */
.loader{
  position:fixed; inset:0; z-index:10000; background:var(--dark);
  display:flex; align-items:center; justify-content:center;
  transition:transform .8s cubic-bezier(.76,0,.24,1);
}
.loader.done{ transform:translateY(-100%); }
.loader-text{
  font-family:var(--ff-mono); font-size:clamp(11px,3vw,14px); letter-spacing:.35em;
  color:rgba(246,246,245,.6); animation:pulse 1.1s ease-in-out infinite; white-space:nowrap;
}
@keyframes pulse{ 0%,100%{opacity:.3;} 50%{opacity:1;} }

/* topbar */
.topbar{
  position:fixed; top:0; left:0; right:0; z-index:400;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 5vw;
  background:rgba(255,255,255,.55); backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid rgba(255,255,255,.55);
  box-shadow:0 1px 0 rgba(255,255,255,.9) inset, 0 8px 30px rgba(28,29,31,.05);
}
.logo{ font-size:clamp(15px,3.6vw,20px); font-weight:700; letter-spacing:-.02em; color:var(--ink); white-space:nowrap; }
.logo span{ color:var(--accent-bright); }
.topbar-cta{ display:none; }
@media(min-width:860px){ .topbar-cta{ display:inline-flex; } }

.burger{
  width:44px; height:44px; border-radius:50%; border:1px solid var(--glass-border);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:5px;
  position:relative; z-index:401; flex-shrink:0;
  background:rgba(255,255,255,.5); backdrop-filter:blur(7px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}
.burger span{ width:16px; height:1px; background:var(--ink); transition:transform .3s, opacity .3s; }
.burger.open span:nth-child(1){ transform:translateY(3px) rotate(45deg); }
.burger.open span:nth-child(2){ transform:translateY(-3px) rotate(-45deg); }

/* menu overlay */
.menu-overlay{
  position:fixed; inset:0; z-index:399; background:var(--dark); color:var(--light);
  display:flex; flex-direction:column; justify-content:space-between;
  padding:110px 6vw 50px;
  clip-path:circle(0% at calc(100% - 40px) 40px);
  transition:clip-path .7s cubic-bezier(.76,0,.24,1);
}
.menu-overlay.open{ clip-path:circle(150% at calc(100% - 40px) 40px); }
.menu-links{ display:flex; flex-direction:column; gap:4px; }
.menu-link{
  font-size:clamp(30px,7vw,64px); font-weight:600; letter-spacing:-.02em;
  padding:12px 0; border-bottom:1px solid rgba(246,246,245,.14);
  transition:opacity .3s, padding-left .3s;
}
.menu-link:hover{ padding-left:16px; opacity:.6; color:var(--accent-bright); }
.menu-footer{ display:flex; gap:60px; flex-wrap:wrap; font-family:var(--ff-mono); font-size:14px; }
.menu-footer .label{ opacity:.5; margin-bottom:6px; text-transform:uppercase; font-size:11px; letter-spacing:.1em; }
.menu-footer a{ font-size:16px; word-break:break-word; }

/* buttons */
.btn{
  display:inline-flex; align-items:center; gap:8px; padding:14px 28px;
  border-radius:999px; font-family:var(--ff-mono); font-size:13px; letter-spacing:.03em;
  transition:transform .3s cubic-bezier(.76,0,.24,1), background .3s, color .3s, border-color .3s, box-shadow .3s;
}
.btn-solid{
  background:var(--accent-bright); color:var(--dark);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.6), 0 6px 20px rgba(28,29,31,.12);
}
.btn-solid:hover{ background:#e9ff00; box-shadow:inset 0 1px 0 rgba(255,255,255,.7), 0 8px 24px rgba(28,29,31,.18); }
.btn-ghost{ border:1px solid var(--line); background:var(--glass-bg-soft); backdrop-filter:blur(7px); }
.btn-ghost:hover{ border-color:var(--ink); }
.btn-line{ border:1px solid var(--line); background:var(--glass-bg-soft); backdrop-filter:blur(7px); }
.btn-line:hover{ border-color:var(--accent-bright); color:var(--accent-bright); }
.btn-big{ padding:22px 44px; font-size:16px; }
.magnetic{ will-change:transform; }

/* section shell */
.section{ padding:120px 6vw; position:relative; content-visibility:auto; contain-intrinsic-size:1px 900px; }
.section-dark{ background:var(--bg-soft); }
.section-head{ margin-bottom:60px; max-width:800px; }
.tag{
  display:inline-block; font-family:var(--ff-mono); font-size:12px; color:var(--accent-bright);
  margin-bottom:20px; letter-spacing:.05em; background:var(--dark); padding:7px 16px; border-radius:999px;
}
.section-head h2{ font-size:clamp(30px,5.2vw,54px); font-weight:600; line-height:1.1; letter-spacing:-.02em; }
.section-note{ color:var(--ink-dim); font-size:15px; line-height:1.6; margin-top:16px; max-width:640px; }

/* reveal animation */
.reveal{ opacity:0; transform:translateY(40px); transition:opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in{ opacity:1; transform:translateY(0); }

/* HERO */
.hero{
  min-height:100vh; display:flex; flex-direction:column; justify-content:center;
  padding:150px 6vw 90px; position:relative; overflow:hidden;
}
.hero-spotlight{
  position:absolute; inset:0; z-index:0; pointer-events:none; opacity:0; transition:opacity .4s;
  background:radial-gradient(320px circle at var(--x,50%) var(--y,50%), rgba(244,255,43,.35), transparent 70%);
}
@media(min-width:900px){ .hero-spotlight{ opacity:1; } }
.hero-blob{
  position:absolute; top:-25%; right:-15%; width:60vw; height:60vw; max-width:760px; max-height:760px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.9), transparent 55%),
    radial-gradient(circle at 65% 65%, rgba(244,255,43,.55), transparent 60%);
  filter:blur(46px); opacity:.55; border-radius:50%; z-index:0;
  animation:blobmove 16s ease-in-out infinite alternate; will-change:transform;
}
.hero-blob-2{
  top:auto; bottom:-30%; left:-20%; right:auto; width:44vw; height:44vw; max-width:520px; max-height:520px;
  background:radial-gradient(circle at 50% 50%, rgba(198,201,206,.9), transparent 65%);
  filter:blur(40px); opacity:.6; animation-duration:20s; animation-direction:alternate-reverse;
}
@keyframes blobmove{
  0%{ transform:translate(0,0) scale(1); }
  100%{ transform:translate(-7%,5%) scale(1.1); }
}
.hero-eyebrow{
  font-family:var(--ff-mono); font-size:13px; letter-spacing:.15em; color:var(--ink-dim);
  margin-bottom:22px; position:relative; z-index:1;
}
.hero-title{
  font-size:clamp(38px,8.5vw,104px); font-weight:600; line-height:.98; letter-spacing:-.03em;
  position:relative; z-index:1; max-width:1100px;
}
.hero-title span{ display:block; }
.hero-title em{ font-style:normal; color:var(--accent-bright); }
.hero-italic{ font-style:italic; font-weight:300; color:var(--ink-dim); }
.hero-sub{
  font-size:18px; color:var(--ink-dim); max-width:540px; margin-top:32px; line-height:1.6;
  position:relative; z-index:1;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top:34px; position:relative; z-index:1; }
.hero-scroll{
  position:absolute; bottom:36px; left:6vw; display:flex; align-items:center; gap:14px;
  font-family:var(--ff-mono); font-size:12px; color:var(--ink-dim); letter-spacing:.1em; z-index:1;
}
.scroll-line{ width:1px; height:50px; background:var(--line); position:relative; overflow:hidden; }
.scroll-line i{ position:absolute; top:-50%; left:0; width:100%; height:50%; background:var(--accent-bright); animation:scrolldown 1.8s ease-in-out infinite; }
@keyframes scrolldown{ 0%{ top:-50%; } 100%{ top:100%; } }

/* marquee — hazard strip */
.marquee{ background:var(--dark); overflow:hidden; padding:18px 0; }
.marquee-track{ display:flex; gap:40px; width:max-content; animation:marquee 26s linear infinite; }
.marquee-track span{ font-family:var(--ff-mono); font-size:14px; letter-spacing:.06em; color:var(--light); white-space:nowrap; }
.marquee-track span:nth-child(odd){ color:var(--accent-bright); font-weight:700; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* trust bar */
.trustbar{ display:flex; flex-wrap:wrap; justify-content:center; gap:14px; padding:30px 6vw; }
.trust-item{
  padding:14px 22px; display:flex; align-items:center; gap:14px; border-radius:999px;
  background:var(--glass-bg); backdrop-filter:blur(11px) saturate(130%);
  border:1px solid var(--glass-border);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7), 0 8px 24px rgba(28,29,31,.06);
}
.trust-ico{ font-size:22px; flex-shrink:0; }
.trust-item p{ font-size:14px; line-height:1.3; white-space:nowrap; }
.trust-item em{ font-style:normal; color:var(--ink-dim); font-size:12px; }
@media(max-width:700px){ .trust-item p{ white-space:normal; } }

/* services */
.services-grid{ display:grid; grid-template-columns:1fr; gap:18px; }
@media(min-width:700px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:1080px){ .services-grid{ grid-template-columns:repeat(3,1fr); } }
.service-card{
  background:var(--glass-bg); backdrop-filter:blur(11px) saturate(130%);
  border:1px solid var(--glass-border); border-radius:var(--radius);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7), 0 10px 30px rgba(28,29,31,.05);
  padding:36px 30px; transition:transform .35s, box-shadow .35s;
}
.service-card:hover{ transform:translateY(-4px); box-shadow:inset 0 1px 0 rgba(255,255,255,.8), 0 16px 34px rgba(28,29,31,.1); }
.service-card h3{ font-size:21px; margin-bottom:12px; letter-spacing:-.01em; }
.service-card p{ color:var(--ink-dim); font-size:15px; line-height:1.6; margin-bottom:20px; }
.service-card ul li{ font-family:var(--ff-mono); font-size:12px; color:var(--ink-dim); padding:8px 0; border-top:1px solid var(--line); }

/* about */
.about{ display:grid; grid-template-columns:1fr; gap:50px; align-items:center; }
@media(min-width:900px){ .about{ grid-template-columns:.85fr 1.15fr; gap:80px; } }
.about-photo-wrap{ display:flex; justify-content:center; }
.about-photo{
  width:100%; max-width:440px; aspect-ratio:3/2; border-radius:var(--radius);
  overflow:hidden; position:relative;
  background:linear-gradient(160deg, var(--bg-soft-2), var(--bg-soft));
  border:1px solid var(--glass-border);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7), 0 16px 40px rgba(28,29,31,.12);
}
.about-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.about-text .tag{ margin-bottom:16px; }
.about-text h2{ font-size:clamp(28px,4.4vw,44px); font-weight:600; line-height:1.1; letter-spacing:-.02em; margin-bottom:20px; }
.about-lead{ font-size:19px; color:var(--ink); margin-bottom:16px; line-height:1.5; }
.about-text > p{ color:var(--ink-dim); line-height:1.7; margin-bottom:30px; max-width:620px; }
.about-points{ display:grid; grid-template-columns:1fr; gap:20px; }
@media(min-width:600px){ .about-points{ grid-template-columns:repeat(3,1fr); } }
.about-points div{ border-top:2px solid var(--accent-bright); padding-top:14px; display:flex; flex-direction:column; gap:6px; }
.about-points strong{ font-size:15px; }
.about-points span{ color:var(--ink-dim); font-size:13px; line-height:1.5; }

/* steps (jak to działa) */
.steps-grid{ display:grid; grid-template-columns:1fr; gap:18px; }
@media(min-width:760px){ .steps-grid{ grid-template-columns:repeat(3,1fr); } }
.step-card{
  background:var(--glass-bg); backdrop-filter:blur(11px) saturate(130%);
  border:1px solid var(--glass-border); border-radius:var(--radius);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7), 0 10px 30px rgba(28,29,31,.05);
  padding:38px 30px;
}
.step-ico{ font-size:32px; display:block; margin-bottom:20px; }
.step-card h3{ font-size:21px; margin-bottom:10px; }
.step-card p{ color:var(--ink-dim); font-size:15px; line-height:1.6; }

/* portfolio */
.portfolio-grid{ display:grid; grid-template-columns:1fr; gap:22px; }
@media(min-width:760px){ .portfolio-grid{ grid-template-columns:repeat(2,1fr); } }
.portfolio-card{ border-radius:var(--radius); overflow:hidden; }
.portfolio-placeholder{
  aspect-ratio:4/3; width:100%; border:1.5px dashed var(--line); border-radius:var(--radius);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
  color:var(--ink-dim); font-family:var(--ff-mono); font-size:13px; text-align:center;
  background:var(--glass-bg-soft); backdrop-filter:blur(7px);
}
.portfolio-frame{
  aspect-ratio:4/3; width:100%; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--glass-border); box-shadow:0 10px 30px rgba(28,29,31,.08);
  background:var(--bg-soft);
}
.portfolio-frame iframe{ width:100%; height:100%; border:0; display:block; }
.portfolio-frame-link{ display:block; cursor:none; }
.portfolio-frame-fallback{
  width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:14px; text-align:center; padding:24px;
  background:linear-gradient(160deg, #f2ece2, #d9cdb8);
  transition:transform .4s cubic-bezier(.16,1,.3,1);
}
.portfolio-frame-link:hover .portfolio-frame-fallback{ transform:scale(1.03); }
.portfolio-frame-fallback p{
  font-family:'Georgia', serif; font-size:20px; color:#2a241c; line-height:1.3;
}
.portfolio-frame-fallback span{
  font-family:var(--ff-mono); font-size:11px; color:#6b6252; letter-spacing:.03em;
}
.portfolio-caption{
  margin-top:12px; font-family:var(--ff-mono); font-size:13px; color:var(--ink-dim); text-align:center;
}

/* before/after compare gadget */
.compare-block{ margin-top:56px; }
.compare-label{
  font-family:var(--ff-mono); font-size:14px; color:var(--ink-dim); margin:0 auto 26px; text-align:center;
  max-width:640px; line-height:1.6;
}
.compare-slider{
  position:relative; max-width:960px; margin:0 auto; aspect-ratio:16/10; border-radius:var(--radius);
  overflow:hidden; border:1px solid var(--glass-border); user-select:none;
  box-shadow:0 16px 40px rgba(28,29,31,.12);
}
.compare-side{ position:absolute; inset:0; padding:32px; z-index:1; }
.compare-before{ background:#eceeef; color:#8a8c90; z-index:1; }
.compare-before .compare-tag{ color:#8a8c90; }
.compare-after{ background:var(--dark); color:var(--light); clip-path:inset(0 0 0 50%); z-index:2; }
.compare-after .compare-tag{ color:var(--accent-bright); }
.compare-after, .compare-after *{ opacity:1; visibility:visible; }
.compare-tag{ font-family:var(--ff-mono); font-size:12px; letter-spacing:.05em; text-transform:uppercase; font-weight:700; }
.compare-legend{
  display:grid; grid-template-columns:1fr; gap:16px; max-width:960px; margin:26px auto 0;
}
@media(min-width:700px){ .compare-legend{ grid-template-columns:1fr 1fr; } }
.compare-legend div{
  padding:22px 24px; border-radius:16px; background:var(--glass-bg); backdrop-filter:blur(7px) saturate(130%);
  border:1px solid var(--glass-border); box-shadow:inset 0 1px 0 rgba(255,255,255,.7), 0 8px 22px rgba(28,29,31,.05);
}
.compare-legend strong{ display:block; font-size:15px; margin-bottom:8px; }
.compare-legend span{ color:var(--ink-dim); font-size:13.5px; line-height:1.6; }
.fake-site{ margin-top:20px; max-width:420px; }
.fake-site-full{ max-width:none; width:100%; }
.fake-nav{ display:flex; align-items:center; gap:16px; margin-bottom:24px; }
.fake-logo{ width:26px; height:14px; border-radius:3px; background:#b7b9be; margin-right:auto; }
.fake-navlink{ width:34px; height:8px; border-radius:3px; background:#c7c9cd; }
.fake-site-plain{ font-family:Arial, Helvetica, sans-serif; }
.fake-site-plain h4{ font-size:24px; font-weight:700; color:#5c5e63; line-height:1.25; margin-bottom:10px; }
.fake-site-plain p{ font-size:13.5px; color:#8a8c90; line-height:1.5; max-width:320px; margin-bottom:14px; }
.fake-icon-row{ display:flex; gap:10px; margin-top:18px; }
.fake-icon-row span{ width:34px; height:34px; border-radius:8px; background:#d6d8da; }
.fake-site-custom .fake-logo-text{ font-family:var(--ff-display); font-weight:700; font-size:14px; margin-right:auto; }
.fake-site-custom .fake-logo-text b{ color:var(--accent-bright); }
.fake-site-custom .fake-navlink-text{ font-family:var(--ff-mono); font-size:10px; color:rgba(246,246,245,.55); letter-spacing:.04em; }
.fake-site-custom h4{ font-family:var(--ff-display); font-size:27px; font-weight:600; line-height:1.15; letter-spacing:-.02em; margin-bottom:10px; }
.fake-site-custom h4 em{ font-style:normal; color:var(--accent-bright); }
.fake-site-custom p{ font-size:13.5px; color:rgba(246,246,245,.6); line-height:1.5; max-width:320px; margin-bottom:16px; }
.fake-cta-small{ font-size:10px !important; padding:7px 14px !important; margin-left:auto; }
.fake-hero-row{ display:flex; align-items:center; gap:28px; margin-bottom:26px; }
.fake-hero-copy{ flex:1 1 auto; min-width:0; }
.fake-hero-copy p{ max-width:none; }
.fake-hero-art{
  flex:0 0 auto; width:38%; max-width:220px; aspect-ratio:4/3; border-radius:14px;
  background:linear-gradient(135deg, #6b4a2f 0%, #b5793f 45%, var(--accent-bright) 100%);
}
.fake-feature-row{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:20px; }
.fake-feature{
  flex:1 1 140px; display:flex; flex-direction:column; gap:8px; padding:14px 16px;
  background:rgba(246,246,245,.05); border-radius:10px;
}
.fake-feature span{ font-size:18px; }
.fake-feature b{ font-size:11px; font-weight:600; color:rgba(246,246,245,.75); }
.fake-tagline{ font-style:italic; font-size:12.5px !important; margin-bottom:16px !important; }
.fake-site-plain .fake-tagline{ color:#a7a9ad !important; }
.fake-tagline.accent-tagline{ color:rgba(246,246,245,.45) !important; }
.fake-footer-text{
  font-size:10.5px !important; margin:22px 0 0 !important; padding-top:16px;
  border-top:1px solid rgba(0,0,0,.08);
}
.fake-site-plain .fake-footer-text{ color:#b3b5b9 !important; }
.fake-footer-text.accent-footer{
  color:rgba(246,246,245,.4) !important; border-top:1px solid rgba(246,246,245,.14); font-family:var(--ff-mono);
}
.fake-cta{
  display:inline-block; font-family:Arial, Helvetica, sans-serif; font-size:12px; font-weight:600;
  padding:9px 18px; border-radius:5px; background:#4a76d8; color:#fff;
}
.fake-cta.accent-cta{
  font-family:var(--ff-mono); background:var(--accent-bright); color:var(--dark); border-radius:999px; font-weight:700;
}
.compare-range{ position:absolute; inset:0; width:100%; height:100%; margin:0; opacity:0; cursor:ew-resize; z-index:5; }
.compare-handle{
  position:absolute; top:50%; left:50%; width:42px; height:42px; border-radius:50%;
  background:var(--accent-bright); color:var(--dark); display:flex; align-items:center; justify-content:center;
  transform:translate(-50%,-50%); pointer-events:none; font-size:15px; font-weight:700;
  box-shadow:0 0 0 5px rgba(255,255,255,.6), 0 6px 16px rgba(28,29,31,.25);
  z-index:4;
}

/* pricing */
.pricing-grid{ display:grid; grid-template-columns:1fr; gap:26px; max-width:1200px; }
@media(min-width:700px){ .pricing-grid{ grid-template-columns:repeat(2,1fr); } }
.price-card{
  border:1px solid var(--glass-border); border-radius:var(--radius); padding:48px 40px;
  display:flex; flex-direction:column; gap:18px; position:relative;
  background:var(--glass-bg); backdrop-filter:blur(11px) saturate(130%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7), 0 10px 30px rgba(28,29,31,.05);
}
.price-featured{ background:var(--dark); color:var(--light); border-color:transparent; }
.price-featured .price-desc{ color:rgba(246,246,245,.6); }
.price-featured ul li{ color:rgba(246,246,245,.75); }
.price-featured ul li::before{ color:var(--accent-bright); }
.price-badge{ position:absolute; top:-14px; right:24px; background:var(--accent-bright); color:var(--dark); font-family:var(--ff-mono); font-size:11px; padding:6px 14px; border-radius:999px; letter-spacing:.03em; font-weight:700; }
.price-card h3{ font-size:clamp(24px,2.4vw,30px); }
.price-desc{ color:var(--ink-dim); font-size:14px; }
.price-amount{ font-size:clamp(32px,3.6vw,44px); font-weight:700; margin:8px 0; letter-spacing:-.02em; }
.price-card ul{ display:flex; flex-direction:column; gap:10px; margin-bottom:14px; flex:1; }
.price-card ul li{ font-size:14px; color:var(--ink-dim); padding-left:20px; position:relative; }
.price-card ul li::before{ content:'—'; position:absolute; left:0; color:var(--accent-bright); }
.price-start ul li::before{ color:var(--ink); }

/* cost banner */
.cost-banner{
  padding:64px 6vw; background:var(--dark); color:var(--light);
  display:flex; flex-wrap:wrap; align-items:center; gap:40px; justify-content:space-between;
}
.cost-banner-text{ flex:1 1 420px; max-width:640px; }
.cost-banner-text h3{ font-size:clamp(20px,2.6vw,26px); margin-bottom:14px; font-weight:600; letter-spacing:-.01em; }
.cost-banner-text p{ color:rgba(246,246,245,.65); font-size:15px; line-height:1.7; }
.cost-banner-text strong{ color:var(--accent-bright); }
.cost-banner-highlight{
  flex:0 0 auto; display:flex; flex-direction:column; align-items:flex-start; gap:6px;
  padding:26px 32px; border-radius:18px; background:rgba(244,255,43,.08); border:1px solid rgba(244,255,43,.3);
}
.cost-banner-amount{ font-size:clamp(28px,3.4vw,38px); font-weight:700; color:var(--accent-bright); letter-spacing:-.02em; white-space:nowrap; }
.cost-banner-sub{ font-family:var(--ff-mono); font-size:12px; color:rgba(246,246,245,.55); }

/* benefits */
.benefits-grid{ display:grid; grid-template-columns:1fr; gap:18px; }
@media(min-width:640px){ .benefits-grid{ grid-template-columns:repeat(2,1fr); } }
@media(min-width:1000px){ .benefits-grid{ grid-template-columns:repeat(3,1fr); } }
.benefit-card{
  background:var(--glass-bg); backdrop-filter:blur(11px) saturate(130%);
  border:1px solid var(--glass-border); border-radius:var(--radius);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7), 0 10px 30px rgba(28,29,31,.05);
  padding:30px 26px;
}
.benefit-ico{ font-size:28px; display:block; margin-bottom:16px; }
.benefit-card h3{ font-size:18px; margin-bottom:8px; }
.benefit-card p{ color:var(--ink-dim); font-size:14px; line-height:1.6; }

/* CTA */
.cta{
  padding:140px 6vw; text-align:center; display:flex; flex-direction:column; align-items:center; gap:36px;
  background:var(--dark); color:var(--light); position:relative; overflow:hidden;
}
.cta::before{
  content:''; position:absolute; top:50%; left:50%; width:60vw; height:60vw; max-width:700px; max-height:700px;
  background:radial-gradient(circle at 40% 40%, rgba(244,255,43,.25), transparent 60%),
             radial-gradient(circle at 65% 60%, rgba(255,255,255,.12), transparent 55%);
  filter:blur(70px); transform:translate(-50%,-50%); border-radius:44% 56% 60% 40% / 46% 42% 58% 54%;
  animation:blobmove 18s ease-in-out infinite alternate;
}
.cta h2, .cta-sub, .cta .btn{ position:relative; z-index:1; }
.cta h2{ font-size:clamp(36px,8vw,88px); font-weight:600; line-height:.98; letter-spacing:-.03em; }
.cta-sub{ color:rgba(246,246,245,.6); font-size:16px; }

/* FAQ */
.faq-list{ display:flex; flex-direction:column; gap:14px; }
.faq-item{
  border-radius:16px; background:var(--glass-bg); backdrop-filter:blur(7px) saturate(130%);
  border:1px solid var(--glass-border); box-shadow:inset 0 1px 0 rgba(255,255,255,.7), 0 6px 18px rgba(28,29,31,.04);
  padding:0 20px;
}
.faq-q{
  width:100%; text-align:left; padding:22px 4px; display:flex; justify-content:space-between; align-items:center;
  font-size:17px; font-family:var(--ff-display); gap:16px;
}
.faq-q span{ font-family:var(--ff-mono); color:var(--accent-bright); font-size:20px; transition:transform .3s; flex-shrink:0; }
.faq-item.open .faq-q span{ transform:rotate(45deg); color:var(--accent-bright); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s ease, padding .4s ease; padding:0 4px; }
.faq-item.open .faq-a{ max-height:220px; padding-bottom:22px; }
.faq-a p{ color:var(--ink-dim); font-size:15px; line-height:1.6; max-width:680px; }

/* contact */
.contact-tiles{ display:grid; grid-template-columns:1fr; gap:20px; max-width:720px; }
@media(min-width:640px){ .contact-tiles{ grid-template-columns:1fr 1fr; } }
.contact-tile{
  display:flex; flex-direction:column; gap:10px; padding:36px 30px; border-radius:var(--radius);
  background:var(--glass-bg); backdrop-filter:blur(11px) saturate(130%);
  border:1px solid var(--glass-border);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7), 0 10px 30px rgba(28,29,31,.05);
  transition:transform .3s, box-shadow .3s;
}
.contact-tile:hover{ transform:translateY(-4px); box-shadow:inset 0 1px 0 rgba(255,255,255,.8), 0 16px 34px rgba(28,29,31,.1); }
.contact-tile-ico{ font-size:26px; }
.contact-tile .label{ font-family:var(--ff-mono); font-size:11px; text-transform:uppercase; letter-spacing:.1em; color:var(--ink-dim); }
.contact-tile-value{ font-size:19px; font-weight:500; word-break:break-word; }

/* footer */
.footer{ padding:56px 6vw 40px; }
.footer-top{ display:flex; justify-content:space-between; align-items:center; padding-bottom:36px; border-bottom:1px solid var(--line); flex-wrap:wrap; gap:20px; }
.footer .logo{ color:var(--ink); }
.footer .logo span{ color:var(--accent-bright); }
.footer-bottom{ display:flex; justify-content:space-between; padding-top:22px; font-family:var(--ff-mono); font-size:12px; color:var(--ink-dim); flex-wrap:wrap; gap:10px; }

@media(max-width:600px){
  .section{ padding:80px 6vw; }
  .hero{ padding-top:120px; }
  .cta{ padding:100px 6vw; }
  .about-photo{ max-width:100%; }
  .btn-big{ padding:18px 32px; font-size:14px; }

  .compare-slider{ aspect-ratio:auto; min-height:720px; }
  .compare-side{ padding:16px; overflow-y:auto; }
  .fake-site{ margin-top:10px; max-width:100%; }
  .fake-nav{ margin-bottom:14px; flex-wrap:wrap; row-gap:8px; }
  .fake-site-plain h4, .fake-site-custom h4{ font-size:18px; }
  .fake-icon-row{ margin-top:12px; }
  .fake-footer-text{ margin-top:16px !important; padding-top:12px; }
  .compare-tag{ font-size:10px; }
  .fake-hero-row{ flex-direction:column; align-items:stretch; gap:16px; }
  .fake-hero-art{ width:100%; max-width:none; aspect-ratio:16/9; }
  .fake-cta-small{ margin-left:0; }
}
