/* =========================================================
   QeRetail — Mobile-First Apparel Landing Page
   Editorial fashion ecommerce design system
   ========================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body { font-family: 'Manrope', -apple-system, system-ui, sans-serif; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.55; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
em { font-style: italic; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* QeRetail brand */
  --brand: #367df9;
  --brand-deep: #235fd1;
  --brand-bg: #eaf2ff;

  /* Editorial fashion palette */
  --ink: #0c0c0d;          /* deeper than spec #1a1a1a — editorial */
  --ink-2: #2a2a2c;
  --muted: #6b6f76;
  --muted-2: #93979e;
  --line: #e7e5e0;
  --line-2: #efece5;

  /* Surfaces */
  --bg: #fafaf7;           /* warm off-white — fashion editorial */
  --surface: #ffffff;
  --surface-warm: #f4f1ea; /* sand */
  --surface-stone: #ecebe6;
  --surface-rose: #f5ece4;
  --surface-cream: #f6efe2;
  --surface-ocean: #e6eef4;
  --surface-bronze: #efe7dc;
  --surface-graphite: #1b1a1c;
  --surface-charcoal: #232227;

  /* Type */
  --serif: 'Fraunces', Georgia, serif;

  /* Radius / shadow */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --shadow-1: 0 1px 2px rgba(15,15,20,.05), 0 4px 10px rgba(15,15,20,.04);
  --shadow-2: 0 4px 14px rgba(15,15,20,.06), 0 18px 40px rgba(15,15,20,.08);
  --shadow-3: 0 8px 24px rgba(15,15,20,.08), 0 40px 80px -20px rgba(15,15,20,.18);
  --shadow-phone: 0 30px 60px -20px rgba(12,12,13,.35), 0 12px 30px -10px rgba(54,125,249,.18);

  /* Motion */
  --ease: cubic-bezier(.2,.6,.2,1);
  --t: 320ms;
}

