:root {
  --ink: #15171b;
  --muted: #626a75;
  --paper: #ffffff;
  --soft: #f4f6f9;
  --line: #e3e7ee;
  --dark: #0d1015;
  --dark-2: #151922;
  --blue: #1aa7ff;
  --blue-2: #38d7d0;
  --bronze: #b79968;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(11, 18, 28, .14);
  --shadow-dark: 0 28px 90px rgba(0, 0, 0, .42);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(26,167,255,.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 46%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(227,231,238,.8);
  backdrop-filter: blur(22px);
}
.brand {
  font-family: Outfit, Montserrat, "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
}
.brand span { color: #0677ca; }
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.brand-long {
  max-width: 560px;
  white-space: normal;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #343942;
  font-size: 15px;
}
.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(21,23,27,.06);
}
.site-nav .nav-cta {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 22px;
}

.section,
.page-hero,
.story,
.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}
.section { padding: clamp(64px, 9vw, 118px) 0; }
section[id] { scroll-margin-top: 96px; }
.section-heading {
  display: grid;
  gap: 10px;
  max-width: 800px;
  margin-bottom: 32px;
}
.eyebrow {
  margin: 0;
  color: #0677ca;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: Outfit, Montserrat, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}
.hero h1,
.page-hero h1,
.section h2,
.story h2 {
  margin: 0;
  line-height: .98;
}
.section-heading h2,
.story h2 {
  font-size: clamp(34px, 5vw, 64px);
}
.section-heading p:last-child,
.page-hero p,
.story p,
.about-copy p,
.audience-card p,
.service-card p,
.gallery-card p,
.story-step p,
.price-orientation p {
  color: var(--muted);
}

.button-row,
.section-cta,
.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #061019;
  box-shadow: 0 18px 44px rgba(26,167,255,.25);
}
.button.secondary {
  border-color: rgba(255,255,255,.34);
  color: #fff;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
}
.button.whatsapp {
  background: #fff;
  color: var(--ink);
  border-color: rgba(255,255,255,.4);
}
.button.outline-dark {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

/* Hero: image, copy and floating layers can be swapped without changing JS. */
.hero-3d {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: clamp(28px, 5vw, 70px);
  min-height: min(880px, calc(100vh - 78px));
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(13,16,21,.98), rgba(18,24,33,.96) 50%, rgba(6,14,20,.98));
  color: #fff;
  perspective: 1200px;
}
.hero-3d::after {
  content: "";
  position: absolute;
  inset: auto 0 -32% 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.08));
  pointer-events: none;
}
.hero-light {
  position: absolute;
  width: 42vw;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(42px);
  opacity: .42;
  pointer-events: none;
}
.hero-light-one {
  top: 4%;
  right: 15%;
  background: radial-gradient(circle, rgba(26,167,255,.55), transparent 62%);
}
.hero-light-two {
  bottom: -14%;
  left: 5%;
  background: radial-gradient(circle, rgba(183,153,104,.26), transparent 62%);
}
.hero-grid {
  position: absolute;
  inset: 14% 16% auto auto;
  width: min(28%, 420px);
  height: 54%;
  opacity: .16;
  transform-origin: right center;
  transform: rotateX(62deg) rotateZ(-12deg);
  background:
    linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 70%, transparent);
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 780px;
}
.hero h1 {
  max-width: 920px;
  font-size: clamp(40px, 6.2vw, 76px);
}
.hero p {
  max-width: 720px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}
.hero .button-row { margin-top: 28px; }
.trust-note {
  margin-top: 20px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}
