/* ===== SJ Media Studio — styles.css ===== */
:root {
  --bg: #0c0c12;
  --bg-2: #13131c;
  --surface: rgba(255,255,255,.055);
  --surface-2: rgba(255,255,255,.09);
  --surface-solid: #17171f;
  --text: #f6f6f8;
  --muted: #abaebd;
  --line: rgba(255,255,255,.12);
  --brand: #e7e7ec;
  --brand-2: #9a9aa6;
  --accent: #ffffff;
  --grad: linear-gradient(120deg, #ffffff 0%, #cfcfd6 45%, #8f8f9a 100%);
  /* subtle neutral silver glow (kept uniform so the UI stays dark & premium) */
  --glow-blue: 200,203,216;
  --glow-violet: 200,203,216;
  --glow-pink: 200,203,216;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1160px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-head: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background:
    radial-gradient(1000px 620px at 12% -8%, rgba(255,255,255,.055), transparent 60%),
    radial-gradient(900px 700px at 100% 4%, rgba(150,162,196,.05), transparent 60%),
    radial-gradient(820px 620px at 50% 112%, rgba(255,255,255,.04), transparent 62%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; letter-spacing: -.02em; margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.grad {
  background: var(--grad);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% center; } 100% { background-position: 220% center; } }
@media (prefers-reduced-motion: reduce) { .grad { animation: none; } }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px; font-weight: 600;
}

/* ===== Buttons ===== */
.btn {
  --pad: 14px 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad); border-radius: 999px; font-family: var(--font-head);
  font-weight: 600; font-size: .95rem; cursor: pointer; border: 1px solid transparent;
  background: #f5f5f7; color: #0b0b0f; transition: transform .25s var(--ease), box-shadow .25s var(--ease), opacity .2s;
  box-shadow: 0 8px 30px rgba(0,0,0,.45);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255,255,255,.14); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--text); box-shadow: none; }
.btn--ghost:hover { background: var(--surface-2); box-shadow: none; }
.btn--sm { --pad: 10px 18px; font-size: .875rem; }
.btn--lg { --pad: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ===== Cursor glow (desktop only) ===== */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 480px; height: 480px; border-radius: 50%;
  pointer-events: none; z-index: 3; opacity: 0; transition: opacity .4s;
  background: radial-gradient(circle, rgba(140,170,255,.16), rgba(255,255,255,.08) 40%, transparent 62%);
  mix-blend-mode: screen; will-change: transform;
}
@media (hover: none) { .cursor-glow { display: none; } }
@media (prefers-reduced-motion: reduce) { .cursor-glow { display: none; } }

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad); z-index: 100; transition: width .1s linear;
}

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px); background: rgba(11,11,15,.6);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.nav.is-scrolled { border-color: var(--line); background: rgba(11,11,15,.85); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; }
.brand__logo { width: 34px; height: 34px; display: block; }
.brand__text { font-size: 1.02rem; letter-spacing: -.01em; }
.brand--footer img { height: 46px; width: auto; }
.brand--footer .brand__text { display: none; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: .95rem; color: var(--muted); transition: color .2s; font-family: var(--font-head); }
.nav__links a:hover { color: var(--text); }
.nav__links .btn { color: #0b0b0f; }
.nav__toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; padding: clamp(70px, 12vw, 140px) 0 90px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% 0 auto; height: 620px; pointer-events: none;
  background:
    radial-gradient(600px 340px at 20% 10%, rgba(var(--glow-blue), .40), transparent 70%),
    radial-gradient(560px 340px at 84% 6%, rgba(var(--glow-pink), .34), transparent 70%),
    radial-gradient(520px 320px at 55% 46%, rgba(var(--glow-violet), .28), transparent 70%);
  filter: blur(8px);
  animation: heropulse 9s ease-in-out infinite;
}
@keyframes heropulse { 0%,100% { opacity: .82; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@media (prefers-reduced-motion: reduce) { .hero__glow { animation: none; } }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; text-align: left; }
.hero__content { min-width: 0; }
.hero__title { font-size: clamp(2.4rem, 5.6vw, 4.4rem); font-weight: 800; max-width: 16ch; margin: 0; letter-spacing: -.03em; }
.hero__lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.2rem); max-width: 54ch; margin: 24px 0 0; }
.hero__cta { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; margin-top: 34px; }
.hero__stats { display: flex; gap: clamp(22px, 4vw, 52px); justify-content: flex-start; flex-wrap: wrap; margin-top: 52px; }