/* ---------- TYPOGRAPHY ---------- */
.section-head__title,
.hero__title,
.freebie__title,
.reasons__title,
.faq__title,
.finalcta__title,
.form-section__title {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
}
em, .em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 768px) { .container { padding: 0 36px; } }
@media (min-width: 1100px) { .container { padding: 0 48px; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn svg { transition: transform var(--t) var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--lg { padding: 16px 26px; font-size: 15.5px; }
.btn--xl { padding: 18px 32px; font-size: 16px; }
.btn--mini { padding: 10px 16px; font-size: 13.5px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 18px -8px rgba(54,125,249,.6); }
.btn--primary:hover { background: var(--brand-deep); transform: translateY(-1px) scale(1.02); box-shadow: 0 14px 28px -10px rgba(54,125,249,.55); }
.btn--ghost { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-1px) scale(1.02); }
.btn--ghost-light { color: #fff; border-color: rgba(255,255,255,.5); background: transparent; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); transform: translateY(-1px) scale(1.02); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--brand-bg); color: var(--brand-deep); transform: translateY(-1px) scale(1.02); box-shadow: 0 12px 28px -10px rgba(0,0,0,.18); }

/* ---------- TOP NAV ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,247,.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
}
.topbar__brand { display: flex; align-items: center; gap: 9px; font-weight: 700; }
.topbar__brand-mark {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--brand);
  position: relative;
  box-shadow: inset 0 -8px 0 rgba(0,0,0,.12);
}
.topbar__brand-mark::after {
  content: ''; position: absolute; inset: 6px;
  border: 2px solid #fff; border-radius: 5px; border-top: 0; border-right: 0;
}
.topbar__brand-name { font-size: 17px; letter-spacing: -0.02em; }
.topbar__brand-name span { color: var(--brand); }
.topbar__links { display: none; gap: 26px; }
.topbar__links a { font-size: 14px; color: var(--ink-2); transition: color var(--t) var(--ease); }
.topbar__links a:hover { color: var(--brand); }
@media (min-width: 880px) {
  .topbar__links { display: flex; }
  .topbar__inner { padding: 16px 36px; }
}
@media (min-width: 1100px) { .topbar__inner { padding: 18px 48px; } }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 60px;
  background:
    radial-gradient(900px 480px at 88% 12%, rgba(54,125,249,.10), transparent 60%),
    radial-gradient(700px 380px at 8% 88%, rgba(54,125,249,.06), transparent 65%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(12,12,13,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,12,13,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
  padding: 0 22px;
  display: grid; gap: 36px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--brand-bg);
  color: var(--brand-deep);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(54,125,249,.18);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(54,125,249,.18); }
  50%     { box-shadow: 0 0 0 8px rgba(54,125,249,0); }
}
.hero__title {
  font-size: clamp(34px, 7vw, 55px);
  margin-top: 22px;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
}
.hero__title br { display: none; }
@media (min-width: 560px) { .hero__title br { display: inline; } }
.hero__title em { color: var(--brand); }
.hero__sub {
  font-size: clamp(15.5px, 2vw, 18px);
  color: var(--ink-2);
  max-width: 540px;
  margin-top: 22px;
  line-height: 1.6;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  margin-top: 36px;
  max-width: 540px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__trust li { display: flex; flex-direction: column; gap: 4px; }
.hero__trust strong { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.hero__trust span { font-size: 13px; color: var(--muted); line-height: 1.35; }

/* ----- HERO VISUAL ----- */
.hero__visual {
  position: relative;
  min-height: 540px;
  display: flex; align-items: center; justify-content: center;
}
.hero__visual-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(closest-side at 50% 50%, rgba(54,125,249,.18), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.phone--hero {
  position: relative; z-index: 3;
  animation: float 7s ease-in-out infinite;
}
.phone--accent {
  position: absolute;
  right: -10px; bottom: -10px;
  transform: scale(.58) rotate(6deg);
  transform-origin: bottom right;
  z-index: 2; opacity: .96;
  animation: float 9s ease-in-out -2s infinite;
  display: none;
}
@media (min-width: 768px) {
  .phone--accent { display: block; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
.phone--accent { animation-name: floatAccent; }
@keyframes floatAccent {
  0%,100% { transform: scale(.58) rotate(6deg) translateY(0); }
  50%     { transform: scale(.58) rotate(6deg) translateY(-10px); }
}

.floater {
  position: absolute;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-2);
  z-index: 4;
  font-size: 13px;
  display: flex; flex-direction: column; gap: 2px;
}
.floater--tag {
  top: 18%; left: -10px;
  flex-direction: row; align-items: center; gap: 10px;
  animation: floatX 8s ease-in-out infinite;
}
.floater__dot { width: 8px; height: 8px; border-radius: 50%; background: #20c997; box-shadow: 0 0 0 4px rgba(32,201,151,.18); }
.floater__main { font-weight: 600; }
.floater__sub { color: var(--muted); font-size: 12px; }
.floater--tag .floater__main { display: block; }
.floater--tag .floater__sub { display: block; }
.floater--metric {
  bottom: 12%; right: -12px;
  text-align: right;
  animation: floatY 9s ease-in-out -3s infinite;
}
.floater__metric-num { font-size: 24px; font-weight: 700; color: var(--brand); letter-spacing: -0.02em; }
.floater__metric-label { color: var(--muted); font-size: 12px; max-width: 130px; }

@keyframes floatX {
  0%,100% { transform: translate(0, 0); }
  50%     { transform: translate(-6px, -8px); }
}
@keyframes floatY {
  0%,100% { transform: translate(0, 0); }
  50%     { transform: translate(6px, -10px); }
}

@media (min-width: 1024px) {
  .hero { padding: 60px 0 90px; }
  .hero__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero__visual { min-height: 720px; }
}
@media (min-width: 1280px) {
  .hero { padding: 80px 0 110px; }
}

/* =========================================================
   PHONE MOCKUP (reusable)
   ========================================================= */
.phone {
  width: 280px;
  border-radius: 38px;
  background: #0c0c0d;
  padding: 10px 10px 12px;
  box-shadow: var(--shadow-phone);
  position: relative;
}
.phone--hero { width: 300px; }
.phone--port { width: 100%; max-width: 260px; margin: 0 auto; }
.phone__notch {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 22px;
  background: #0c0c0d;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.phone__notch::after {
  content: ''; position: absolute;
  right: 14px; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #1a1a1d;
  box-shadow: -28px 0 0 #1a1a1d;
}
.phone__screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 19;
}

@media (min-width: 1024px) {
  .phone--hero { width: 320px; }
}

/* =========================================================
   STOREFRONT UI (inside phone mockups)
   ========================================================= */
.sf {
  display: flex; flex-direction: column;
  width: 100%; height: 100%;
  background: #fff;
  color: #15151a;
  font-size: 9px;
}
.sf__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 16px 4px;
  height: 30px;
}
.sf__bar-time { font-size: 9px; font-weight: 600; }
.sf__bar-dot { width: 4px; height: 4px; border-radius: 50%; background: #0c0c0d; opacity: .85; }

.sf__nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 12px 10px;
  border-bottom: 1px solid #f0eee9;
}
.sf__nav--compact { padding: 10px 12px; border-bottom: 1px solid #f0eee9; justify-content: center; }
.sf__nav-burger { display: flex; flex-direction: column; gap: 2.5px; width: 14px; }
.sf__nav-burger i { display: block; width: 100%; height: 1px; background: #0c0c0d; }
.sf__nav-logo {
  font-weight: 700; font-size: 10px; letter-spacing: 0.18em;
  font-family: var(--serif);
  font-style: italic;
}
.sf__nav-icons { display: flex; gap: 8px; color: #0c0c0d; }
.sf__nav-icons svg { width: 12px; height: 12px; }

.sf__hero {
  position: relative;
  height: 130px;
  background-size: cover; background-position: center;
  color: #fff;
}
.sf__hero--tall { height: 150px; }
.sf__hero-overlay {
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  padding: 14px 12px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 6px;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.45));
}
.sf__hero-overlay--bottom { justify-content: flex-end; }
.sf__hero-eyebrow {
  font-size: 7px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  padding: 3px 6px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.4); border-radius: 4px;
}
.sf__hero-title {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 15px; line-height: 1.05;
  letter-spacing: -0.01em;
}
.sf__hero-title--sm { font-size: 12px; }
.sf__hero-cta {
  margin-top: 4px;
  padding: 5px 10px;
  background: #fff; color: #0c0c0d;
  font-size: 7.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px;
}

.sf__pills {
  display: flex; gap: 6px; padding: 10px 12px 8px;
  overflow-x: auto;
  border-bottom: 1px solid #f4f3ef;
}
.sf__pill {
  font-size: 8px; padding: 4px 9px;
  border-radius: 999px;
  background: #f6f4ee; color: #5b5b5f;
  font-weight: 500; letter-spacing: 0.04em;
  white-space: nowrap;
}
.sf__pill--on { background: #0c0c0d; color: #fff; }

.sf__grid { padding: 10px; display: grid; gap: 10px; }
.sf__grid--2 { grid-template-columns: 1fr 1fr; }

.sf__card { position: relative; }
.sf__card-img {
  display: block;
  width: 100%; aspect-ratio: 3/4;
  background-size: cover; background-position: center;
  border-radius: 6px;
}
.sf__card-name { font-size: 8.5px; margin-top: 5px; color: #0c0c0d; font-weight: 500; line-height: 1.2; }
.sf__card-price { font-size: 8.5px; color: #5b5b5f; margin-top: 1px; font-weight: 600; }
.sf__card-tag {
  position: absolute; top: 5px; left: 5px;
  background: #0c0c0d; color: #fff;
  padding: 2px 5px; font-size: 6.5px; font-weight: 700;
  letter-spacing: 0.1em; border-radius: 3px;
}

/* Editorial variant subtle accent */
.sf--editorial .sf__hero-title { letter-spacing: -0.015em; }

/* Menswear: cooler accent */
.sf--menswear { background: #f9f8f6; }
.sf--menswear .sf__nav-logo { font-family: 'Manrope'; font-style: normal; letter-spacing: 0.25em; font-weight: 800; font-size: 9px; }

/* Mono / atelier variant */
.sf--mono { background: #fafaf8; }
.sf--mono .sf__hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.55)); }

/* ---------- BEFORE storefront (intentionally crowded) ---------- */
.sf--before { background: #fff; font-family: Arial, sans-serif; }
.sf-b__alert {
  background: #ff3b3b; color: #fff; font-size: 7px; font-weight: 700;
  text-align: center; padding: 4px 6px; letter-spacing: 0.05em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sf-b__nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 8px; background: #ffec85; border-bottom: 2px solid #000;
}
.sf-b__burger { font-size: 14px; font-weight: 900; }
.sf-b__logo {
  font-size: 9px; font-weight: 900; letter-spacing: 0; color: #d40000;
  text-shadow: 1px 1px 0 #000;
}
.sf-b__icons { font-size: 10px; }
.sf-b__sale {
  background: #000; color: #ffec00;
  font-size: 8px; font-weight: 900; text-align: center;
  padding: 4px 6px; letter-spacing: 0.02em;
}
.sf-b__pills {
  display: flex; gap: 3px; padding: 5px 6px;
  overflow-x: auto; background: #f5f5f5;
  border-bottom: 1px solid #ccc;
}
.sf-b__pills span {
  font-size: 7px; padding: 3px 5px; background: #fff;
  border: 1px solid #999; color: #c00; font-weight: 800;
  white-space: nowrap;
}
.sf-b__banner {
  margin: 4px 6px; padding: 6px;
  background: linear-gradient(90deg, #ff3b3b, #ff9100);
  color: #fff; font-weight: 900; font-size: 8px;
  display: flex; gap: 6px; align-items: center;
  border: 2px solid #ffec00; border-radius: 0;
  letter-spacing: 0.02em;
}
.sf-b__banner-tag { background: #ffec00; color: #c00; padding: 2px 4px; font-size: 7px; }
.sf-b__grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3px; padding: 4px 6px;
}
.sf-b__prod { font-size: 7px; }
.sf-b__prod-img {
  display: block; width: 100%; aspect-ratio: 3/4;
  background-size: cover; background-position: center;
  border: 1px solid #ddd;
}
.sf-b__prod-name {
  font-size: 6.5px; line-height: 1.2; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-weight: 600;
}
.sf-b__prod-price {
  font-size: 6.5px; color: #c00; font-weight: 800; margin-top: 1px;
}
.sf-b__prod-price s { color: #999; font-weight: 500; margin-right: 3px; }
.sf-b__popup {
  position: absolute; left: 6px; right: 6px; bottom: 6px;
  background: #c00; color: #fff;
  padding: 6px 8px; font-size: 7.5px; font-weight: 900;
  display: flex; justify-content: space-between; align-items: center;
  border: 2px solid #ffec00;
}

/* =========================================================
   FORM SECTION
   ========================================================= */
.form-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--bg), var(--surface-stone));
}
.form-section__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 22px;
  display: grid; gap: 36px;
}
.form-section__eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brand);
  padding: 6px 12px; background: var(--brand-bg); border-radius: 999px;
}
.form-section__title {
  font-size: clamp(30px, 6vw, 56px);
  margin-top: 18px;
  overflow-wrap: break-word;
}
.form-section__title br { display: none; }
@media (min-width: 560px) { .form-section__title br { display: inline; } }
.form-section__title em { color: var(--brand); }
.form-section__sub {
  color: var(--ink-2); font-size: 16px;
  margin-top: 18px; max-width: 520px; line-height: 1.6;
}
.form-section__list { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.form-section__list li { display: flex; align-items: center; gap: 12px; color: var(--ink-2); font-size: 15px; }
.check {
  flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.check::after {
  content: '';
  width: 9px; height: 5px;
  border-left: 1.8px solid #fff; border-bottom: 1.8px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

/* Lead form */
.lead-form {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 26px 22px;
  box-shadow: var(--shadow-3);
  border: 1px solid var(--line);
  position: relative;
}
.lead-form__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand-deep);
  background: var(--brand-bg);
  padding: 6px 11px; border-radius: 999px;
}
.lead-form__tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.lead-form__title {
  font-size: clamp(22px, 4vw, 28px); font-weight: 700;
  margin: 14px 0 18px;
  letter-spacing: -0.02em;
}
.lead-form__field {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 14px;
}
.lead-form__field label {
  font-size: 12.5px; font-weight: 600;
  color: var(--ink-2); letter-spacing: 0.02em;
}
.lead-form__field input {
  height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.lead-form__field input::placeholder { color: var(--muted-2); }
.lead-form__field input:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(54,125,249,.16);
}
.lead-form__note {
  margin-top: 12px;
  font-size: 12.5px; color: var(--muted);
  text-align: center;
}

@media (min-width: 960px) {
  .form-section { padding: 90px 0 110px; }
  .form-section__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 60px; align-items: center;
  }
  .lead-form { padding: 32px 30px; }
}

/* =========================================================
   SECTION HEAD (shared)
   ========================================================= */
.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brand);
  padding: 6px 12px; background: var(--brand-bg); border-radius: 999px;
}
.section-head__title {
  font-size: clamp(28px, 5.5vw, 56px);
  margin-top: 18px;
  overflow-wrap: break-word;
}
.section-head__title br { display: none; }
@media (min-width: 560px) { .section-head__title br { display: inline; } }
.section-head__title em { color: var(--brand); }
.section-head__sub {
  color: var(--ink-2); font-size: 16px;
  margin-top: 16px; line-height: 1.6;
}

/* =========================================================
   WHY US
   ========================================================= */
.why { padding: 80px 0 60px; background: var(--bg); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.why__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.why__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); border-color: rgba(54,125,249,.4); }
.why__num {
  display: inline-block; font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--brand); margin-bottom: 12px;
  font-weight: 500;
}
.why__card h3 {
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.015em; margin-bottom: 10px;
}
.why__card p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.why__card--feature {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.why__card--feature h3 { color: #fff; }
.why__card--feature p { color: rgba(255,255,255,.7); }
.why__card--feature .why__num { color: var(--brand); }
.why__card--accent {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.why__card--accent h3, .why__card--accent p { color: #fff; }
.why__card--accent p { color: rgba(255,255,255,.85); }
.why__card--accent .why__num { color: #fff; opacity: .8; }

@media (min-width: 720px) { .why__grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (min-width: 1024px) {
  .why { padding: 110px 0 90px; }
  .why__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .why__card { padding: 32px 28px; }
  .why__card h3 { font-size: 22px; }
}

/* =========================================================
   BEFORE / AFTER
   ========================================================= */
.ba {
  padding: 90px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ba::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 90% 10%, rgba(54,125,249,.18), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(54,125,249,.08), transparent 65%);
  pointer-events: none;
}
.section-head__title--light { color: #fff; }
.section-head__title--light em { color: var(--brand); }
.section-head__sub--light { color: rgba(255,255,255,.66); }
.ba__eyebrow { background: rgba(255,255,255,.08); color: #fff; }
.ba__stage {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-items: start;
}
.ba__col { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.ba__label { text-align: center; }
.ba__label-tag {
  display: inline-block;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,80,80,.16); color: #ff8c8c;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ba__label-tag--after { background: rgba(80,210,150,.16); color: #6ee0a8; }
.ba__label h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.ba__label p { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 6px; }
.phone--before, .phone--after { width: 270px; }
.phone--before { transform: rotate(-2deg); }
.phone--after { transform: rotate(2deg); box-shadow: 0 30px 60px -20px rgba(12,12,13,.6), 0 0 0 2px rgba(54,125,249,.4), 0 12px 60px -10px rgba(54,125,249,.5); }
.ba__issues { display: flex; flex-direction: column; gap: 8px; max-width: 280px; }
.ba__issues li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.75); }
.ba__cross, .ba__check {
  flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%; position: relative;
}
.ba__cross { background: rgba(255,80,80,.18); }
.ba__cross::before, .ba__cross::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 8px; height: 1.6px;
  background: #ff8c8c; transform: translate(-50%,-50%) rotate(45deg);
}
.ba__cross::after { transform: translate(-50%,-50%) rotate(-45deg); }
.ba__check { background: rgba(80,210,150,.18); }
.ba__check::after {
  content: ''; position: absolute; left: 4px; top: 4px;
  width: 8px; height: 4px;
  border-left: 1.6px solid #6ee0a8; border-bottom: 1.6px solid #6ee0a8;
  transform: rotate(-45deg);
}
.ba__divider {
  display: flex; justify-content: center; align-items: center;
  margin: -10px 0;
}
.ba__divider-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -10px rgba(54,125,249,.6);
  transform: rotate(90deg);
}
@media (min-width: 960px) {
  .ba__stage { grid-template-columns: 1fr auto 1fr; gap: 30px; }
  .ba__divider-arrow { transform: rotate(0); }
  .phone--before, .phone--after { width: 290px; }
}

/* =========================================================
   PAIN POINTS
   ========================================================= */
.pain { padding: 100px 0; background: var(--surface-stone); }
.pain__grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
.pain__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.pain__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); border-color: rgba(54,125,249,.4); }
.pain__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-bg); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pain__card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 8px; }
.pain__card p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
@media (min-width: 720px) { .pain__grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (min-width: 1024px) { .pain__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } .pain__card { padding: 32px 28px; } }