.hero-stage {
  position: relative;
  z-index: 2;
  align-self: center;
  min-height: 520px;
  transform-style: preserve-3d;
}
.hero-visual {
  position: absolute;
  inset: 5% 0 auto auto;
  width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow-dark);
  transform: translateY(var(--scroll-lift, 0)) rotateY(-11deg) rotateX(4deg) translateZ(40px);
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.38));
}
.hero-visual-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(9,12,18,.6);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(16px);
}
.glass-card {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}
.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 18px;
  border-radius: var(--radius);
}
.floating-card span {
  color: rgba(255,255,255,.66);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.floating-card strong { font-size: 20px; line-height: 1.15; }
.floating-card-top {
  top: 2%;
  left: 0;
  transform: translateY(var(--scroll-lift, 0)) rotateY(16deg) translateZ(90px);
}
.floating-card-bottom {
  right: 4%;
  bottom: 10%;
  transform: translateY(var(--scroll-lift, 0)) rotateY(-10deg) translateZ(120px);
}

.premium-band {
  width: min(var(--max), calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.premium-band > div {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255,255,255,.88);
}
.metric {
  display: block;
  font-family: Outfit, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
  font-weight: 950;
}
.premium-band p { color: var(--muted); margin-bottom: 0; }

.problem-section {
  padding-bottom: clamp(36px, 6vw, 72px);
}
.problem-grid,
.decision-grid,
.deliverables-grid,
.explain-grid {
  display: grid;
  gap: 18px;
}
.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}
.problem-grid article,
.decision-grid article,
.deliverables-grid article,
.explain-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 42px rgba(15, 23, 34, .06);
}
.problem-grid h3,
.decision-grid h3,
.deliverables-grid h3,
.explain-grid h3 {
  margin: 0 0 8px;
  line-height: 1.14;
}
.problem-grid p,
.decision-grid p,
.deliverables-grid p,
.explain-grid p {
  margin: 0;
  color: var(--muted);
}

.showcase-section {
  position: relative;
}
.showcase-section::before,
.audience-section::before {
  content: "";
  position: absolute;
  width: min(34vw, 360px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(26,167,255,.13), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}
.showcase-section::before {
  right: 0;
  top: 12%;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  perspective: 1000px;
}
.real-work-section {
  padding-top: 42px;
}
.editorial-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 410px;
  gap: 12px;
}
.editorial-shot {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #11151a;
  box-shadow: 0 18px 50px rgba(15, 23, 34, .12);
}
.editorial-shot-tall {
  grid-row: auto;
}
.editorial-shot-wide {
  grid-column: auto;
}
.editorial-shot img,
.family-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.editorial-shot:hover img {
  transform: scale(1.025);
}
.editorial-shot figcaption {
  position: absolute;
  inset: auto 10px 10px 10px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(10, 14, 19, .72);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}
.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.portfolio-cta p {
  max-width: 760px;
  margin: 0;
}
.family-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 12px;
  height: min(42vw, 430px);
  margin-bottom: 24px;
}
.family-photo-strip img {
  min-width: 0;
  border-radius: var(--radius);
  background: #11151a;
}
.gallery-card,
.service-card,
.story-step,
.audience-card,
.offer-card,
.quote-panel,
.step-grid article,
.compact-prices article,
.contact-helper,
.mini-freebie,
.contact-option,
.price-card,
.product,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
}
.gallery-card {
  padding: 14px;
  box-shadow: 0 18px 60px rgba(15, 23, 34, .08);
  transform-style: preserve-3d;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gallery-card:hover {
  border-color: rgba(26,167,255,.42);
  box-shadow: 0 30px 90px rgba(15, 23, 34, .16);
}
.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #101216;
}
.image-pair figure {
  position: relative;
  margin: 0;
  background: #111;
}
.image-pair img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  object-position: center;
  background: #101216;
}
.image-pair figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: var(--radius);
  background: rgba(12,15,20,.72);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}