/* Hero phone mockup */
.hero__visual { display: flex; justify-content: center; position: relative; }
.hero__visual::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 380px; height: 380px; border-radius: 50%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(var(--glow-violet), .35), rgba(var(--glow-blue), .18) 45%, transparent 70%); filter: blur(30px);
}
.phone {
  position: relative; z-index: 1;
  width: 360px; max-width: 100%; border-radius: 44px; padding: 13px;
  background: linear-gradient(160deg, #2c2c34, #131317);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 44px 100px rgba(0,0,0,.65), inset 0 0 0 2px rgba(255,255,255,.03);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .phone { animation: none; } }
.phone__screen { background: #0a0a0c; border-radius: 30px; overflow: hidden; border: 1px solid var(--line); }
.phone__bar { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
.phone__ava { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(140deg,#fff,#b8b8c0); color: #0b0b0f; font-family: var(--font-head); font-weight: 700; font-size: .72rem; display: grid; place-items: center; }
.phone__user { font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
.phone__follow { margin-left: auto; font-family: var(--font-head); font-weight: 600; font-size: .72rem; color: #0b0b0f; background: #f5f5f7; padding: 5px 13px; border-radius: 999px; }
.phone__more { margin-left: 12px; color: var(--muted); letter-spacing: 1px; }
.phone__post { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.phone__actions { display: flex; gap: 16px; padding: 12px 14px 4px; font-size: 1.15rem; color: var(--text); }
.phone__save { margin-left: auto; }
.phone__caption { padding: 4px 14px 16px; font-size: .84rem; color: var(--muted); line-height: 1.45; }
.phone__caption strong { color: var(--text); font-family: var(--font-head); }
/* Floating rating badge */
.phone__float {
  position: absolute; bottom: 7%; left: -4%; z-index: 3;
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  background: linear-gradient(180deg, rgba(32,32,40,.95), rgba(16,16,20,.97));
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 22px 52px rgba(0,0,0,.6);
  font-family: var(--font-head); font-size: .88rem; color: var(--muted);
  animation: floatb 6s ease-in-out -3s infinite;
}
@keyframes floatb { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone__float-stars { color: #f5f5f7; letter-spacing: 2px; font-size: .78rem; }
.phone__float-txt strong { color: var(--text); }
@media (prefers-reduced-motion: reduce) { .phone__float { animation: none; } }
@media (max-width: 560px) { .phone__float { display: none; } }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { color: var(--muted); font-size: .9rem; letter-spacing: .02em; }

/* ===== Hero scroll indicator ===== */
.hero__scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid var(--line); border-radius: 14px;
  display: grid; justify-items: center; align-content: start; padding-top: 8px;
  transition: border-color .2s;
}
.hero__scroll:hover { border-color: rgba(255,255,255,.4); }
.hero__scroll span { width: 4px; height: 8px; background: var(--muted); border-radius: 2px; animation: scrolld 1.6s ease-in-out infinite; }
@keyframes scrolld { 0% { opacity: 0; transform: translateY(-3px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateY(9px); } }
@media (prefers-reduced-motion: reduce) { .hero__scroll span { animation: none; } }
@media (max-width: 900px) { .hero__scroll { display: none; } }

/* ===== Marquee — trusted-by logo chips ===== */
.marquee { border-block: 1px solid var(--line); padding: 28px 0; overflow: hidden; background: rgba(255,255,255,.02); }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__label { text-align: center; color: var(--muted); font-family: var(--font-head); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 20px; }
.marquee__viewport { overflow: hidden; }
.marquee__track { display: flex; gap: 14px; width: max-content; animation: marquee 36s linear infinite; }
.tb {
  display: inline-flex; align-items: center; gap: 11px; padding: 9px 20px 9px 9px; white-space: nowrap;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.045);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--text);
  transition: border-color .2s, background .2s, transform .2s;
}
.tb:hover { border-color: rgba(255,255,255,.30); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.tb__logo {
  width: 36px; height: 36px; border-radius: 50%; flex: none; object-fit: cover; object-position: center;
  background: #fff; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ===== Sections ===== */
.section { padding: clamp(64px, 10vw, 120px) 0; }
.section--alt { background: rgba(255,255,255,.022); }
.section, .brandband, #showcase { scroll-margin-top: 86px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.section__head p { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }

/* ===== Grid / cards ===== */
.grid { display: grid; gap: 22px; }
.grid--services { grid-template-columns: repeat(3, 1fr); }
.grid--work { grid-template-columns: repeat(2, 1fr); }
.grid--quotes { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.28); background: var(--surface-2); box-shadow: 0 28px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08); }
.card__icon {
  display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(140deg, rgba(var(--glow-blue), .30), rgba(var(--glow-pink), .22));
  color: #fff; font-size: 1.4rem; margin-bottom: 18px; border: 1px solid rgba(255,255,255,.14);
}
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ===== Work ===== */
.work { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--surface); transition: transform .3s var(--ease), border-color .3s; }
.work:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.28); box-shadow: 0 28px 60px rgba(0,0,0,.5); }
.work__body { padding: 24px 26px 28px; }
.work__body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.work__body p { color: var(--muted); margin: 0; }
.work__body strong { color: var(--text); }

/* ===== Steps ===== */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; position: relative; transition: transform .3s var(--ease), border-color .3s; }
.step:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.26); }
.step__num {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(140deg, rgba(255,255,255,.15), rgba(255,255,255,.04));
  border: 1px solid var(--line); color: var(--text);
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; margin-bottom: 16px;
}
.step h3 { font-size: 1.25rem; margin: 0 0 8px; }
.step p { color: var(--muted); margin: 0; font-size: .96rem; }
.step__glyph { position: absolute; top: 20px; right: 22px; font-size: 2.1rem; line-height: 1; color: rgba(255,255,255,.12); pointer-events: none; transition: color .3s, transform .3s var(--ease); }
.step:hover .step__glyph { color: rgba(255,255,255,.22); transform: scale(1.1) rotate(6deg); }
.step:not(:last-child)::after {
  content: "\2192"; position: absolute; top: 53px; right: -15px; transform: translateY(-50%);
  color: var(--muted); font-size: 1.35rem; z-index: 2;
}
@media (max-width: 960px) { .step:not(:last-child)::after { display: none; } }

/* ===== Quotes ===== */
.quote { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.quote__stars { color: #f5f5f7; letter-spacing: 3px; font-size: 1rem; margin-bottom: 14px; }
.quote blockquote { margin: 0 0 20px; font-size: 1.08rem; line-height: 1.55; }
.quote figcaption { color: var(--muted); font-size: .92rem; display: flex; align-items: center; gap: 12px; }
.quote figcaption strong { color: var(--text); }
.quote__avatar {
  flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: #0b0b0f;
  background: linear-gradient(140deg, #ffffff, #b8b8c0);
}

/* ===== Reviews feature (real IG reviews image) ===== */
.reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.reviews__stars { color: #f5f5f7; letter-spacing: 4px; font-size: 1.25rem; margin-bottom: 18px; }
.reviews__lead { font-size: clamp(1.1rem, 2vw, 1.3rem); line-height: 1.6; color: var(--text); margin: 0 0 26px; }
.reviews__clients { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.reviews__clients li {
  font-family: var(--font-head); font-size: .9rem; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; background: var(--surface);
  transition: color .2s, border-color .2s;
}
.reviews__clients li:hover { color: var(--text); border-color: rgba(255,255,255,.28); }
.reviews__figure { margin: 0; }
.reviews__figure img {
  width: 100%; max-width: 440px; margin-inline: auto; display: block;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
}
@media (max-width: 900px) {
  .reviews { grid-template-columns: 1fr; gap: 32px; }
  .reviews__figure { order: -1; }
}

/* ===== CTA / form ===== */
.cta { position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; top: -25%; right: -8%; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--glow-pink), .20), rgba(var(--glow-violet), .12) 45%, transparent 72%);
  filter: blur(34px); pointer-events: none; z-index: 0;
}
.cta .container { position: relative; z-index: 1; }
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.cta__copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta__copy p { color: var(--muted); margin-top: 14px; font-size: 1.06rem; }
.cta__list { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 10px; color: var(--text); }
.cta__list li { color: var(--muted); }
.cta__contacts { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.cta__contact { font-family: var(--font-head); color: var(--text); border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: color .2s, border-color .2s; }
.cta__contact:hover { color: var(--accent); border-color: var(--accent); }

.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 7px; font-size: .9rem; font-family: var(--font-head); color: var(--muted); }
.form input, .form select, .form textarea {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 14px; color: var(--text); font-family: var(--font-body); font-size: .95rem; width: 100%;
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(var(--glow-blue), .25);
}
.form__note { margin: 4px 0 0; font-size: .9rem; font-family: var(--font-body); min-height: 1.2em; }
.form__note.is-ok { color: var(--accent); }
.form__note.is-err { color: var(--brand-2); }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 56px 0 30px; }
.footer__inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 30px; }
.footer__brand p { color: var(--muted); margin: 12px 0 0; }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer__nav a { color: var(--muted); font-family: var(--font-head); font-size: .95rem; transition: color .2s; }
.footer__nav a:hover { color: var(--text); }
.social { display: none; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.social__link {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--muted);
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.social__link svg { width: 19px; height: 19px; fill: currentColor; display: block; }
.social__link:hover { background: #f5f5f7; color: #0b0b0f; transform: translateY(-3px); border-color: transparent; box-shadow: 0 8px 20px rgba(0,0,0,.45); }
.footer__bar { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }

/* ===== Brand statement band ===== */
.brandband {
  position: relative; padding: clamp(58px, 8vw, 100px) 0; text-align: center;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-block: 1px solid var(--line); overflow: hidden;
}
.brandband::before {
  content: "SJ"; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 40vw; line-height: 1;
  color: rgba(255,255,255,.025); pointer-events: none; user-select: none;
}
.brandband__inner { position: relative; }
.brandband__mark { margin: 0 auto 20px; display: block; }
.brandband__title { font-size: clamp(1.9rem, 4.6vw, 3.1rem); }
.brandband__sub { color: var(--muted); margin-top: 14px; font-size: 1.12rem; }

/* ===== Feed / showcase grid ===== */
.feed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feed__tile {
  position: relative; display: block; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line); transition: transform .3s var(--ease), border-color .3s;
}
.feed__tile img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.feed__tile:hover img { transform: scale(1.06); }
.feed__tile::after {
  content: "◎ View on Instagram"; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-head); font-size: .9rem; color: #fff; background: rgba(8,8,10,.6);
  opacity: 0; transition: opacity .3s;
}
.feed__tile:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.28); box-shadow: 0 22px 48px rgba(0,0,0,.5); }
.feed__tile:hover::after { opacity: 1; }
.feed__cta { text-align: center; margin-top: 32px; }

/* ===== Work cover images ===== */
.work__cover { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; background: #101014; transition: transform .55s var(--ease); }
.work:hover .work__cover { transform: scale(1.05); }

/* ===== Active nav link ===== */
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after {
  content: ""; display: block; height: 2px; margin-top: 3px; border-radius: 2px;
  background: var(--grad);
}
@media (max-width: 720px) { .nav__links a.is-active::after { display: none; } }

/* ===== Pricing ===== */
.grid--pricing { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .3s var(--ease), border-color .3s;
}
.plan:hover { transform: translateY(-6px); border-color: rgba(var(--glow-blue), .5); }
.plan--featured {
  border-color: rgba(var(--glow-violet), .6);
  background: linear-gradient(180deg, rgba(var(--glow-violet), .12), var(--surface));
  box-shadow: 0 24px 60px rgba(var(--glow-violet), .22);
}
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #f5f5f7; color: #0b0b0f; font-family: var(--font-head); font-weight: 600;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
}
.plan__name { font-size: 1.5rem; }
.plan__for { color: var(--muted); font-size: .95rem; margin: 8px 0 18px; min-height: 2.8em; }
.plan__price { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; margin-bottom: 20px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.plan__price span { font-size: .95rem; color: var(--muted); font-weight: 500; -webkit-text-fill-color: var(--muted); margin-left: 6px; }
.plan__list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
.plan__list li { color: var(--muted); font-size: .96rem; padding-left: 26px; position: relative; }
.plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--text); font-weight: 700; }
.plan__list li strong { color: var(--text); }
.plan .btn { margin-top: auto; }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 22px; transition: border-color .3s;
}
.faq__item[open] { border-color: rgba(var(--glow-blue), .45); }
.faq__item[open] summary { color: var(--brand); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--font-head);
  font-weight: 600; font-size: 1.08rem; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--muted); font-size: 1.5rem; font-weight: 400; transition: transform .3s var(--ease); line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); margin: 0 0 20px; font-size: .98rem; line-height: 1.6; }