/* =========================================================
   FREEBIE
   ========================================================= */
.freebie {
  padding: 100px 0;
  background:
    radial-gradient(700px 360px at 100% 0%, rgba(54,125,249,.08), transparent 60%),
    var(--bg);
}
.freebie__inner { display: grid; gap: 50px; }
.freebie__eyebrow { background: var(--brand); color: #fff; }
.freebie__title { font-size: clamp(30px, 6vw, 56px); letter-spacing: -0.025em; overflow-wrap: break-word; }
.freebie__title br { display: none; }
@media (min-width: 560px) { .freebie__title br { display: inline; } }
.freebie__title em { color: var(--brand); }
.freebie__sub { color: var(--ink-2); font-size: 16.5px; margin: 18px 0 28px; max-width: 520px; line-height: 1.55; }
.freebie__list { display: grid; grid-template-columns: 1fr; gap: 14px; }
.freebie__list li {
  display: flex; gap: 16px;
  background: #fff;
  padding: 22px 22px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.freebie__list li:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.freebie__num {
  flex: 0 0 auto; font-family: var(--serif); font-style: italic;
  font-size: 24px; color: var(--brand); font-weight: 500;
  letter-spacing: -0.02em; line-height: 1;
}
.freebie__list h4 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.freebie__list p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

@media (min-width: 900px) {
  .freebie__inner { grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .freebie__list { gap: 12px; }
}

/* =========================================================
   SERVICES / PRICING
   ========================================================= */
.services { padding: 100px 0; background: var(--surface-warm); }
.services__grid {
  display: grid; gap: 18px; grid-template-columns: 1fr;
}
.pkg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  position: relative;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  display: flex; flex-direction: column; gap: 24px;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.pkg__tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  background: var(--line-2);
  padding: 5px 10px; border-radius: 999px;
}
.pkg__tag--light { background: rgba(255,255,255,.16); color: rgba(255,255,255,.85); }
.pkg__title {
  font-size: 24px; font-weight: 700;
  margin-top: 14px; letter-spacing: -0.02em;
}
.pkg__title--light { color: #fff; }
.pkg__sub {
  color: var(--ink-2); font-size: 14.5px;
  margin-top: 8px; line-height: 1.5;
}
.pkg__sub--light { color: rgba(255,255,255,.75); }
.pkg__price {
  display: flex; align-items: baseline; gap: 4px;
  padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.pkg__price--light { border-bottom-color: rgba(255,255,255,.15); }
.pkg__currency { font-size: 22px; font-weight: 600; color: var(--ink-2); }
.pkg__price--light .pkg__currency { color: rgba(255,255,255,.7); }
.pkg__amount {
  font-size: 56px; font-weight: 700;
  letter-spacing: -0.04em; color: var(--ink);
}
.pkg__price--light .pkg__amount { color: #fff; }
.pkg__list { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pkg__list li {
  display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-2); align-items: flex-start;
}
.pkg__list--light li { color: rgba(255,255,255,.85); }
.pkg__list li::before {
  content: '';
  flex: 0 0 16px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--brand-bg);
  background-image:
    linear-gradient(45deg, transparent 40%, var(--brand) 40%, var(--brand) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 40%, var(--brand) 40%, var(--brand) 70%, transparent 70%);
  background-size: 7px 7px, 9px 9px;
  background-position: 5px 6px, 3.5px 4px;
  background-repeat: no-repeat;
  margin-top: 2px;
}
.pkg__list--light li::before {
  background-color: rgba(255,255,255,.2);
}
.pkg--feature {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
}
.pkg--feature:hover { transform: translateY(-12px); }
.pkg__ribbon {
  position: absolute; top: -14px; right: 22px;
  background: var(--brand); color: #fff;
  padding: 7px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  box-shadow: 0 10px 24px -8px rgba(54,125,249,.6);
}

@media (min-width: 980px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
  .pkg { padding: 36px 30px; }
}

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio { padding: 100px 0; background: var(--bg); }
.portfolio__grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
.port {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px 22px 30px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.port:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.port__head { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; }
.port__num {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--brand); font-weight: 500;
  padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px;
  flex: 0 0 auto;
}
.port__brand {
  font-size: 19px; font-weight: 700; letter-spacing: 0.02em;
  font-family: var(--serif); font-style: italic; padding-top: 25px;
}
.port__cat { font-size: 13px; color: var(--muted); margin-top: 2px; }
.port__phone-wrap {
  border-radius: var(--r-xl);
  padding: 26px 14px 22px;
  display: flex; justify-content: center;
}
.port__phone-wrap--rose { background: var(--surface-rose); }
.port__phone-wrap--stone { background: var(--surface-stone); }
.port__phone-wrap--charcoal { background: var(--surface-charcoal); }
.port__phone-wrap--charcoal + * { color: #fff; }
.port__phone-wrap--ocean { background: var(--surface-ocean); }
.port__phone-wrap--cream { background: var(--surface-cream); }
.port__phone-wrap--bronze { background: var(--surface-bronze); }
.port__phone-wrap--graphite { background: var(--surface-graphite); }

@media (min-width: 720px) { .portfolio__grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
@media (min-width: 1100px) {
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .port { padding: 30px 26px 34px; }
}

/* =========================================================
   REASONS (stats)
   ========================================================= */
.reasons { padding: 100px 0; background: var(--ink); color: #fff; }
.reasons__inner { display: grid; gap: 50px; }
.reasons__title {
  font-size: clamp(30px, 6vw, 58px);
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
}
.reasons__title br { display: none; }
@media (min-width: 560px) { .reasons__title br { display: inline; } }
.reasons__title em { color: var(--brand); }
.reasons__cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px 22px;
}
.reasons__stat-num {
  display: block;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--brand);
  font-family: var(--serif); font-style: italic;
}
.reasons__stat-label {
  font-size: 14.5px; color: rgba(255,255,255,.7);
  margin-top: 8px; line-height: 1.5;
  max-width: 240px;
}
@media (min-width: 900px) {
  .reasons__inner { grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
  .reasons__cols { grid-template-columns: 1fr 1fr; gap: 50px 40px; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { padding: 100px 0; background: var(--surface-stone); }
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.t-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  position: relative;
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.t-card::before {
  content: '”';
  position: absolute; top: 12px; right: 22px;
  font-size: 80px; line-height: 1;
  font-family: var(--serif); font-style: italic;
  color: var(--brand-bg);
}
.t-card__quote {
  font-size: 17px; line-height: 1.5; color: var(--ink);
  font-family: var(--serif); font-style: italic;
  letter-spacing: -0.01em;
  position: relative; z-index: 2;
}
.t-card__person { display: flex; gap: 12px; align-items: center; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.t-card__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background-size: cover; background-position: center;
  background-color: var(--brand-bg);
  flex: 0 0 46px;
  position: relative;
  overflow: hidden;
}
.t-card__avatar--01 { background: linear-gradient(135deg, #f7c8b0, #c98a6e); }
.t-card__avatar--02 { background: linear-gradient(135deg, #c8d4e6, #5a6f8a); }
.t-card__avatar--03 { background: linear-gradient(135deg, #ecd6b0, #b7945c); }
.t-card__name { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.t-card__role { font-size: 13px; color: var(--muted); margin-top: 2px; }
.t-card--feature {
  background: var(--ink); border-color: var(--ink);
}
.t-card--feature .t-card__quote { color: #fff; }
.t-card--feature .t-card__name { color: #fff; }
.t-card--feature .t-card__role { color: rgba(255,255,255,.65); }
.t-card--feature .t-card__person { border-top-color: rgba(255,255,255,.12); }
.t-card--feature::before { color: rgba(54,125,249,.35); }
@media (min-width: 900px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 100px 0; background: var(--bg); }
.faq__inner { display: grid; gap: 50px; }
.faq__title { font-size: clamp(30px, 6vw, 56px); letter-spacing: -0.025em; overflow-wrap: break-word; }
.faq__title br { display: none; }
@media (min-width: 560px) { .faq__title br { display: inline; } }
.faq__title em { color: var(--brand); }
.faq__sub { color: var(--ink-2); font-size: 16px; margin: 18px 0 28px; line-height: 1.55; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0 22px;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.faq__item[open] { border-color: rgba(54,125,249,.35); box-shadow: var(--shadow-1); }
.faq__item summary {
  list-style: none; cursor: pointer;
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  width: 18px; height: 18px;
  background:
    linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 12px no-repeat;
  color: var(--brand);
  transition: transform var(--t) var(--ease);
  flex: 0 0 auto;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body {
  padding-bottom: 22px;
  color: var(--ink-2);
  font-size: 15px; line-height: 1.6;
  max-width: 620px;
}
@media (min-width: 900px) {
  .faq__inner { grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.finalcta {
  padding: 110px 0;
  background:
    radial-gradient(900px 600px at 50% 0%, rgba(54,125,249,.16), transparent 65%),
    var(--ink);
  color: #fff;
  text-align: center;
}
.finalcta__inner { max-width: 880px; margin: 0 auto; }
.finalcta__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brand);
  padding: 6px 12px; background: rgba(54,125,249,.18); border-radius: 999px;
}
.finalcta__title {
  font-size: clamp(30px, 7vw, 72px);
  margin-top: 20px;
  letter-spacing: -0.03em;
  color: #fff;
  overflow-wrap: break-word;
}
.finalcta__title br { display: none; }
@media (min-width: 560px) { .finalcta__title br { display: inline; } }
.finalcta__title em { color: var(--brand); }
.finalcta__sub { color: rgba(255,255,255,.7); font-size: 17px; margin-top: 22px; }
.finalcta__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.finalcta__trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px;
  margin-top: 34px;
  font-size: 13px; color: rgba(255,255,255,.55);
  font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.finalcta__trust li { display: flex; align-items: center; gap: 8px; }
.finalcta__trust li + li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.3); margin-right: 14px;
  display: inline-block;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,.08); }
.footer__inner { display: grid; gap: 40px; grid-template-columns: 1fr; }
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__brand .topbar__brand-name { color: #fff; }
.footer__tag { font-size: 14px; color: rgba(255,255,255,.55); max-width: 320px; line-height: 1.5; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer__h { font-size: 13px; color: #fff; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: color var(--t) var(--ease); }
.footer ul li a:hover { color: var(--brand); }
.footer__bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,.4);
}
@media (min-width: 800px) {
  .footer__inner { grid-template-columns: 1.2fr 2fr; gap: 60px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .phone--hero, .phone--accent, .floater--tag, .floater--metric, .hero__eyebrow-dot { animation: none; }
}

/* =========================================================
   PORTFOLIO SLIDER & LIGHTBOX ADDITIONS
   ========================================================= */

/* --- Slider Layout --- */
.portfolio__slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
}

.portfolio__slider {
  display: flex;
  transition: transform 0.4s ease-in-out;
  /* Flex basis makes sure articles can sit side-by-side */
}

.portfolio__slider > .port {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .portfolio__slider > .port {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .portfolio__slider > .port {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

/* --- Slider Navigation --- */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a1a1a;
  transition: all 0.2s ease;
}

.slider-btn:hover {
  background: #f8f8f8;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transform: translateY(-50%) scale(1.05);
}

.slider-btn--prev { left: 16px; }
.slider-btn--next { right: 16px; }

.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%);
  box-shadow: none;
}

/* --- Lightbox / Zoom Mode --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 12, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.2s ease;
}

.lightbox__close:hover {
  transform: scale(1.1);
}

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.is-open .lightbox__img {
  transform: scale(1);
}

@media (max-width: 500px) {
  .topbar__partner-text {
    display: none;
  }
}