.gallery-card h3 {
  margin: 16px 4px 2px;
  font-size: 23px;
  line-height: 1.14;
}
.gallery-card p { margin: 0 4px 8px; }
.example-notes {
  display: grid;
  gap: 8px;
  margin: 16px 4px 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.example-notes div {
  display: grid;
  gap: 1px;
}
.example-notes dt {
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.example-notes dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.story-steps {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.timeline-3d {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  perspective: 1100px;
}
.story-step {
  position: relative;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateZ(0);
}
.story-step::after {
  content: "";
  position: absolute;
  inset: auto -20% -38% -20%;
  height: 55%;
  background: radial-gradient(circle, rgba(26,167,255,.16), transparent 70%);
}
.story-step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #061019;
  font-weight: 950;
}
.story-step h3 { margin: 24px 0 8px; font-size: 25px; line-height: 1.1; }
.story-step p { margin: 0; }

.service-grid,
.pricing-grid,
.product-grid,
.process,
.offer-detail-grid,
.compact-prices,
.step-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-grid.weighted { grid-template-columns: 1.12fr 1.12fr .82fr; }
.service-card {
  display: grid;
  align-content: start;
  min-height: 275px;
  padding: 28px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(15, 23, 34, .08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  border-color: rgba(26,167,255,.46);
  box-shadow: 0 30px 84px rgba(15, 23, 34, .16);
}
.service-card span,
.process span {
  color: #0677ca;
  font-weight: 950;
}
.service-card h3,
.price-card h3,
.product h3 {
  margin: 16px 0 8px;
  font-size: 26px;
  line-height: 1.12;
}
.service-card.accent {
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(26,167,255,.32), transparent 36%),
    linear-gradient(145deg, #10141c, #07090d);
  border-color: rgba(26,167,255,.24);
}
.service-card.accent p { color: rgba(255,255,255,.74); }
.service-card.priority {
  border-color: rgba(26,167,255,.34);
}
.service-card.supporting {
  opacity: .9;
  background: #f8fafc;
}

.decision-helper {
  padding-top: clamp(46px, 7vw, 86px);
}
.decision-grid {
  grid-template-columns: repeat(3, 1fr);
}
.decision-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
}
.decision-grid strong {
  color: #0677ca;
}
.decision-grid a {
  width: fit-content;
  color: var(--ink);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.premium-about {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(52px, 8vw, 96px);
}

.deliverables-grid {
  grid-template-columns: repeat(5, 1fr);
}
.portrait-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #101216;
  box-shadow: var(--shadow);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.22));
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
}
.about-thomas h2,
.about-copy h2 {
  font-size: clamp(34px, 4.7vw, 60px);
}
.about-copy p:last-child {
  font-size: 20px;
  color: #343b45;
}

.audience-section {
  position: relative;
}
.audience-section::before {
  left: 0;
  top: 8%;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.audience-card {
  padding: 24px;
  box-shadow: 0 12px 46px rgba(15, 23, 34, .06);
}
.audience-card h3 {
  margin: 0 0 8px;
  font-size: 23px;
}
.audience-card p { margin: 0; }

.price-orientation {
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(26,167,255,.24), transparent 32%),
    linear-gradient(145deg, #10141c, #07090d);
  color: #fff;
  box-shadow: var(--shadow-dark);
}
.price-orientation h3 { margin: 0 0 16px; font-size: 28px; }
.price-orientation ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}
.price-orientation li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.price-orientation strong {
  color: #fff;
  font-size: 22px;
}
.price-orientation p { color: rgba(255,255,255,.68); margin: 0; }
.premium-price { max-width: 900px; }