/* ===== WhatsApp floating button ===== */
.wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 61;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(18,18,24,.9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(37,211,102,.55); color: #25d366;
  box-shadow: 0 14px 34px rgba(0,0,0,.5); transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
}
.wa::before {
  content: ""; position: absolute; inset: -1px; border-radius: 50%; border: 2px solid rgba(37,211,102,.5);
  animation: wapulse 2.2s ease-out infinite; pointer-events: none;
}
@keyframes wapulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.55); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa::before { animation: none; } }
.wa:hover { background: #25d366; color: #0b0b0f; transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 44px rgba(37,211,102,.4); }
.wa__label {
  position: absolute; right: 68px; white-space: nowrap; background: rgba(18,18,24,.95); color: var(--text);
  font-family: var(--font-head); font-size: .82rem; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line);
  opacity: 0; transform: translateX(8px); pointer-events: none; transition: opacity .25s, transform .25s;
}
.wa:hover .wa__label { opacity: 1; transform: translateX(0); }
@media (max-width: 560px) { .wa__label { display: none; } }

/* ===== Back to top ===== */
.to-top {
  position: fixed; right: 24px; bottom: 88px; z-index: 60;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface-solid); color: var(--text); font-size: 1.2rem; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s, background .2s;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.to-top:hover { background: #f5f5f7; color: #0b0b0f; border-color: transparent; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* ===== Glass depth — cards float on the ambient background ===== */
.card, .plan, .work, .step, .faq__item, .form {
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 18px 46px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06);
}
.plan--featured { box-shadow: 0 28px 68px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.10); animation: featglow 4.5s ease-in-out infinite; }
@keyframes featglow {
  0%,100% { box-shadow: 0 28px 68px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.10); }
  50% { box-shadow: 0 28px 68px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.14), 0 0 28px rgba(255,255,255,.09); }
}
@media (prefers-reduced-motion: reduce) { .plan--featured { animation: none; } }

/* ===== Newsletter modal (dark glass) ===== */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(4,4,7,.72); backdrop-filter: blur(6px); animation: modalfade .3s var(--ease); }
.modal__card {
  position: relative; z-index: 1; width: 100%; max-width: 420px; text-align: center;
  background: linear-gradient(180deg, rgba(30,30,36,.94), rgba(15,15,19,.96));
  backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 36px 30px 26px; box-shadow: 0 44px 110px rgba(0,0,0,.65);
  animation: modalpop .4s var(--ease);
}
@keyframes modalfade { from { opacity: 0; } }
@keyframes modalpop { from { opacity: 0; transform: translateY(18px) scale(.96); } }
@media (prefers-reduced-motion: reduce) { .modal__backdrop, .modal__card { animation: none; } }
.modal__x { position: absolute; top: 12px; right: 15px; background: none; border: 0; color: var(--muted); font-size: 1.7rem; line-height: 1; cursor: pointer; transition: color .2s; }
.modal__x:hover { color: var(--text); }
.modal__badge { display: inline-block; font-family: var(--font-head); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; margin-bottom: 16px; }
.modal__title { font-size: 1.5rem; margin-bottom: 10px; }
.modal__text { color: var(--muted); font-size: .96rem; margin: 0 0 22px; }
.modal__form { display: flex; gap: 10px; }
.modal__form input { flex: 1; min-width: 0; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 14px; color: var(--text); font-family: var(--font-body); font-size: .95rem; transition: border-color .2s, box-shadow .2s; }
.modal__form input:focus { outline: none; border-color: #d7d7de; box-shadow: 0 0 0 3px rgba(255,255,255,.12); }
.modal__form .btn { flex: none; }
.modal__note { min-height: 1.2em; margin: 12px 0 0; font-size: .88rem; }
.modal__note.is-ok { color: #7ad6b0; }
.modal__note.is-err { color: #e6a3a3; }
.modal__later { display: block; margin: 14px auto 0; background: none; border: 0; color: var(--muted); font-size: .85rem; cursor: pointer; text-decoration: underline; }
.modal__later:hover { color: var(--text); }
@media (max-width: 440px) { .modal__form { flex-direction: column; } .modal__form .btn { width: 100%; } }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .grid--pricing { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .plan--featured { order: -1; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .hero__title, .hero__lead { margin-inline: auto; }
  .hero__cta, .hero__stats { justify-content: center; }
  .grid--services, .grid--quotes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cta__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 68px 0 auto; flex-direction: column; gap: 4px; align-items: stretch;
    background: rgba(11,11,15,.97); backdrop-filter: blur(14px); padding: 18px 24px 26px;
    border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .35s var(--ease); text-align: center;
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { padding: 12px; font-size: 1.05rem; }
  .nav__links .btn { margin-top: 8px; }
  .nav__toggle { display: flex; }
}
@media (max-width: 560px) {
  .grid--services, .grid--work, .grid--quotes, .steps { grid-template-columns: 1fr; }
  .feed { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .hero__stats { gap: 28px; }
  .footer__bar { flex-direction: column; }
}

/* Owner requested: keep effects visible even when OS "reduce motion" is enabled */
@media (prefers-reduced-motion: reduce) {
  .grad { animation: shimmer 7s linear infinite !important; }
  .hero__glow { animation: heropulse 9s ease-in-out infinite !important; }
  .phone { animation: float 6s ease-in-out infinite !important; }
  .phone__float { animation: floatb 6s ease-in-out -3s infinite !important; }
  .marquee__track { animation: marquee 36s linear infinite !important; flex-wrap: nowrap !important; }
  .plan--featured { animation: featglow 4.5s ease-in-out infinite !important; }
  .wa::before { animation: wapulse 2.2s ease-out infinite !important; }
  .hero__scroll span { animation: scrolld 1.6s ease-in-out infinite !important; }
  .cursor-glow { display: block !important; }
  .reveal { transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1) !important; }
  html { scroll-behavior: smooth; }
}