.leadmagnet-3d {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(34px, 6vw, 62px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 10%, rgba(26,167,255,.28), transparent 36%),
    radial-gradient(circle at 8% 90%, rgba(183,153,104,.18), transparent 34%),
    linear-gradient(145deg, #10141c, #07090d);
  color: #fff;
  box-shadow: var(--shadow-dark);
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.final-cta h2 {
  font-size: clamp(30px, 4.4vw, 56px);
}
.final-cta p {
  max-width: 720px;
  color: var(--muted);
}
.freebie:not(.leadmagnet-3d) {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: clamp(34px, 6vw, 56px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 0%, rgba(26,167,255,.22), transparent 34%),
    linear-gradient(145deg, #10141c, #07090d);
  color: #fff;
  box-shadow: var(--shadow-dark);
}
.freebie:not(.leadmagnet-3d) h2 {
  font-size: clamp(30px, 4vw, 50px);
}
.freebie:not(.leadmagnet-3d) p {
  color: rgba(255,255,255,.76);
}
.leadmagnet-3d h2 {
  max-width: 760px;
  font-size: clamp(32px, 5vw, 58px);
}
.leadmagnet-3d p {
  max-width: 720px;
  color: rgba(255,255,255,.76);
}
.pdf-mockup {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
  perspective: 900px;
}
.pdf-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  width: min(100%, 280px);
  min-height: 350px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255,255,255,.94), rgba(234,243,250,.86)),
    #fff;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
  transform: rotateY(-15deg) rotateX(8deg);
}
.pdf-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(26,167,255,.72), transparent 46%),
    linear-gradient(180deg, #101216, #2f3845);
  opacity: .96;
}
.pdf-card span,
.pdf-card strong,
.pdf-card p {
  position: relative;
  z-index: 1;
}
.pdf-card span {
  color: var(--blue);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 13px;
}
.pdf-card strong {
  max-width: 180px;
  color: #fff;
  font-family: Outfit, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}
.pdf-card p {
  color: rgba(255,255,255,.72);
  margin: 12px 0 0;
}
.pdf-shadow {
  position: absolute;
  width: 260px;
  height: 70px;
  bottom: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,.32);
  filter: blur(22px);
}
.mailchimp-signup {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(190px, 1fr) auto;
  gap: 12px;
  align-items: end;
  width: min(100%, 780px);
  margin-top: 24px;
}
.mailchimp-signup label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
input, select, textarea {
  width: 100%;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}
.mailchimp-signup input {
  background: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.2);
}
.mailchimp-signup .button { white-space: nowrap; }
.mailchimp-signup p,
.checkbox-field {
  grid-column: 1 / -1;
}
.mailchimp-signup.compact {
  grid-template-columns: 1fr;
  margin-top: 14px;
}
.mailchimp-signup.compact label,
.mailchimp-signup.compact .checkbox-field {
  color: var(--ink);
}
.mailchimp-signup.compact p {
  color: var(--muted);
  font-size: 14px;
}
.checkbox-field {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  line-height: 1.35;
}
.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}
.mailchimp-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.page-hero {
  padding: clamp(70px, 10vw, 128px) 0 44px;
}
.shop-hero {
  padding: clamp(48px, 7vw, 86px) 0 24px;
}
.contact-hero { padding: clamp(52px, 8vw, 92px) 0 26px; }
.page-hero h1 {
  max-width: 960px;
  font-size: clamp(38px, 6vw, 72px);
}
.page-hero p {
  max-width: 760px;
  font-size: 18px;
}
.decision-strip,
.inquiry-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.decision-strip { padding-top: 34px; }
.decision-strip article,
.quote-panel,
.step-grid article,
.compact-prices article,
.contact-helper,
.mini-freebie {
  padding: 26px;
}
.decision-strip article.dark {
  color: #fff;
  background: var(--dark);
}
.decision-strip article.dark p { color: rgba(255,255,255,.72); }
.decision-strip h2,
.quote-panel h3,
.contact-helper h2 {
  margin: 0 0 10px;
  line-height: 1.08;
}
.decision-strip strong,
.compact-prices strong,
.quote-panel strong {
  display: block;
  margin-top: 14px;
  font-size: 22px;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.feature-list span {
  padding: 10px 13px;
  border-radius: var(--radius);
  background: var(--soft);
}
.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.split > *,
.contact-layout > * {
  min-width: 0;
}
.process { grid-template-columns: repeat(4, 1fr); }
.process article { padding: 26px; }
.step-grid { grid-template-columns: repeat(4, 1fr); }
.step-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #061019;
  font-weight: 950;
}
.compact-prices,
.offer-detail-grid { grid-template-columns: repeat(3, 1fr); }
.offer-card {
  display: grid;
  gap: 12px;
  align-content: start;
}
.offer-card h3 { margin: 0; font-size: 26px; line-height: 1.12; }
.offer-card strong { font-size: 32px; }
.offer-card p,
.offer-card li { color: var(--muted); }
.offer-card.featured {
  border-color: rgba(26,167,255,.5);
  box-shadow: var(--shadow);
}
.subtle {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.slider-demo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}
.slide-base,
.slide-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 28px;
  color: #fff;
  font-size: 28px;
  font-weight: 950;
}
.slide-base {
  background: radial-gradient(circle at 50% 24%, #d6dce2 0 8%, transparent 9%), linear-gradient(140deg, #454951, #16191e);
}
.slide-overlay {
  width: 55%;
  border-right: 3px solid #fff;
  background: linear-gradient(120deg, rgba(26,167,255,.95), rgba(26,167,255,.08) 42%, transparent), radial-gradient(circle at 50% 24%, #f0f8ff 0 8%, transparent 9%), linear-gradient(140deg, #1b2530, #071018);
}
.slider-demo input {
  position: absolute;
  inset: auto 24px 24px;
  width: calc(100% - 48px);
  accent-color: var(--blue);
}
.product-grid { grid-template-columns: repeat(4, 1fr); }
.product,
.price-card { padding: 26px; }
.product strong { color: #0677ca; }
.shop-nav-band {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 0 12px;
}
.shop-nav-band a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  color: #333943;
  font-weight: 900;
  box-shadow: 0 10px 34px rgba(15, 23, 34, .05);
}
.shop-category {
  padding-top: clamp(38px, 5vw, 64px);
}
.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.shop-product-grid.two {
  grid-template-columns: 1.15fr .85fr;
}
.shop-product-card,
.shop-freebie-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 60px rgba(15, 23, 34, .08);
}
.shop-product-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
}
.shop-product-card.featured {
  border-color: rgba(26,167,255,.34);
}
.shop-product-card.dark {
  color: #fff;
  background:
    radial-gradient(circle at 88% 0%, rgba(26,167,255,.28), transparent 34%),
    linear-gradient(145deg, #10141c, #07090d);
  border-color: rgba(26,167,255,.24);
  box-shadow: var(--shadow-dark);
}
.shop-product-card.quiet {
  background: #f8fafc;
}
.shop-product-card h3,
.shop-freebie-card h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.05;
}
.shop-product-card strong {
  display: block;
  color: #0677ca;
  font-size: 28px;
  line-height: 1;
}
.shop-product-card.dark strong,
.shop-product-card.dark p,
.shop-product-card.dark dd,
.shop-product-card.dark li {
  color: rgba(255,255,255,.76);
}
.shop-product-card p,
.shop-product-card dd,
.shop-product-card li,
.shop-freebie-card p,
.shop-freebie-card li {
  color: var(--muted);
}
.shop-product-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}
.shop-product-card dt {
  color: inherit;
  font-weight: 950;
}
.shop-product-card dd {
  margin: 0;
}
.shop-product-card ul,
.shop-freebie-card ul {
  margin: 0;
  padding-left: 20px;
}
.product-tag,
.product.upcoming span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(26,167,255,.12);
  color: #0677ca;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.shop-freebie-card {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 100% 0%, rgba(26,167,255,.14), transparent 34%),
    rgba(255,255,255,.94);
}
.shop-signup {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 46px rgba(15, 23, 34, .08);
}
.trust-note-dark {
  margin-top: 14px;
  font-size: 14px;
}
.mini-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #101216;
}
.mini-before-after img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
}
.upcoming-grid {
  grid-template-columns: repeat(5, 1fr);
}
.product.upcoming {
  display: grid;
  gap: 12px;
  align-content: start;
  background: #f8fafc;
}
.product.upcoming h3 {
  margin: 0;
}
.product.upcoming p {
  margin: 0;
}
.comparison-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 1.45fr .75fr .72fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.comparison-table [role="row"]:last-child {
  border-bottom: 0;
}
.comparison-table span,
.comparison-table strong,
.comparison-table a {
  padding: 16px;
  border-right: 1px solid var(--line);
}
.comparison-table span:last-child,
.comparison-table strong:last-child,
.comparison-table a:last-child {
  border-right: 0;
}
.comparison-head {
  background: var(--dark);
  color: #fff;
  font-weight: 950;
}
.comparison-table a {
  color: #0677ca;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid article { padding: 24px; }
.contact-options,
.inquiry-options { display: grid; gap: 14px; }
.inquiry-options { padding: 28px 0 36px; }
.contact-option { padding: 24px; }
.contact-option span { display: block; color: var(--muted); }
.contact-option.primary-option {
  color: #fff;
  background: var(--dark);
}
.contact-option.primary-option p,
.contact-option.primary-option span { color: rgba(255,255,255,.72); }
.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.contact-layout { padding-top: 28px; }
label { display: grid; gap: 7px; font-weight: 900; }
.form-note { margin: 0; color: var(--muted); font-size: 14px; }
.form-status {
  min-height: 22px;
  margin: 0;
  font-weight: 850;
}
.form-status.is-error { color: #a43b28; }
.form-status.is-success { color: #0677ca; }
.direct-fallback {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.direct-fallback a {
  color: #0677ca;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.lead-form .button { width: 100%; }
.legal-copy {
  max-width: 820px;
  margin: 0 auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.premium-footer {
  margin-top: 28px;
}
.site-footer p { margin: 4px 0 0; color: var(--muted); }
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
  color: #42474d;
}
.footer-links a { text-decoration: underline; text-underline-offset: 3px; }
.sticky-whatsapp {
  display: none;
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 14px;
  z-index: 45;
  min-height: 48px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}

.cookie-notice {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(13,16,21,.94);
  color: #fff;
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}
.cookie-notice.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
}
.cookie-notice strong {
  display: block;
  margin-bottom: 4px;
  font-family: Outfit, Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
}
.cookie-notice p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.45;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-actions a {
  color: rgba(255,255,255,.78);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cookie-settings-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions .button {
  min-height: 42px;
  padding: 10px 14px;
}

/* Animation states controlled by app.js. */
.reveal {
  opacity: 0;
  transform: translateY(22px) translateZ(0);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Conversion-focused business pages */
.conversion-hero .hero-lead {
  max-width: 740px;
  font-size: 19px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.hero-proof li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--blue);
}
.solution-band h2 {
  margin: 8px 0;
  font-size: 24px;
}
.proof-note {
  margin-top: 24px;
  padding: 22px;
  border-left: 3px solid var(--blue);
  background: rgba(255,255,255,.75);
}
.proof-note p { margin-bottom: 0; }
.conversion-page-hero {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.conversion-page-hero p {
  max-width: 850px;
}
.deliverables-grid {
  grid-template-columns: repeat(4, 1fr);
}
.deliverables-grid article {
  padding: 24px;
}
.blog-idea-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-idea-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.blog-idea-grid span {
  color: var(--blue);
  font-weight: 950;
}
.blog-idea-grid h2 {
  margin: 12px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}
.blog-idea-grid p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 1040px) {
  .nav-toggle { display: inline-grid; }
  .site-nav {
    display: none;
    position: absolute;
    inset: 68px 18px auto;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero-3d,
  .premium-band,
  .problem-grid,
  .gallery-grid,
  .editorial-gallery,
  .timeline-3d,
  .service-grid,
  .service-grid.weighted,
  .premium-about,
  .audience-grid,
  .leadmagnet-3d,
  .freebie:not(.leadmagnet-3d),
  .shop-product-grid,
  .shop-product-grid.two,
  .shop-freebie-card,
  .upcoming-grid,
  .decision-grid,
  .deliverables-grid,
  .explain-grid,
  .final-cta,
  .decision-strip,
  .inquiry-options,
  .offer-detail-grid,
  .compact-prices,
  .product-grid,
  .process,
  .step-grid,
  .split,
  .contact-layout,
  .faq-grid,
  .mailchimp-signup {
    grid-template-columns: 1fr;
  }
  .deliverables-grid,
  .blog-idea-grid {
    grid-template-columns: 1fr 1fr;
  }
  .editorial-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 340px;
  }
  .editorial-shot-tall,
  .editorial-shot-wide {
    grid-row: auto;
    grid-column: auto;
  }
  .portfolio-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .family-photo-strip {
    height: 340px;
  }
  .hero-3d {
    min-height: auto;
    padding-top: 64px;
  }
  .hero-stage {
    min-height: 470px;
  }
  .hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
    transform: rotateY(-5deg) rotateX(3deg);
  }
  .floating-card-top { left: 6%; top: 0; }
  .floating-card-bottom { right: 4%; bottom: 0; }
  .premium-band { margin-top: 0; }
  .story-step { min-height: auto; }
  .service-card { min-height: auto; }
  .comparison-table [role="row"] {
    grid-template-columns: 1fr;
  }
  .comparison-table span,
  .comparison-table strong,
  .comparison-table a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .comparison-table [role="row"] > *:last-child {
    border-bottom: 0;
  }
  .comparison-head {
    display: none !important;
  }
  .image-pair img { aspect-ratio: 1.5; }
  .slider-demo { min-height: 420px; }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .cookie-notice {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body { padding-bottom: 70px; }
  .site-header { padding: 14px 18px; }
  .brand { font-size: 17px; }
  .hero-3d {
    padding: 46px 18px 56px;
  }
  .hero-grid { display: none; }
  .hero h1 { font-size: 39px; }
  .hero p { font-size: 16px; }
  .button { width: 100%; }
  .hero-stage { min-height: 390px; }
  .hero-visual img { aspect-ratio: 1 / 1.08; }
  .floating-card {
    min-width: 152px;
    padding: 14px;
  }
  .floating-card strong { font-size: 16px; }
  .floating-card-top { left: 0; }
  .floating-card-bottom { right: 0; bottom: 18px; }
  .section { padding: 58px 0; }
  .gallery-card { padding: 10px; }
  .image-pair { grid-template-columns: 1fr; }
  .editorial-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 250px;
  }
  .editorial-shot-tall {
    grid-row: auto;
  }
  .editorial-shot-wide {
    grid-column: auto;
  }
  .family-photo-strip {
    grid-template-columns: 1fr 1fr;
    height: 280px;
  }
  .family-photo-strip img:last-child {
    display: none;
  }
  .leadmagnet-3d { padding: 26px 18px; }
  .shop-product-card,
  .shop-freebie-card,
  .shop-signup {
    padding: 20px;
  }
  .shop-nav-band a {
    width: 100%;
  }
  .mini-before-after {
    grid-template-columns: 1fr;
  }
  .pdf-mockup { min-height: 310px; }
  .pdf-card {
    width: 230px;
    min-height: 290px;
    transform: rotateY(-9deg) rotateX(5deg);
  }
  .price-orientation li {
    flex-direction: column;
    gap: 3px;
  }
  .sticky-whatsapp { display: none; }
  .hero-proof {
    display: grid;
  }
  .deliverables-grid,
  .blog-idea-grid {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .tilt-card:hover,
  .button:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-visual,
  .floating-card,
  .pdf-card,
  .tilt-card {
    transform: none !important;
  }
}
