﻿/* =============================================
   Website Factory — styles.css
   Template: BaseX (adapted for multi-business use)
   Primary colour: teal #0CB1B2 (Pixel Borough brand) in config.
   ============================================= */

/* ---- Custom Properties ---- */
:root {
  /* ── Brand palette (Pixel Borough logo) ── */
  --teal:         #0CB1B2;   /* main teal / primary          */
  --teal-mid:     #02878D;   /* deep teal shadow             */
  --teal-dark:    #045B61;   /* dark teal depth              */
  --navy:         #02070B;   /* near-black logo background   */
  --silver-hi:    #E6E8EA;   /* bright silver highlight      */
  --silver-mid:   #C7CCD0;   /* mid silver gradient          */
  --gunmetal:     #505558;   /* dark gunmetal bevel          */

  /* ── Site tokens ── */
  --primary:      #0CB1B2;
  --primary-dark: color-mix(in srgb, var(--primary), #000 20%);
  --primary-glow: color-mix(in srgb, var(--primary), transparent 65%);
  --dark:         #1A1A1A;
  --dark-2:       #252525;
  --cream:        color-mix(in srgb, var(--primary), #fff 95%);
  --cream-2:      color-mix(in srgb, var(--primary), #fff 90%);
  --white:        #FFFFFF;
  --silver-bg:    #F0F2F5;   /* silvery page background      */
  --text:         #3A3A3A;
  --text-muted:   #737373;
  --border:       rgba(0, 0, 0, 0.08);
  --shadow:       0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-md:    0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg:    0 16px 56px rgba(0, 0, 0, 0.14);
  --radius:       18px;
  --radius-sm:    10px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition:   all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--silver-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--dark);
}

/* ---- Layout ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Helpers ---- */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc {
  margin: 0 auto;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 14px auto 0;
  line-height: 1.75;
}

/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ====================================================
   NAVIGATION
   ==================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(12, 12, 12, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

.nav-logo img {
  height: clamp(48px, 6vw, 72px);
  width: auto;
}
.logo-mark { display: none; }


.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: visible;
  background: var(--dark);
  padding-bottom: 240px;
  padding-left: max(5vw, 32px);
}

/* Hero image background — client screenshot fades in behind the hero */
.hero-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  filter: blur(2px) brightness(0.52);
  transform: scale(1.06);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

/* ── Logo fallback background ── */
.hero-logo-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
}
.hero-logo-bg img {
  width: min(200px, 38%);
  opacity: 0.12;
  animation: logoBgPulse 3.5s ease-in-out infinite;
  filter: brightness(0) invert(1);
}
@keyframes logoBgPulse {
  0%, 100% { opacity: 0.10; transform: scale(1);    }
  50%       { opacity: 0.18; transform: scale(1.04); }
}
.hero-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.hero-logo-coming-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  background: rgba(12,177,178,0.15);
  border: 1px solid rgba(12,177,178,0.35);
  color: var(--teal);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-logo-coming-name {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-vid-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(0px) brightness(0.68);
  transform: scale(1.06);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, color-mix(in srgb, var(--primary), transparent 82%) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 15% 80%, color-mix(in srgb, var(--primary), transparent 90%) 0%, transparent 60%),
    linear-gradient(160deg, #0a0a0a 0%, color-mix(in srgb, var(--primary), #000 68%) 55%, #111 100%);
  z-index: 0;
}

/* Subtle dot-grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 1;
  pointer-events: none;
}

/* Hero wash — colour tint that changes per active card */
.hero-wash {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease, background 1.4s ease;
  z-index: 1;
  pointer-events: none;
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 1;
  transition: background 1.4s ease;
}
.hero-orb--1 {
  width: 600px; height: 600px;
  background: rgba(12,177,178,0.12);
  top: -180px; right: -100px;
}
.hero-orb--2 {
  width: 400px; height: 400px;
  background: rgba(99,102,241,0.10);
  bottom: -100px; left: -80px;
}

/* Announcement pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  animation: fadeUp 0.8s ease 0.1s both;
}

/* Decorative rings */
.hero-decor {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.hero-pizza-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--primary), transparent 85%);
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
}
.ring-1 {
  width: 520px; height: 520px;
  animation-delay: 0s;
}
.ring-2 {
  width: 700px; height: 700px;
  animation-delay: 1s;
  border-color: color-mix(in srgb, var(--primary), transparent 92%);
}
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.03); opacity: 0.6; }
}

.hero-pizza-emoji {
  font-size: 18rem;
  line-height: 1;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
  animation: heroPizzaFloat 7s ease-in-out infinite;
  opacity: 0.18;
}
@keyframes heroPizzaFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(-3deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 560px;
  padding: 130px 24px 100px;
  margin-left: 0;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #5CD5D6;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 10vw, 7.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero-title span {
  background: linear-gradient(90deg, #5CD5D6, #C7CCD0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 460px;
  margin: 0 0 48px;
  line-height: 1.8;
  animation: fadeUp 0.8s ease 0.7s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.8s ease 0.9s both;
}
.hero-btn-main {
  font-size: 1rem;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
}

.hero-scroll-nudge {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  animation: fadeUp 0.8s ease 1.1s both;
  margin-top: 8px;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 1.1s both;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px 0;
  display: inline-flex;
  backdrop-filter: blur(6px);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}
.hero-badge span { font-size: 1.2rem; }
.hero-badge strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 1px; }
.hero-badge small { display: block; color: rgba(255,255,255,0.45); font-size: 0.72rem; }

.hero-badge-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
  cursor: pointer;
  text-decoration: none;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--primary), transparent 20%), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Shared hero / section animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====================================================
   ABOUT
   ==================================================== */
.about { padding: 120px 0; background: var(--silver-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
[data-about-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-about-reveal].about-visible { opacity: 1; transform: none; }
[data-about-reveal][data-reveal-delay].about-visible { transition-delay: 0.15s; }
.about-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--dark); line-height: 1.18; margin-bottom: 10px; }
.about-title em { font-style: italic; font-weight: 400; color: var(--primary); }
.about-subtitle { font-size: 1rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.about-body { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }
.about-types { display: flex; flex-direction: column; }
.about-type { padding: 28px 0; }
.about-type + .about-type { border-top: 1px solid var(--border); }
.about-type-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 11px; border-radius: 999px; margin-bottom: 10px; }
.about-type-tag--static { background: var(--cream-2); color: var(--text-muted); border: 1px solid var(--border); }
.about-type-tag--dynamic { background: color-mix(in srgb, var(--primary), #fff 88%); color: var(--primary); border: 1px solid color-mix(in srgb, var(--primary), transparent 72%); }
.about-type-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.about-type-name--dynamic { color: var(--primary); }
.about-type-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.about-read-more {
  margin-top: 28px;
  align-self: flex-start;
  background: transparent;
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.about-read-more:hover {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } .about-types { display: none; } .about { padding: 80px 0; } }

.features-footer-cta { text-align: center; margin-top: 36px; }

/* ====================================================
   FEATURES
   ==================================================== */
.features { padding: 110px 0; background: var(--dark); }
.features .section-title { color: #fff; }
.features .section-title em { font-style: italic; background: linear-gradient(90deg, #5CD5D6, #C7CCD0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.features .section-label { color: #5CD5D6; }
.features .section-sub { color: rgba(255,255,255,0.45); max-width: 480px; margin: 14px auto 0; line-height: 1.75; }

.features-cards { display: flex; gap: 10px; max-width: 820px; margin: 0 auto; align-items: stretch; min-height: 300px; }

.feat-card { border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); display: flex; flex-direction: column; overflow: hidden; cursor: pointer; position: relative; flex: 1; transition: flex 0.5s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease, background 0.3s ease; }
.feat-card--featured { background: rgba(2,135,141,0.2); border-color: rgba(12,177,178,0.28); }
.feat-card.feat-active { flex: 1; cursor: default; }
.feat-card--default.feat-active { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.07); }
.feat-card--featured.feat-active { border-color: rgba(12,177,178,0.55); background: rgba(2,135,141,0.35); }
.feat-card.feat-inactive { flex: 0 0 68px; cursor: pointer; opacity: 0.6; }
.feat-card.feat-inactive:hover { opacity: 0.85; }

.feat-pop-strip { background: linear-gradient(90deg,#045B61,#02878D); color: #fff; text-align: center; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; flex-shrink: 0; }
.feat-card.feat-inactive .feat-pop-strip { display: none; }

.feat-tab { display: none; flex-direction: column; align-items: center; justify-content: center; padding: 1.25rem 0.4rem; gap: 10px; flex: 1; }
.feat-card.feat-inactive .feat-tab { display: flex; }

.feat-pop-side { display: none; font-size: 0.56rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #5CD5D6; writing-mode: vertical-rl; transform: rotate(180deg); white-space: nowrap; }
.feat-card.feat-inactive .feat-pop-side { display: block; }

.feat-tab-icon { font-size: 1.3rem; width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-tab-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; color: rgba(255,255,255,0.38); writing-mode: vertical-rl; transform: rotate(180deg); }
.feat-card--featured .feat-tab-label { color: rgba(147,197,253,0.5); }
.feat-tab-arr { font-size: 0.58rem; color: rgba(255,255,255,0.2); writing-mode: vertical-rl; transform: rotate(180deg); }

.feat-full { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; transition: opacity 0.2s ease; }
.feat-card.feat-inactive .feat-full { opacity: 0; pointer-events: none; position: absolute; inset: 0; }

.feat-icon-wrap { font-size: 1.3rem; width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.85rem; flex-shrink: 0; }
.feat-icon--default { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); }
.feat-icon--featured { background: rgba(12,177,178,0.15); border: 1px solid rgba(12,177,178,0.28); }

.feat-tag { display: inline-block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; margin-bottom: 0.5rem; }
.feat-tag--default { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.38); border: 1px solid rgba(255,255,255,0.1); }
.feat-tag--featured { background: rgba(12,177,178,0.15); color: #5CD5D6; border: 1px solid rgba(12,177,178,0.28); }

.feat-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.feat-desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 0.9rem; }
.feat-card--featured .feat-desc { color: rgba(147,197,253,0.5); }

.feat-pts { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 0.9rem; }
.feat-pts li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.42); line-height: 1.45; }
.feat-pts li::before { content: '✓'; color: rgba(255,255,255,0.28); font-size: 0.62rem; margin-top: 2px; flex-shrink: 0; }
.feat-card--featured .feat-pts li { color: rgba(147,197,253,0.6); }
.feat-card--featured .feat-pts li::before { color: rgba(147,197,253,0.45); }

.feat-click-prompt { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: auto; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.28); letter-spacing: 0.04em; animation: featPromptPulse 2.5s ease-in-out infinite; }
.feat-card--featured .feat-click-prompt { border-top-color: rgba(12,177,178,0.15); color: rgba(147,197,253,0.45); }
.feat-card.feat-active .feat-click-prompt { display: none; }
.feat-prompt-icon { animation: featBounce 2.5s ease-in-out infinite; }
@keyframes featBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
@keyframes featPromptPulse { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }

.feat-extra { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1) 0.05s, opacity 0.3s ease 0.1s; }
.feat-card.feat-active .feat-extra { max-height: 400px; opacity: 1; }
.feat-extra-inner { padding-top: 1.1rem; margin-top: 1.1rem; border-top: 1px solid rgba(255,255,255,0.07); }
.feat-card--featured .feat-extra-inner { border-top-color: rgba(12,177,178,0.2); }
.feat-extra-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 0.65rem; }
.feat-card--featured .feat-extra-label { color: rgba(147,197,253,0.4); }

.feat-extra-pts { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 1.25rem; }
.feat-extra-pts li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.37); line-height: 1.5; }
.feat-extra-pts li::before { content: '→'; color: rgba(255,255,255,0.2); font-size: 0.62rem; margin-top: 2px; flex-shrink: 0; }
.feat-card--featured .feat-extra-pts li { color: rgba(147,197,253,0.55); }
.feat-card--featured .feat-extra-pts li::before { color: rgba(147,197,253,0.38); }

.feat-cta { display: block; width: 100%; text-align: center; padding: 12px !important; border-radius: 10px !important; font-size: 0.85rem !important; font-weight: 700 !important; cursor: pointer; border: none !important; }
.feat-cta--default { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
.feat-cta--default:hover { background: rgba(255,255,255,0.18) !important; transform: translateY(-1px); }
.feat-cta--featured { background: var(--primary) !important; color: #fff !important; }
.feat-cta--featured:hover { background: #02878D !important; transform: translateY(-1px); }

@media (max-width: 768px) {
  .features { padding: 80px 0; }
  .features-cards { flex-direction: column; max-width: 480px; min-height: unset; }
  .feat-card.feat-inactive { flex: unset; opacity: 1; }
  .feat-card.feat-inactive .feat-tab { display: none; }
  .feat-card.feat-inactive .feat-full { opacity: 1; pointer-events: all; position: static; }
  .feat-card.feat-inactive .feat-pop-strip { display: block; }
}

/* ====================================================
   SERVICES HERO
   ==================================================== */
.services-hero {
  padding: 150px 0 90px;
  background: linear-gradient(150deg, #02070B 0%, #02070B 40%, #045B61 75%, #02878D 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Decorative glow orbs */
.services-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
}
.services-hero-orb--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #0CB1B2 0%, transparent 70%);
  top: -160px; right: -80px;
}
.services-hero-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #02878D 0%, transparent 70%);
  bottom: -120px; left: -60px;
  opacity: 0.25;
}
.services-hero-orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #5CD5D6 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
}
.services-hero-label {
  color: #5CD5D6;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.services-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.services-hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, #5CD5D6, #C7CCD0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.services-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 52px;
}
.services-hero-badges span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(6px);
}
.services-hero-badges span:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(147,197,253,0.45);
}
.services-hero-badges span svg {
  color: #5CD5D6;
  flex-shrink: 0;
}
/* Stat strip */
.services-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px 36px;
  backdrop-filter: blur(8px);
}
.services-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.services-hero-stat strong {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 4px;
}
.services-hero-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.services-hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ====================================================
   SERVICES / MENU
   ==================================================== */
.menu-section {
  padding: 80px 0 120px;
  background: var(--silver-bg);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0 auto 56px;
  background: rgba(2,135,141,0.07);
  border-radius: 20px;
  padding: 6px;
  width: fit-content;
  border: 1px solid rgba(12,177,178,0.1);
}

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 16px 32px;
  border-radius: 14px;
  border: 2px solid transparent;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.22s ease;
  min-width: 140px;
}
.tab-label {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--dark);
  transition: color 0.2s;
}
.tab-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.tab-btn:hover {
  background: rgba(255,255,255,0.7);
  border-color: rgba(12,177,178,0.2);
}
.tab-btn.active {
  background: #fff;
  border-color: rgba(12,177,178,0.45);
  box-shadow: 0 4px 20px rgba(2,135,141,0.14), 0 0 0 1px rgba(12,177,178,0.18);
  transform: translateY(-1px);
}
.tab-btn.active .tab-label { color: var(--primary); }
.tab-btn.active .tab-sub   { color: rgba(2,135,141,0.65); }

/* ── Geometric tab icons (triangle family — matches register page) ── */
.tab-geo {
  width: 42px; height: 42px; position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tab-btn:hover .tab-geo  { transform: scale(1.1); }
.tab-btn.active .tab-geo { transform: scale(1.06); }

.tab-geo .ring   { position: absolute; inset: 0;   border: 1.5px solid rgba(12,177,178,0.32); border-radius: 50%; }
.tab-geo .ring-2 { position: absolute; inset: 6px; border: 1.5px solid rgba(12,177,178,0.16); border-radius: 50%; }
.tab-geo .tri {
  position: absolute; top: 50%; left: 50%;
  width: 17px; height: 16px;
  transform: translate(-50%, -52%);
  background: linear-gradient(135deg, #5CD5D6, #0CB1B2);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  filter: drop-shadow(0 0 4px rgba(12,177,178,0.35));
}
.tab-geo .ball {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: #0CB1B2; top: 3px; left: 50%; margin-left: -2.5px;
  box-shadow: 0 0 6px #0CB1B2;
  transform-origin: 2.5px 18px;
}

@keyframes triGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(12,177,178,0.35)); }
  50%       { filter: drop-shadow(0 0 11px rgba(12,177,178,0.85)); }
}

.tab-geo-starter  .tri  { animation: triGlow 2.6s ease-in-out infinite; }
.tab-geo-business .ring { animation: geoSpinRing 7s linear infinite; }
.tab-geo-business .tri  { animation: triGlow 2.6s ease-in-out infinite; }
.tab-geo-custom   .ring   { animation: geoSpinRing 5s linear infinite; }
.tab-geo-custom   .ring-2 { animation: geoSpinRing 8s linear infinite reverse; }
.tab-geo-custom   .tri    { animation: triGlow 2.6s ease-in-out infinite; }
.tab-geo-custom   .ball   { animation: geoOrbitDot 5s linear infinite; }

.tab-btn.active .tab-geo .tri {
  background: linear-gradient(135deg, #5CD5D6, #0CB1B2);
  filter: drop-shadow(0 0 8px rgba(12,177,178,0.7));
  animation-duration: 1.6s;
}
.tab-btn.active .tab-geo-starter .tri { animation: triGlow 1.4s ease-in-out infinite; }
.tab-btn.active .tab-geo .ring   { border-color: rgba(12,177,178,0.6); animation-duration: 2.4s; }
.tab-btn.active .tab-geo .ring-2 { border-color: rgba(12,177,178,0.3); animation-duration: 3.6s; }
.tab-btn.active .tab-geo .ball   { background: #0CB1B2; box-shadow: 0 0 7px rgba(12,177,178,0.8); animation-duration: 2.4s; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Glow pulse keyframes per tier (soft blur only — outline handles the ring) ── */
@keyframes glow-base {
  0%, 100% { box-shadow: 0 0 14px 4px rgba(148,163,184,0.22), 0 4px 24px rgba(148,163,184,0.12); }
  50%       { box-shadow: 0 0 34px 10px rgba(148,163,184,0.42), 0 6px 40px rgba(148,163,184,0.22); }
}
@keyframes glow-managed {
  0%, 100% { box-shadow: 0 0 14px 4px rgba(12,177,178,0.2),  0 4px 24px rgba(2,135,141,0.12); }
  50%       { box-shadow: 0 0 36px 12px rgba(12,177,178,0.4), 0 6px 44px rgba(2,135,141,0.22); }
}
@keyframes glow-priority {
  0%, 100% { box-shadow: 0 0 14px 4px rgba(245,158,11,0.2),  0 4px 24px rgba(245,158,11,0.12); }
  50%       { box-shadow: 0 0 36px 12px rgba(245,158,11,0.42), 0 6px 44px rgba(245,158,11,0.22); }
}
@keyframes glow-advanced {
  0%, 100% { box-shadow: 0 0 14px 4px rgba(80,85,88,0.22),  0 4px 24px rgba(80,85,88,0.12); }
  50%       { box-shadow: 0 0 38px 12px rgba(80,85,88,0.44), 0 6px 46px rgba(80,85,88,0.24); }
}
@keyframes glow-custom {
  0%, 100% { box-shadow: 0 0 14px 4px rgba(13,148,136,0.2),  0 4px 24px rgba(13,148,136,0.12); }
  50%       { box-shadow: 0 0 36px 12px rgba(13,148,136,0.42), 0 6px 44px rgba(13,148,136,0.22); }
}

/* ── Card base ── */
.pizza-card {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: outline-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  outline: 2px solid transparent;
  outline-offset: 0px;
  overflow: hidden;
}
.pizza-card:hover {
  box-shadow: none;
}
.pizza-card.hidden { display: none; }

/* Tier accent bar at top of each card */
.card-tier-bar {
  height: 8px;
  width: 100%;
  background: var(--border);
  flex-shrink: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.tier-base:hover     .card-tier-bar { box-shadow: 0 3px 12px rgba(148,163,184,0.5); }
.tier-managed:hover  .card-tier-bar { box-shadow: 0 3px 14px rgba(2,135,141,0.45); }
.tier-priority:hover .card-tier-bar { box-shadow: 0 3px 14px rgba(245,158,11,0.55); }
.tier-advanced:hover .card-tier-bar { box-shadow: 0 3px 14px rgba(124,58,237,0.55); }
.tier-custom:hover   .card-tier-bar { box-shadow: 0 3px 14px rgba(13,148,136,0.55); }
.tier-base     .card-tier-bar { background: linear-gradient(90deg, #94a3b8, #cbd5e1); }
.tier-managed  .card-tier-bar { background: linear-gradient(90deg, var(--primary), #0CB1B2); }
.tier-priority .card-tier-bar { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.tier-advanced .card-tier-bar { background: linear-gradient(90deg, #505558, #C7CCD0); }
.tier-custom   .card-tier-bar { background: linear-gradient(90deg, #0d9488, #34d399); }

/* Tier outline ring (follows border-radius perfectly) + pulsing glow animation on hover */
.tier-base:hover     { border-color: #94a3b8 !important; outline-color: #94a3b8 !important; animation: glow-base     1.6s ease-in-out infinite; }
.tier-managed:hover  { border-color: #0CB1B2 !important; outline-color: #0CB1B2 !important; animation: glow-managed  1.6s ease-in-out infinite; }
.tier-priority:hover { border-color: #f59e0b !important; outline-color: #f59e0b !important; animation: glow-priority 1.6s ease-in-out infinite; }
.tier-advanced:hover { border-color: #505558 !important; outline-color: #505558 !important; animation: glow-advanced 1.6s ease-in-out infinite; }
.tier-custom:hover   { border-color: #0d9488 !important; outline-color: #0d9488 !important; animation: glow-custom   1.6s ease-in-out infinite; }

/* Popular ribbon — side flag */
.card-popular-ribbon {
  position: absolute;
  top: 18px;
  right: 0;
  background: linear-gradient(135deg, #045B61, #02878D);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 15px 5px 13px;
  border-radius: 4px 0 0 4px;
  box-shadow: -2px 3px 10px rgba(2,135,141,0.22);
  pointer-events: none;
  z-index: 20;
}
.card-popular-ribbon.ribbon-own {
  background: linear-gradient(135deg, #475569, #64748b);
  box-shadow: -2px 3px 10px rgba(71,85,105,0.22);
}

/* Tier label pill */
.card-tier-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 13px;
  border-radius: 20px;
  margin-bottom: 10px;
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}
.tier-managed  .card-tier-label { background: #D6F1F2; color: #045B61; border-color: #A0D8D9; }
.tier-priority .card-tier-label { background: #fef3c7; color: #92400e; border-color: #fde68a; }
.tier-advanced .card-tier-label { background: #E6E8EA; color: #5b21b6; border-color: #ddd6fe; }
.tier-custom   .card-tier-label { background: #d1fae5; color: #065f46; border-color: #6ee7b7; }

.card-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.25;
}
.card-tagline {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}
.card-price {
  display: block;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: background 0.22s ease, border-color 0.22s ease;
}
/* Tier-tinted price block on hover */
.tier-base:hover     .card-price { background: #f1f5f9; border-color: #cbd5e1; }
.tier-managed:hover  .card-price { background: #EBF9FA; border-color: #A0D8D9; }
.tier-priority:hover .card-price { background: #fffbeb; border-color: #fde68a; }
.tier-advanced:hover .card-price { background: #f5f3ff; border-color: #ddd6fe; }
.tier-custom:hover   .card-price { background: #f0fdf4; border-color: #86efac; }
.card-price strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-display);
  transition: color 0.22s ease;
  display: inline-block;
}
.tier-priority:hover .card-price strong { color: #d97706; }
.tier-advanced:hover .card-price strong { color: #505558; }
.tier-custom:hover   .card-price strong { color: #0d9488; }
.card-price span { font-size: 0.85rem; font-weight: 500; }
.card-price-was {
  font-size: 0.95rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 600;
}
.card-price-save {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 6px;
  position: relative;
  top: -1px;
}
.card-offer-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fef6e0;
  border: 1.5px solid #f6c662;
  color: #92400e;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 9px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 20px;
  flex: 1;
  border: 1px solid #f0f4fb;
  border-radius: 12px;
  overflow: hidden;
}
.card-features li {
  font-size: 0.84rem;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid #f0f4fb;
}
.card-features li:last-child { border-bottom: none; }
.card-features li:nth-child(even) { background: #fafcff; }
.card-features li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 1px;
}
.card-features li.feature-bonus::before   { content: '★'; color: var(--primary); }
.card-features li.feature-priority::before { content: '⚡'; font-size: 0.75rem; }
.card-features li.feature-backend::before  { content: '⚙'; color: #505558; }
/* Tinted rows for special feature types */
.card-features li.feature-bonus    { background: #EBF9FA !important; }
.card-features li.feature-priority { background: #fffbeb !important; }
.card-features li.feature-backend  { background: #f5f3ff !important; }

.pizza-card-body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* Subtle tier-tinted gradient on card body top */
.tier-managed  .pizza-card-body { background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 28%); }
.tier-priority .pizza-card-body { background: linear-gradient(180deg, #fffdf0 0%, #ffffff 28%); }
.tier-advanced .pizza-card-body { background: linear-gradient(180deg, #faf8ff 0%, #ffffff 28%); }
.tier-custom   .pizza-card-body { background: linear-gradient(180deg, #f0fdf9 0%, #ffffff 28%); }

/* Card image area */
.pizza-card-img {
  font-size: 3rem;
  text-align: center;
  min-height: 140px;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
}
/* Layered glow rings behind emoji */
.pizza-card-img::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  pointer-events: none;
  z-index: 0;
}
.pizza-card-img::after {
  content: '';
  position: absolute;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  pointer-events: none;
  z-index: 0;
}
.pizza-card-img span {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.15));
}
.pizza-card:hover .pizza-card-img { transform: none; }

/* Tier-specific icon area backgrounds */
.tier-base     .pizza-card-img { background: linear-gradient(135deg, #f1f5f9 0%, #94a3b8 100%); }
.tier-managed  .pizza-card-img { background: linear-gradient(135deg, #D6F1F2 0%, #0CB1B2 100%); }
.tier-priority .pizza-card-img { background: linear-gradient(135deg, #fef3c7 0%, #f59e0b 100%); }
.tier-advanced .pizza-card-img { background: linear-gradient(135deg, #E6E8EA 0%, #505558 100%); }
.tier-custom   .pizza-card-img { background: linear-gradient(135deg, #d1fae5 0%, #0d9488 100%); }

/* Legacy class fallbacks */
.pizza-card-img.ecommerce { background: linear-gradient(135deg, #F0FDF4 0%, #22c55e 100%); }
.pizza-card-img.other     { background: linear-gradient(135deg, #FFF7ED 0%, #f97316 100%); }

/* Card actions */
.card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
}

.read-more-btn {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: var(--text);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 0.83rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
}
.read-more-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #EBF9FA;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2,135,141,0.1);
}

/* Legacy badge classes — kept for compat */
.pizza-card-bundle-badge { display: none; }
.pizza-card-locked {
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
  filter: grayscale(0.4);
}
.pizza-card-lock-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  background: rgba(15,23,42,0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Category-specific legacy backgrounds */
.pizza-card-img.core       { background: linear-gradient(135deg, #EEF2FF 0%, #C7D2FE 100%); }
.pizza-card-img.languages  { background: linear-gradient(135deg, #F0FDF4 0%, #BBF7D0 100%); }
.pizza-card-img.islamic    { background: linear-gradient(135deg, #FFF7ED 0%, #FED7AA 100%); }
.pizza-card-img.homeschool { background: linear-gradient(135deg, #F0F9FF 0%, #BAE6FD 100%); }

/* Price legacy */
.price {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.97rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
  background: var(--cream-2);
  color: var(--text-muted);
}
.tag-hot { background: #fce4ec; color: #b71c1c; }

/* Responsive grid */
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-tabs { gap: 10px; }
  .tab-btn { min-width: 110px; padding: 12px 18px; }
}


/* ====================================================
   CTA / ORDER
   ==================================================== */
.order-section {
  padding: 120px 0;
  background: var(--dark);
}
.order-section .section-label { color: var(--primary); }
.order-section .section-title { color: var(--white); }

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.order-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 52px 32px 44px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.order-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--primary-glow);
  transform: translateY(-5px);
}
.order-card-featured {
  background: var(--primary);
  border-color: var(--primary);
}
.order-card-featured:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.order-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--primary);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.order-icon { font-size: 2.8rem; margin-bottom: 20px; }
.order-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.order-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ====================================================
   HOW IT WORKS
   ==================================================== */
.how-it-works {
  padding: 120px 0;
  background: #02070B;
  position: relative;
  overflow: hidden;

  /* ── Colour tokens ── */
  --hiw-accent:        #818cf8;
  --hiw-accent-dim:    rgba(99,102,241,0.12);
  --hiw-accent-border: rgba(99,102,241,0.25);
  --hiw-accent-hover:  rgba(99,102,241,0.06);
  --hiw-accent-glow:   rgba(99,102,241,0.50);
  --hiw-card-bg:       rgba(255,255,255,0.035);
  --hiw-card-border:   rgba(255,255,255,0.075);
}
.how-it-works::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.09) 0%, transparent 70%);
  top: -280px; right: -180px;
  pointer-events: none;
}
.how-it-works::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
  bottom: -200px; left: -150px;
  pointer-events: none;
}

/* ── Header ── */
.hiw-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}
.hiw-label {
  color: var(--hiw-accent) !important;
  opacity: 0.85;
}
.hiw-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hiw-title em {
  font-style: italic;
  color: var(--hiw-accent);
}
.hiw-subtitle {
  color: rgba(255,255,255,0.52);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Steps grid ── */
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  position: relative;
  margin-bottom: 72px;
  z-index: 1;
}
/* Connector line removed */

/* ── Step card ── */
.hiw-step-card {
  background: var(--hiw-card-bg);
  border: 1px solid var(--hiw-card-border);
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  /* Entrance – starts hidden */
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity      0.55s ease,
    transform    0.55s ease,
    background   0.25s ease,
    border-color 0.25s ease,
    box-shadow   0.25s ease;
}
.hiw-step-card.hiw-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger */
.hiw-step-card:nth-child(1) { transition-delay: 0.08s; }
.hiw-step-card:nth-child(2) { transition-delay: 0.22s; }
.hiw-step-card:nth-child(3) { transition-delay: 0.36s; }
/* Hover lift + glow */
.hiw-step-card:hover {
  background: var(--hiw-accent-hover);
  border-color: var(--hiw-accent-border);
  box-shadow:
    0 0 0 1px var(--hiw-accent-border),
    0 8px 40px var(--hiw-accent-glow);
  transform: translateY(-5px);
}
.hiw-step-card.hiw-visible:hover {
  transform: translateY(-5px);
}

/* ── Icon box ── */
.hiw-icon-box {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--hiw-accent-dim);
  border: 1px solid var(--hiw-accent-border);
  color: var(--hiw-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}
.hiw-step-card:hover .hiw-icon-box {
  transform: scale(1.08);
  background: rgba(99,102,241,0.2);
}

/* ── Card text ── */
.hiw-card-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.hiw-card-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.93rem;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 28px;
}
.hiw-inline-link {
  color: var(--hiw-accent);
  text-decoration: none;
  white-space: nowrap;
}
.hiw-inline-link:hover { text-decoration: underline; }

/* ── Step foot label ── */
.hiw-card-foot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hiw-accent);
  background: var(--hiw-accent-dim);
  border: 1px solid var(--hiw-accent-border);
  border-radius: 30px;
  padding: 6px 16px;
  margin-top: auto;
  align-self: flex-start;
}

/* ── CTA ── */
.hiw-cta {
  text-align: center;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hiw-btn-secondary {
  border-color: rgba(255,255,255,0.35) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 15px 36px !important;
}
.hiw-btn-secondary:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}
.hiw-btn {
  background: #fff !important;
  color: #02070B !important;
  font-weight: 700 !important;
  padding: 16px 40px !important;
  border-radius: 50px !important;
  font-size: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: none !important;
}
.hiw-btn:hover {
  background: rgba(255,255,255,0.9) !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.38) !important;
}

@media (max-width: 768px) {
  .how-it-works { padding: 80px 0; }
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hiw-steps::before { display: none; }
  .hiw-step-card { padding: 28px 24px; }
  /* Remove stagger on mobile so cards don't pop in sequentially below fold */
  .hiw-step-card:nth-child(1),
  .hiw-step-card:nth-child(2),
  .hiw-step-card:nth-child(3) { transition-delay: 0s; }
}

/* ── Timeline ─────────────────────────────────────────── */
.hiw-timeline {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.hiw-tl-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.hiw-tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 4px;
}
.hiw-tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #e4eaf4;
  box-shadow: 0 0 0 4px rgba(2,135,141,0.12);
  flex-shrink: 0;
}
.hiw-tl-dot--final {
  background: linear-gradient(135deg, #0CB1B2, #02878D);
  box-shadow: 0 0 0 5px rgba(12,177,178,0.15);
}
.hiw-tl-line {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(to bottom, #e4eaf4, #f0f4fb);
  margin: 8px 0;
}
.hiw-tl-body {
  padding-bottom: 48px;
  flex: 1;
}
.hiw-tl-week {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(2,135,141,0.07);
  border: 1px solid rgba(2,135,141,0.12);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.hiw-tl-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.hiw-tl-body p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── FAQ ──────────────────────────────────────────────── */
.hiw-faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.hiw-faq-item:first-child {
  border-top: 1px solid var(--border);
}
.hiw-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  user-select: none;
}
.hiw-faq-item summary::-webkit-details-marker { display: none; }
.hiw-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.hiw-faq-item[open] summary::after {
  content: '−';
}
.hiw-faq-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 4px 22px;
}
.hiw-faq-item p a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}



/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials {
  padding: 120px 0;
  background: var(--silver-bg);
}

.testimonials .section-title em {
  font-style: italic;
  color: var(--primary);
}

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.stars { font-size: 1.5rem; letter-spacing: 3px; }
.rating-score {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}
.rating-source {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.testimonial-card {
  background: #f8fafc;
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1.5px solid #e4eaf4;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(2,135,141,0.1);
  border-color: #c7d9f5;
}
.testimonial-card--featured {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.testimonial-card--featured p,
.testimonial-card--featured .t-stars,
.testimonial-card--featured .reviewer { color: rgba(255,255,255,0.85); }
.testimonial-card--featured .reviewer small { color: rgba(255,255,255,0.55); }
.testimonial-card--featured .testimonial-quote { color: rgba(255,255,255,0.2); }
.testimonial-card--featured .testimonial-avatar {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: #e4eaf4;
  margin-bottom: 12px;
  font-weight: 900;
}
.t-stars {
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 2px solid #e4eaf4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.reviewer {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
}
.reviewer small {
  display: block;
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ====================================================
   FIND US
   ==================================================== */
/* ====================================================
   CONTACT
   ==================================================== */
.contact-section {
  padding: 100px 0 120px;
  background: var(--silver-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.contact-info-sub {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-info-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(2,135,141,0.1);
}
.contact-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-info-card strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-info-card a,
.contact-info-card span {
  font-size: 0.96rem;
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
}
.contact-info-card a:hover { color: var(--primary); }
.contact-reassurance {
  background: color-mix(in srgb, var(--primary), #fff 92%);
  border-left: 3px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
}
.contact-reassurance p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Right column — form */
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.contact-form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: none;
  width: 100%;
  box-sizing: border-box;
}
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}
.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2,135,141,0.1);
  background: var(--white);
}
.contact-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ca3af' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.contact-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 15px 28px;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
}
@media (max-width: 560px) {
  .contact-form-row { grid-template-columns: 1fr; }
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.55);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}
.footer-logo-img {
  height: clamp(40px, 5vw, 56px);
  width: auto;
  display: block;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  font-family: var(--font-body);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col li {
  font-size: 0.9rem;
  line-height: 1;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ====================================================
   HERO REEL — 3-D "around the world" marquee banner
   Sits inside .hero at the bottom, bleeds edge-to-edge
   ==================================================== */
.hero-reel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* gradient fade from transparent into the track background */
  padding-top: 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 10, 24, 0.82) 60%, #040a18 100%);
  z-index: 5;
  pointer-events: none; /* let scroll-arrow clicks pass through */
}

/* Hero info bar — shows active card name */
.hero-info { text-align: center; margin-bottom: 12px; pointer-events: none; }
.hero-info-inner { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); transition: opacity 0.4s ease; }

/* Reel wrap — JS-driven slide */
.reel-wrap { overflow: hidden; padding: 4px 0; pointer-events: all; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%); }
.reel-track { display: flex; gap: 14px; transition: transform 1.1s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.reel-track.instant { transition: none !important; }

/* Reel cards */
.reel-card { flex: 0 0 240px; border-radius: 10px; overflow: hidden; border: 1.5px solid rgba(255,255,255,0.09); cursor: default; transition: border-color 0.5s ease, transform 0.3s ease, box-shadow 0.5s ease; flex-shrink: 0; }
.reel-card:hover { transform: translateY(-2px); }
.reel-card.active { border-color: var(--accent, #5CD5D6) !important; box-shadow: 0 0 0 1px var(--accent, #5CD5D6), 0 8px 32px rgba(0,0,0,0.5) !important; transform: scale(1.04) !important; cursor: default; }

/* Reel card chrome */
.reel-bar { background: #02070B; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 6px 10px; display: flex; align-items: center; gap: 7px; }
.reel-dots { display: flex; gap: 3px; }
.reel-dots i { width: 7px; height: 7px; border-radius: 50%; display: block; }
.reel-dots i:nth-child(1) { background: #ff5f57; }
.reel-dots i:nth-child(2) { background: #febc2e; }
.reel-dots i:nth-child(3) { background: #28c840; }
.reel-url { font-size: 0.58rem; color: rgba(255,255,255,0.28); font-family: monospace; background: rgba(255,255,255,0.05); border-radius: 4px; padding: 2px 7px; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.reel-body { aspect-ratio: 16/10; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.reel-body img:not(.reel-ph-logo) { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.reel-ph-icon { font-size: 1.5rem; opacity: 0.55; }
.reel-ph-logo { width: 48px; height: auto; opacity: 0.25; filter: brightness(0) invert(1); }
.reel-ph-text { display: inline-block; font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: var(--teal); background: rgba(12,177,178,0.15); border: 1px solid rgba(12,177,178,0.4); border-radius: 100px; padding: 3px 10px; }
.reel-foot { display: flex; flex-wrap: wrap; gap: 4px; padding: 5px 8px; background: rgba(0,0,0,0.3); }
.reel-tag { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(147,197,253,0.12); color: #5CD5D6; border-radius: 20px; padding: 2px 7px; }
.reel-ind { font-size: 0.58rem; color: rgba(255,255,255,0.32); font-weight: 500; }
.reel-pages { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; background: rgba(12,177,178,0.12); color: #5CD5D6; border: 1px solid rgba(12,177,178,0.3); border-radius: 20px; padding: 2px 6px; }

/* Progress dots */
.progress { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; pointer-events: all; }
.prog-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.18); transition: background 0.5s ease, width 0.3s ease; cursor: pointer; }
.prog-dot.active { width: 18px; border-radius: 3px; background: var(--dot-accent, rgba(255,255,255,0.7)); }

/* Reel hint */
.reel-hint { text-align: center; margin-top: 8px; padding-bottom: 12px; font-size: 0.62rem; color: rgba(255,255,255,0.2); letter-spacing: 0.05em; height: 28px; transition: opacity 0.4s ease; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .reel-track { transition: none; }
}

/* ====================================================
   WORK SHOWCASE / VIDEO CAROUSEL
   ==================================================== */
.showcase {
  padding: 110px 0 80px;
  background: linear-gradient(160deg, #02070B 0%, #031A1B 50%, #02070B 100%);
  overflow: hidden;
}
.showcase-label { color: #5CD5D6; }
.showcase-title { color: #fff; }
.showcase-title em {
  font-style: italic;
  background: linear-gradient(90deg, #5CD5D6, #C7CCD0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.showcase-sub { color: rgba(255,255,255,0.45); }

/* Track wrapper */
.showcase-outer {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.showcase-track-wrap {
  flex: 1;
  overflow: hidden;
  padding: 12px 0 16px;
}
.showcase-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Nav buttons */
.showcase-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  z-index: 2;
  margin: 0 16px;
}
.showcase-nav:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(147,197,253,0.5);
  color: #fff;
}
.showcase-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Individual card */
.showcase-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

/* Clickable showcase card (with compare popup) */
.showcase-card.portfolio-card { cursor: pointer; }

.showcase-card-clickable { position: relative; }

.showcase-compare-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(8, 16, 36, 0.82);
  color: #5CD5D6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(147, 197, 253, 0.3);
  opacity: 0;
  transition: opacity 0.22s, transform 0.22s;
  pointer-events: none;
  white-space: nowrap;
}
.showcase-card.portfolio-card:hover .showcase-compare-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.showcase-browser {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: #1e293b;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.showcase-card:hover .showcase-browser {
  border-color: rgba(147,197,253,0.35);
  box-shadow: 0 24px 70px rgba(0,0,0,0.6), 0 0 0 1px rgba(147,197,253,0.15);
}

/* Browser chrome bar */
.showcase-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #02070B;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.showcase-browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.showcase-browser-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}
.showcase-browser-dots i:nth-child(1) { background: #ff5f57; }
.showcase-browser-dots i:nth-child(2) { background: #febc2e; }
.showcase-browser-dots i:nth-child(3) { background: #28c840; }
.showcase-browser-url {
  flex: 1;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 4px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: monospace;
}

/* Browser body — where the video or placeholder lives */
.showcase-browser-body {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.showcase-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Hide video element if it has no source (no src attribute set) */
.showcase-video:not([src]):not(:has(source)) { display: none; }

/* ── Showcase screenshot scroll animation ── */
.showcase-browser-body img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  animation: showcaseScroll 7s ease-in-out infinite alternate;
}

@keyframes showcaseScroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-55%); }
}

.hero-reel-card .showcase-browser-body img {
  animation-duration: 9s;
}

/* Placeholder */
.showcase-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.showcase-ph-icon { font-size: 2.2rem; opacity: 0.5; }
.showcase-placeholder p {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* Placeholder gradient tints per card */
.showcase-ph-1 { background: linear-gradient(135deg, #02070B 0%, #045B61 100%); }
.showcase-ph-2 { background: linear-gradient(135deg, #02070B 0%, #045B61 100%); }
.showcase-ph-3 { background: linear-gradient(135deg, #0d2a1a 0%, #065f46 100%); }
.showcase-ph-4 { background: linear-gradient(135deg, #1f0d1a 0%, #831843 100%); }
.showcase-ph-5 { background: linear-gradient(135deg, #1a1a0d 0%, #713f12 100%); }

/* Card info strip below browser */
.showcase-card-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 0 2px;
}
.showcase-type-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(147,197,253,0.12);
  color: #5CD5D6;
  border-radius: 20px;
  padding: 3px 11px;
}
.showcase-type-tag.showcase-type-dynamic {
  background: rgba(196,181,253,0.12);
  color: #C7CCD0;
}
.showcase-industry {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* Dot pagination */
.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.showcase-dot.active {
  background: #5CD5D6;
  transform: scale(1.3);
}

@media (max-width: 960px) {
  .showcase-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 600px) {
  .showcase-card { flex: 0 0 100%; }
  .showcase-nav { margin: 0 8px; }
}

/* Portfolio section header */
.portfolio-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.portfolio-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.portfolio-section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.portfolio-cta-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5CD5D6;
  margin-bottom: 10px;
}

/* ====================================================
   PORTFOLIO
   ==================================================== */
.portfolio-section {
  padding: 80px 0 100px;
}

.portfolio-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.portfolio-filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.portfolio-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.portfolio-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.portfolio-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-card:hover {
  box-shadow: 0 8px 32px rgba(2,135,141,0.18);
  border-color: var(--primary);
}
.portfolio-card.hidden { display: none; }

/* Preview area — real screenshot or placeholder */
.portfolio-card-preview {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}
.portfolio-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-card-preview img {
  transform: scale(1.04);
}

/* Placeholder state */
.portfolio-preview-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}
.portfolio-preview-icon { font-size: 2.4rem; opacity: 0.4; }
.portfolio-preview-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portfolio-card-body { padding: 22px 24px 24px; }

.portfolio-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.portfolio-type-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: color-mix(in srgb, var(--primary), #fff 85%);
  color: var(--primary);
  border-radius: 20px;
  padding: 3px 11px;
}
.portfolio-type-tag.portfolio-type-dynamic {
  background: color-mix(in srgb, #0891b2, #fff 85%);
  color: #0891b2;
}
.portfolio-industry {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.portfolio-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.portfolio-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.portfolio-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.portfolio-live-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
.portfolio-live-btn:hover { opacity: 0.75; }
.portfolio-coming-soon {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 12px;
}
.portfolio-delivered-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 3px 12px;
  letter-spacing: 0.02em;
}
.portfolio-live-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: #02878D;
  background: #D6F1F2;
  border: 1px solid #A0D8D9;
  border-radius: 20px;
  padding: 3px 12px;
  letter-spacing: 0.02em;
}

/* Empty state */
.portfolio-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--cream);
  border-radius: var(--radius);
  display: none; /* shown via JS when all cards are placeholders */
}
.portfolio-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.portfolio-empty h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.portfolio-empty p {
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* CTA strip */
.portfolio-cta {
  background: linear-gradient(150deg, #02070B 0%, #02070B 45%, #045B61 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.portfolio-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.portfolio-cta-inner h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.portfolio-cta-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-cta-inner { flex-direction: column; text-align: center; }
}

/* ====================================================
   SCROLL FADE-IN ANIMATIONS
   ==================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .about-grid    { gap: 48px; }
}

@media (max-width: 900px) {
  /* Centre logo, hamburger stays right */
  .nav-container {
    position: relative;
    justify-content: flex-end;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  /* 768–900px: full logo centred */
  .logo-full { display: block; height: 44px; width: auto; }
  .logo-mark { display: none; }

  /* Mobile Nav */
  .nav-toggle { display: flex; position: relative; z-index: 1001; }
  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(20,20,20,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
    z-index: 1000;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.25rem; }

  /* Sections */
  .about-grid    { grid-template-columns: 1fr; }

  .features-grid     { grid-template-columns: repeat(2, 1fr); }
  .menu-grid         { grid-template-columns: 1fr; }
  .order-grid        { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .hero-badges { flex-direction: column; gap: 12px; }
  .hero-badge-divider { width: 40px; height: 1px; }
  .hero-content { padding: 130px 24px 90px; }
  .hero-pizza-emoji { font-size: 10rem; opacity: 0.15; }
  .hero-decor { right: -100px; }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .hero-decor    { display: none; }
}

@media (max-width: 480px) {
  /* Phone: swap to monogram, still centred */
  .logo-full { display: none; }
  .logo-mark { display: block; height: 36px; width: auto; }
}

/* ====================================================
   CARD ACTIONS
   ==================================================== */
.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.btn-sm {
  font-size: 0.85rem !important;
  padding: 9px 18px !important;
}
.read-more-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.read-more-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* ====================================================
   SERVICE MODAL
   ==================================================== */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  overflow-y: auto;
}
.service-modal.open {
  opacity: 1;
  pointer-events: all;
}
.service-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.service-modal-box {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 44px 36px 36px;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
  transform: translateY(28px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  z-index: 1;
  margin: auto;
}
.service-modal.open .service-modal-box {
  transform: translateY(0) scale(1);
}
.service-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.service-modal-close:hover {
  background: #e2e8f0;
  color: var(--dark);
}

/* Modal header row */
.service-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}
.service-modal-icon {
  font-size: 2.6rem;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: #f1f5f9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-modal-tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 8px;
}
.service-modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.25;
}
.service-modal-price {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  background: #EBF9FA;
  border: 1.5px solid #A0D8D9;
  border-radius: 50px;
  padding: 3px 14px;
  margin-top: 6px;
}

/* Description */
.service-modal-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 0.88rem;
  border-left: 3px solid #e2e8f0;
  padding-left: 12px;
}

/* Deal / discount banner */
.service-modal-deal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1.5px solid #f59e0b;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #78350f;
  line-height: 1.5;
}
.service-modal-deal:empty { display: none; margin: 0; }
.service-modal-deal-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* Meta pills (ideal for / turnaround) */
.service-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.service-modal-meta:empty { display: none; }
.meta-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Section label */
.service-modal-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Features list */
.service-modal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}
.service-modal-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
  padding: 9px 14px;
  border-bottom: 1px solid #f1f5f9;
}
.service-modal-features li:last-child { border-bottom: none; }
.service-modal-features li:nth-child(even) { background: #f8fafc; }
.service-modal-features li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.85rem;
}
.service-modal-features li.feat-bonus::before   { content: '★'; color: var(--primary); }
.service-modal-features li.feat-priority::before { content: '⚡'; }
.service-modal-features li.feat-backend::before  { content: '⚙'; color: #505558; }

/* Note / disclaimer */
.service-modal-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.55;
}
.service-modal-note:empty { display: none; margin: 0; }

/* Actions */
.service-modal-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-modal-close-link {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.service-modal-close-link:hover { color: var(--dark); }

@media (max-width: 480px) {
  .service-modal-box { padding: 40px 20px 32px; }
  .service-modal-header { flex-direction: column; gap: 12px; }
  .service-modal-actions { flex-direction: column; align-items: stretch; }
  .service-modal-close-link { text-align: center; }
}

/* ====================================================
   PORTFOLIO SCREENSHOT SLIDESHOW MODAL
   ==================================================== */

/* Card hover overlay — only visible on cards with data-slides */
.portfolio-card-preview { position: relative; }

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 42, 0.6);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.28s ease;
  border-radius: 0;
}
.portfolio-card[data-slides] { cursor: pointer; }
.portfolio-card[data-slides]:hover .portfolio-card-overlay { opacity: 1; }

.portfolio-card-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transform: translateY(6px);
  transition: transform 0.28s ease;
}
.portfolio-card[data-slides]:hover .portfolio-card-overlay-btn {
  transform: translateY(0);
}

/* ---- Reel card popup ---- */
.reel-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 8500;
  background: rgba(5, 10, 22, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.reel-popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.reel-popup {
  position: relative;
  background: #0e1a2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  overflow: hidden;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.34,1.5,0.64,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
}
.reel-popup-overlay.open .reel-popup {
  transform: translateY(0) scale(1);
}
.reel-popup-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.reel-popup-close:hover { background: rgba(255,255,255,0.16); }
.reel-popup-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0a1220;
  position: relative;
}
.reel-popup-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.reel-popup-img-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #0a1220, #0d1f3c);
}
.reel-popup-img-fallback img {
  width: 64px;
  height: auto;
  object-fit: unset;
  opacity: 0.25;
  filter: brightness(0) invert(1);
  animation: logoBgPulse 3.5s ease-in-out infinite;
}
.reel-popup-img-fallback span {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.8;
}
.reel-popup-body {
  padding: 20px 24px 28px;
}
.reel-popup-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.reel-popup-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(99,102,241,0.18);
  color: #a5b4fc;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(99,102,241,0.25);
}
.reel-popup-ind {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.reel-popup-pages {
  font-size: 0.7rem;
  font-weight: 600;
  color: #5CD5D6;
  background: rgba(12,177,178,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(12,177,178,0.3);
}
.reel-popup-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.reel-popup-url {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.reel-popup-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0 0 22px;
}
.reel-popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 11px 22px;
  background: var(--teal);
  color: #fff;
  border-radius: 10px;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(12,177,178,0.3);
  text-decoration: none;
}
.reel-popup-btn:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(12,177,178,0.45);
  color: #fff;
}

/* Modal overlay */
.pf-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 10, 22, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pf-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Modal box */
.pf-modal {
  background: #0c1526;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  width: 100%;
  max-width: 1020px;
  height: min(88vh, 760px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.93) translateY(20px);
  transition: transform 0.38s cubic-bezier(0.34, 1.36, 0.64, 1);
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255,255,255,0.05);
}
.pf-modal-overlay.open .pf-modal {
  transform: scale(1) translateY(0);
}

/* Header */
.pf-modal-header {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}
.pf-modal-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 12px;
}
.pf-modal-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

/* Compare slider bar (inside header, hidden by default) */
.pf-compare-bar {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 9px 20px 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pf-compare-bar.active { display: flex; }
.pf-compare-bar-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  flex-shrink: 0;
  min-width: 38px;
}
.pf-lbl-before { color: #94a3b8; text-align: right; }
.pf-lbl-after  { color: #a5b4fc; text-align: left; }
.pf-compare-track {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  position: relative;
  cursor: ew-resize;
  margin: 10px 0;
}
.pf-compare-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(to right, rgba(148,163,184,0.55), rgba(165,180,252,0.75));
  border-radius: 3px;
  pointer-events: none;
  transition: width 0.05s linear;
}
.pf-compare-thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  color: #0c1526;
  padding: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pf-compare-thumb:hover {
  transform: translate(-50%, -50%) scale(1.18);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.6);
}

/* Compare content (inside each slide) */
.pf-compare-content {
  position: relative;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
}
/* Invisible spacer — height set by JS to max(beforeHeight, afterHeight) */
.pf-compare-spacer {
  display: block;
  width: 100%;
}
/* Both images absolutely stacked from top */
.pf-compare-img-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  display: block;
}
.pf-compare-img-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  clip-path: inset(0 70% 0 0); /* 30% before / 70% after on open */
}
/* End-of-image marker — shown where the shorter image naturally ends */
/* Each marker is confined to its own side of the divider */
.pf-img-end {
  position: absolute;
  display: none;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  z-index: 6;
  transform: translateY(-50%);
}
.pf-img-end.active       { display: flex; }
/* left/right boundaries are set dynamically by JS (setDivider) */
.pf-img-end-before       { left: 0;   right: 70%; padding: 0 12px 0 16px; } /* default: pct=30 */
.pf-img-end-after        { left: 30%; right: 0;   padding: 0 16px 0 12px; } /* default: pct=30 */
/* Lines — solid 1 px, gradient in the matching brand colour */
.pf-img-end::before,
.pf-img-end::after        { content: ''; flex: 1; height: 1px; }
.pf-img-end-before::before,
.pf-img-end-before::after { background: linear-gradient(90deg, rgba(148,163,184,0.10), rgba(148,163,184,0.40)); }
.pf-img-end-after::before,
.pf-img-end-after::after  { background: linear-gradient(90deg, rgba(12,177,178,0.40), rgba(12,177,178,0.10)); }
/* Badge pill */
.pf-img-end span {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  background: rgba(6,13,28,0.92);
  padding: 5px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pf-img-end-before span {
  color: #94a3b8;
  border: 1px solid rgba(148,163,184,0.38);
  box-shadow: 0 0 14px rgba(148,163,184,0.14), inset 0 0 0 0 transparent;
}
.pf-img-end-after span {
  color: #5CD5D6;
  border: 1px solid rgba(92,213,214,0.38);
  box-shadow: 0 0 14px rgba(92,213,214,0.20), inset 0 0 0 0 transparent;
}
.pf-compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255,255,255,0.3);
}
/* Small handle grip on the divider line */
.pf-compare-divider::after {
  content: '';
  position: sticky;
  top: 44px;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.45);
  margin-left: -17px;
  margin-top: 0;
}
.pf-compare-label {
  position: absolute;
  top: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 11px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 5;
}
.pf-compare-label-before { left: 14px; }
.pf-compare-label-after  { right: 14px; }

/* End-of-page marker — appears at the very bottom of each slide */
.pf-page-end {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px 24px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.pf-page-end::before,
.pf-page-end::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.pf-modal-tag {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(99, 102, 241, 0.18);
  color: #a5b4fc;
  border-radius: 20px;
  padding: 3px 11px;
}
.pf-modal-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-body);
}
.pf-modal-close {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.pf-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Stage: arrow + slides + arrow */
.pf-modal-stage {
  flex: 1;
  display: flex;
  align-items: stretch;
  min-height: 0;
  position: relative;
  background: #060d1c;
}

/* Gradient curtains on left/right edges so arrows always have contrast */
.pf-modal-stage::before,
.pf-modal-stage::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pf-modal-stage::before {
  left: 0;
  background: linear-gradient(to right, rgba(6,13,28,0.72) 0%, transparent 100%);
}
.pf-modal-stage::after {
  right: 0;
  background: linear-gradient(to left, rgba(6,13,28,0.72) 0%, transparent 100%);
}
/* Hide curtains when only one slide */
.pf-modal-stage.pf-single::before,
.pf-modal-stage.pf-single::after { opacity: 0; }

/* Slides container */
.pf-modal-slides {
  flex: 1;
  position: relative;
  overflow: hidden;
}
/* Bottom fade — signals more content below; hidden once user reaches the end */
.pf-modal-slides::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: linear-gradient(to top, rgba(6,13,28,0.88), transparent);
  pointer-events: none;
  z-index: 6;
  transition: opacity 0.35s ease;
}
.pf-modal-slides.pf-at-bottom::after { opacity: 0; }
.pf-modal-slide {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}
.pf-modal-slide::-webkit-scrollbar { width: 5px; }
.pf-modal-slide::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 10px; }
.pf-modal-slide.active {
  opacity: 1;
  pointer-events: all;
}
.pf-modal-slide img {
  width: 100%;
  display: block;
}

/* Nav arrows */
@keyframes pf-nav-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.18), 0 4px 16px rgba(0,0,0,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(255,255,255,0.06), 0 4px 16px rgba(0,0,0,0.5); }
}
.pf-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(8, 16, 36, 0.82);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  animation: pf-nav-pulse 2.4s ease-in-out infinite;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.pf-modal-nav:hover {
  background: rgba(2,135,141, 0.92);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-50%) scale(1.1);
  animation: none;
}
.pf-modal-prev { left: 14px; }
.pf-modal-next { right: 14px; }
.pf-modal-nav.pf-hidden {
  opacity: 0;
  pointer-events: none;
}

/* Footer */
.pf-modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 11px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}
.pf-modal-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.pf-modal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s, width 0.25s;
}
.pf-modal-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}
.pf-modal-counter {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  min-width: 40px;
  text-align: right;
}

/* Responsive */
@media (max-width: 600px) {
  .pf-modal {
    height: 92vh;
    border-radius: 14px;
  }
  .pf-modal-prev { left: 8px; }
  .pf-modal-next { right: 8px; }
  .pf-modal-nav { width: 38px; height: 38px; }
}



/* ====================================================
   REGISTER / QUOTE PAGE
   ==================================================== */
/* =============================================
   register.css — Quote / Register page styles
   Depends on: styles.css (base variables)
   ============================================= */

/* ── Section wrapper ── */
.register-section {
  padding: 60px 0 110px;
  background: linear-gradient(160deg, #02070B 0%, #02070B 45%, #02878D 100%);
}

.register-wrap {
  max-width: 720px;
  margin: 0 auto;
}

/* =============================================
   INTENT CHOOSER CARDS
   ============================================= */
.intent-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(8, 16, 36, 0.28);
}

.intent-card {
  position: relative;
  cursor: pointer;
}

.intent-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.intent-card-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.intent-card-label::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.28s;
}

.intent-card-label:hover {
  border-color: rgba(147, 197, 253, 0.4);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.intent-card-label:hover::after { opacity: 1; }

.intent-card input:checked + .intent-card-label {
  border-color: #0CB1B2;
  background: linear-gradient(135deg, rgba(2,135,141, 0.6), rgba(15, 23, 42, 0.65));
  box-shadow: 0 0 0 1px #0CB1B2, 0 18px 50px rgba(2,135,141, 0.5);
  transform: translateY(-4px);
}

.intent-card input:checked + .intent-card-label::after {
  opacity: 1;
  background: linear-gradient(90deg, transparent, #0CB1B2, transparent);
}

.intent-text { flex: 1; min-width: 0; }

.intent-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.intent-card-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

.intent-card input:checked + .intent-card-label .intent-card-desc {
  color: rgba(147, 197, 253, 0.65);
}

/* Tick badge */
.intent-check {
  position: absolute;
  top: 14px; right: 14px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #0CB1B2;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.3) rotate(-20deg);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.intent-card input:checked ~ .intent-check {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* =============================================
   ANIMATED GEO ICONS — intent cards
   ============================================= */
.geo-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  position: relative;
}

/* ── NEW WEBSITE: orbiting diamond ── */
.geo-new .ring {
  position: absolute; inset: 0;
  border: 1.5px solid rgba(147, 197, 253, 0.3);
  border-radius: 50%;
  animation: geoSpinRing 6s linear infinite;
}
.geo-new .ring-2 {
  inset: 7px;
  border-color: rgba(147, 197, 253, 0.15);
  animation-direction: reverse;
  animation-duration: 9s;
}
.geo-new .diamond {
  position: absolute; top: 50%; left: 50%;
  width: 16px; height: 16px;
  background: linear-gradient(135deg, #5CD5D6, #0CB1B2);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 12px rgba(12,177,178, 0.6);
  animation: geoDiamondPulse 2.5s ease-in-out infinite;
}
.geo-new .orbit-dot {
  position: absolute;
  width: 5px; height: 5px;
  background: #5CD5D6;
  border-radius: 50%;
  top: 5px; left: 50%; margin-left: -2.5px;
  box-shadow: 0 0 6px #5CD5D6;
  transform-origin: 2.5px 21px;
  animation: geoOrbitDot 6s linear infinite;
}

/* Selected state: speed up */
.intent-card input:checked + .intent-card-label .geo-new .ring {
  animation-duration: 2s;
  border-color: rgba(147, 197, 253, 0.7);
}
.intent-card input:checked + .intent-card-label .geo-new .ring-2 {
  animation-duration: 3s;
}
.intent-card input:checked + .intent-card-label .geo-new .orbit-dot {
  animation-duration: 2s;
  background: #fff;
  box-shadow: 0 0 10px #fff;
}
.intent-card input:checked + .intent-card-label .geo-new .diamond {
  background: linear-gradient(135deg, #fff, #5CD5D6);
}

/* ── EXISTING WEBSITE: spinning hexagon ── */
.geo-existing .hex {
  position: absolute; top: 50%; left: 50%;
  width: 30px; height: 30px;
  background: linear-gradient(135deg, rgba(196, 181, 253, 0.8), rgba(124, 58, 237, 0.6));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transform: translate(-50%, -50%);
  animation: geoHexSpin 8s linear infinite;
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.4);
}
.geo-existing .hex-inner {
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 14px;
  background: rgba(255, 255, 255, 0.18);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transform: translate(-50%, -50%) rotate(30deg);
  animation: geoHexSpinReverse 5s linear infinite;
}
.geo-existing .scan-line {
  position: absolute;
  left: 6px; right: 6px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.9), transparent);
  top: 10px;
  animation: geoScan 2s ease-in-out infinite;
}

.intent-card input:checked + .intent-card-label .geo-existing .hex {
  background: linear-gradient(135deg, #C7CCD0, #505558);
  animation-duration: 3s;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.7);
}
.intent-card input:checked + .intent-card-label .geo-existing .scan-line {
  background: linear-gradient(90deg, transparent, #C7CCD0, transparent);
  animation-duration: 1s;
}

/* =============================================
   PACKAGE CARD ICONS
   ============================================= */
.pkg-ico {
  width: 36px;
  height: 36px;
  position: relative;
  flex-shrink: 0;
}

/* ── STARTER: plain diamond ── */
.pkg-ico-starter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pkg-ico-starter .d {
  width: 16px; height: 16px;
  background: linear-gradient(135deg, #5CD5D6, #0CB1B2);
  transform: rotate(45deg);
  border-radius: 2px;
}
.pkg-cat-label:hover .pkg-ico-starter .d {
  animation: pkgStarterPulse 1.8s ease-in-out infinite;
}
.pkg-cat-card input:checked + .pkg-cat-label .pkg-ico-starter .d {
  background: #fff;
  animation: pkgStarterPulse 1.8s ease-in-out infinite;
}

/* ── BUSINESS: diamond + single glowing ring ── */
.pkg-ico-business .b-ring {
  position: absolute; inset: 0;
  border: 1.5px solid rgba(12,177,178, 0.35);
  border-radius: 50%;
  animation: geoSpinRing 7s linear infinite;
}
.pkg-ico-business .b-d {
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 14px;
  background: linear-gradient(135deg, #5CD5D6, #0CB1B2);
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 2px;
  animation: pkgBizGlow 2.4s ease-in-out infinite;
}
.pkg-cat-card input:checked + .pkg-cat-label .pkg-ico-business .b-ring {
  border-color: rgba(12,177,178, 0.7);
  animation-duration: 3s;
}
.pkg-cat-card input:checked + .pkg-cat-label .pkg-ico-business .b-d {
  background: #fff;
  box-shadow: 0 0 20px rgba(255,255,255, 0.5);
}

/* ── CUSTOM: full orbiting diamond (matches intent card) ── */
.pkg-ico-custom .c-ring {
  position: absolute; inset: 0;
  border: 1.5px solid rgba(147, 197, 253, 0.3);
  border-radius: 50%;
  animation: geoSpinRing 5s linear infinite;
}
.pkg-ico-custom .c-ring-2 {
  inset: 6px;
  border-color: rgba(147, 197, 253, 0.15);
  animation-direction: reverse;
  animation-duration: 8s;
}
.pkg-ico-custom .c-d {
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 12px;
  background: linear-gradient(135deg, #5CD5D6, #0CB1B2);
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 1px;
  animation: geoDiamondPulse 2.5s ease-in-out infinite;
}
.pkg-ico-custom .c-dot {
  position: absolute;
  width: 4px; height: 4px;
  background: #5CD5D6;
  border-radius: 50%;
  top: 3px; left: 50%; margin-left: -2px;
  box-shadow: 0 0 5px #5CD5D6;
  transform-origin: 2px 15px;
  animation: geoOrbitDot 5s linear infinite;
}
.pkg-cat-card input:checked + .pkg-cat-label .pkg-ico-custom .c-ring {
  animation-duration: 2s;
  border-color: rgba(147, 197, 253, 0.7);
}
.pkg-cat-card input:checked + .pkg-cat-label .pkg-ico-custom .c-d {
  background: #fff;
  box-shadow: 0 0 14px rgba(255,255,255, 0.4);
}
.pkg-cat-card input:checked + .pkg-cat-label .pkg-ico-custom .c-ring-2 {
  animation-duration: 3s;
}
.pkg-cat-card input:checked + .pkg-cat-label .pkg-ico-custom .c-dot {
  animation-duration: 2s;
  background: #0CB1B2;
  box-shadow: 0 0 8px #0CB1B2;
}

/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes geoSpinRing    { to { transform: rotate(360deg); } }
@keyframes geoOrbitDot    { to { transform: rotate(360deg); } }
@keyframes geoDiamondPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(12,177,178, 0.4); }
  50%       { box-shadow: 0 0 22px rgba(12,177,178, 0.85); }
}
@keyframes geoHexSpin         { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes geoHexSpinReverse  { to { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes geoScan {
  0%, 100% { top: 8px;  opacity: 0; }
  20%       { opacity: 1; }
  80%       { opacity: 1; }
  100%      { top: 44px; opacity: 0; }
}
@keyframes pkgStarterPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(12,177,178, 0.3); }
  50%       { box-shadow: 0 0 16px rgba(12,177,178, 0.7); }
}
@keyframes pkgBizGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(12,177,178, 0.35); }
  50%       { box-shadow: 0 0 18px rgba(12,177,178, 0.75); }
}

/* =============================================
   FORM CARD
   ============================================= */
.register-form-card {
  background: #13161A;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.06);
  display: none;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.38s ease, transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.register-form-card.visible {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

/* ── Form header ── */
.form-header {
  padding: 36px 40px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.form-header-left { flex: 1; }

.form-path-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
  margin-bottom: 10px;
}

.form-path-line {
  display: inline-block;
  width: 18px; height: 1.5px;
  background: #cbd5e1;
  vertical-align: middle;
  margin-right: 4px;
}

.form-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}

.form-header h2 em {
  font-style: italic;
  color: var(--primary);
}

.form-header p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 380px;
}

/* Mini geo in header corner */
.form-header-geo {
  width: 48px; height: 48px;
  position: relative;
  flex-shrink: 0;
  opacity: 0.45;
}
.fh-ring {
  position: absolute; inset: 0;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  animation: geoSpinRing 10s linear infinite;
}
.fh-ring-2 {
  inset: 8px;
  animation-direction: reverse;
  animation-duration: 14s;
}
.fh-dot {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--primary);
  border-radius: 50%;
  top: 3px; left: 50%; margin-left: -2px;
  transform-origin: 2px 21px;
  animation: geoOrbitDot 10s linear infinite;
}
.fh-center {
  position: absolute; top: 50%; left: 50%;
  width: 10px; height: 10px;
  background: var(--primary);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.6;
}
/* Existing variant — purple hex */
.form-header-geo.geo-hex .fh-center {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border-radius: 0;
  background: #0CB1B2;
}
.form-header-geo.geo-hex .fh-dot    { background: #0CB1B2; }
.form-header-geo.geo-hex .fh-ring   { border-color: #e9d5ff; }
.form-header-geo.geo-hex .fh-ring-2 { border-color: #f3e8ff; }

/* ── Form body ── */
.form-body { padding: 32px 40px 40px; }

/* Section dividers */
.form-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  margin-top: 24px;
}
.form-section-head:first-child { margin-top: 0; }

.form-section-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #02878D);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
}

.form-section-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

/* ── Grid + fields ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  align-items: end;
}

.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field-full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.79rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.01em;
}

.field-req { color: #ef4444; margin-left: 2px; }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field select,
.form-field textarea {
  padding: 11px 14px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-left-width: 3px;
  border-radius: 10px;
  font-size: 0.91rem;
  font-family: var(--font-body);
  color: #e2e8f0;
  background: #1c2026;
  width: 100%;
  outline: none;
  resize: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s, border-left-color 0.18s;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255,255,255,0.12);
  border-left-color: var(--primary);
  box-shadow: -3px 0 14px rgba(12,177,178,0.18), 0 0 0 3px rgba(12,177,178,0.08);
  background: #1a2428;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #1c2026;
  padding-right: 40px;
  cursor: pointer;
}
.form-field select option {
  background: #1c2026;
  color: #e2e8f0;
}

/* ── Package chooser ── */
.pkg-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 10px;
}

/* ── "Not sure" checkbox ── */
.pkg-unsure-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  cursor: pointer;
  width: fit-content;
}
.pkg-unsure-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.pkg-unsure-box {
  flex-shrink: 0;
  width: 17px; height: 17px;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  transition: all 0.18s ease;
  display: flex; align-items: center; justify-content: center;
}
.pkg-unsure-box::after {
  content: '';
  width: 9px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.pkg-unsure-check input:checked ~ .pkg-unsure-box {
  background: var(--primary);
  border-color: var(--primary);
}
.pkg-unsure-check input:checked ~ .pkg-unsure-box::after { opacity: 1; }
.pkg-unsure-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.18s;
}
.pkg-unsure-check:hover .pkg-unsure-label,
.pkg-unsure-check input:checked ~ .pkg-unsure-label {
  color: rgba(255,255,255,0.65);
}

/* Tier wrap disabled state */
.pkg-tier-wrap.tier-disabled {
  opacity: 0.28;
  pointer-events: none;
  filter: grayscale(0.4);
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.pkg-tier-wrap { transition: opacity 0.25s ease, filter 0.25s ease; }

.pkg-category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pkg-cat-card { position: relative; cursor: pointer; }
.pkg-cat-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.pkg-cat-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 10px 14px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  text-align: center;
  transition: all 0.22s;
}

.pkg-cat-label:hover {
  border-color: rgba(12,177,178,0.5);
  background: rgba(12,177,178,0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2,135,141, 0.12);
}

.pkg-cat-card input:checked + .pkg-cat-label {
  border-color: #0CB1B2;
  background: linear-gradient(135deg, rgba(2,135,141,0.22), rgba(15,23,42,0.45));
  box-shadow: 0 0 0 1px #0CB1B2, 0 10px 32px rgba(2,135,141,0.35);
  transform: translateY(-2px);
}

.pkg-cat-name { font-size: 0.84rem; font-weight: 700; color: #e2e8f0; }
.pkg-cat-hint { font-size: 0.67rem; color: #94a3b8; }

.pkg-tier-wrap { margin-top: 12px; display: none; }
.pkg-tier-wrap.active { display: block; }
.pkg-tier-wrap label {
  font-size: 0.79rem;
  font-weight: 600;
  color: #6b7280;
  display: block;
  margin-bottom: 5px;
}

/* ── Submit area ── */
.form-submit-area { margin-top: 28px; }

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 28px;
  cursor: pointer;
}

.form-assurance {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.form-assurance span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.73rem;
  color: #94a3b8;
  font-weight: 500;
}

.fa-check {
  width: 12px;
  height: 12px;
  display: inline-block;
  flex-shrink: 0;
}

/* ── Success state ── */
.register-success {
  text-align: center;
  padding: 48px 24px;
  display: none;
}

.register-success .success-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #02878D);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 28px rgba(2,135,141, 0.35);
}

.register-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.register-success p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 600px) {
  .intent-cards          { grid-template-columns: 1fr; }
  .form-header           { flex-direction: column; gap: 12px; padding: 24px 20px 20px; }
  .form-body             { padding: 24px 20px 32px; }
  .form-grid             { grid-template-columns: 1fr; }
  .form-field-full       { grid-column: 1; }
  .pkg-category-cards    { grid-template-columns: 1fr; }
  .register-form-card    { border-radius: 16px; }
  .form-progress         { padding: 12px 20px; gap: 0; }
  .fp-label              { display: none; }
}

/* ── Floating labels ── */
.float-field {
  position: relative;
}
.form-field.float-field input,
.form-field.float-field textarea {
  padding-top: 26px;
  padding-bottom: 8px;
}
.form-field.float-field.float-field--area textarea {
  padding-top: 30px;
}
.float-field label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.91rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease, font-weight 0.18s ease, letter-spacing 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
  max-width: calc(100% - 28px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.float-field--area label {
  top: 16px;
  transform: none;
}
.float-field input:focus ~ label,
.float-field input:not(:placeholder-shown) ~ label {
  top: 7px;
  transform: none;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.float-field textarea:focus ~ label,
.float-field textarea:not(:placeholder-shown) ~ label {
  top: 7px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* --------------------------------------------------------
   How It Works page
   -------------------------------------------------------- */

/* -- Simple steps strip --------------------------- */
.simple-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: flex-start;
  max-width: 880px;
  margin: 0 auto;
}
.simple-step { text-align: center; padding: 0 16px; }
.simple-step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #045B61, #02878D);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 28px rgba(2,135,141,0.25);
}
.simple-step h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.simple-step p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.simple-step-arrow { font-size: 1.8rem; color: #cbd5e1; padding-top: 20px; }

/* -- Fork section --------------------------------- */
.fork-section { padding: 100px 0; background: var(--cream); }
.fork-label   { text-align: center; margin-bottom: 14px; }
.fork-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900; color: var(--dark);
  text-align: center; line-height: 1.2; margin-bottom: 14px;
}
.fork-title em { color: var(--primary); font-style: italic; }
.fork-subtitle {
  text-align: center; color: var(--text-muted);
  font-size: 1rem; max-width: 500px; margin: 0 auto 64px; line-height: 1.75;
}
.fork-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 960px; margin: 0 auto;
}
.fork-card {
  background: #fff; border: 1.5px solid #e4eaf4;
  border-radius: 20px; padding: 44px 40px; position: relative;
}
.fork-card--managed {
  border-color: var(--primary);
  box-shadow: 0 16px 56px rgba(2,135,141,0.14);
}
.fork-card-badge {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: 20px; padding: 5px 14px; margin-bottom: 22px;
}
.fork-card--solo    .fork-card-badge { background: #f1f5f9; color: #64748b; }
.fork-card--managed .fork-card-badge { background: #045B61; color: #fff; }
.fork-card-icon { font-size: 2.6rem; margin-bottom: 14px; }
.fork-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.fork-card > p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; min-height: 60px; }
.fork-price { font-size: 2rem; font-weight: 900; color: var(--dark); margin-bottom: 28px; font-family: var(--font-display); }
.fork-price small { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }
.fork-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 0; margin-bottom: 32px;
  border: 1px solid #f0f4fb; border-radius: 12px; overflow: hidden;
}
.fork-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.88rem; padding: 11px 14px;
  border-bottom: 1px solid #f0f4fb; line-height: 1.5;
}
.fork-features li:last-child { border-bottom: none; }
.fork-features li:nth-child(even) { background: #fafcff; }
.fork-feat-icon { font-size: 1rem; width: 22px; flex-shrink: 0; margin-top: 1px; }
.fork-feat-text { flex: 1; }
.fork-feat-text strong { display: block; font-weight: 600; color: var(--dark); }
.fork-feat-text span   { color: var(--text-muted); font-size: 0.82rem; }
.fork-feat--missing .fork-feat-text strong { color: #94a3b8; }
.fork-feat--missing .fork-feat-text span   { color: #cbd5e1; }
.fork-missout {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border: 1px solid #fcd34d; border-radius: 12px;
  padding: 16px 18px; margin-bottom: 24px;
  font-size: 0.85rem; color: #92400e; line-height: 1.6;
}
.fork-missout strong { display: block; font-weight: 700; margin-bottom: 4px; color: #78350f; }
.fork-recommended {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #045B61, #02878D); color: #fff;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 6px 20px; border-radius: 20px;
  white-space: nowrap; box-shadow: 0 4px 14px rgba(2,135,141,0.3);
}
.fork-card .btn { width: 100%; text-align: center; justify-content: center; }
.fork-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* -- Managed perks grid --------------------------- */
.managed-perks { padding: 100px 0; background: var(--dark); }
.managed-perks .section-label { color: rgba(255,255,255,0.45); }
.managed-perks .section-title { color: #fff; }
.managed-perks .section-title em { color: #5CD5D6; font-style: italic; }
.managed-perks .section-sub { color: rgba(255,255,255,0.5); }
.perks-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.perk-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 32px 26px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.perk-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(147,197,253,0.25); }
.perk-emoji { font-size: 2rem; margin-bottom: 14px; display: block; }
.perk-card h3 { font-size: 0.98rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.perk-card p  { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* -- FAQ ------------------------------------------ */
.hiw-faq-section { padding: 100px 0; background: #fff; }
.hiw-faq { max-width: 720px; margin: 0 auto; }
.hiw-faq-item { border-bottom: 1px solid var(--border); }
.hiw-faq-item:first-child { border-top: 1px solid var(--border); }
.hiw-faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px; font-size: 0.98rem; font-weight: 600; color: var(--dark); user-select: none;
}
.hiw-faq-item summary::-webkit-details-marker { display: none; }
.hiw-faq-item summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--primary); flex-shrink: 0; }
.hiw-faq-item[open] summary::after { content: '-'; }
.hiw-faq-item > p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.8; padding: 0 4px 22px; }
.hiw-faq-item > p a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* -- How It Works hero ---------------------------- */
.hiw-hero { padding: 140px 0 100px; }
.hiw-hero-inner { position: relative; z-index: 2; text-align: center; }
.hiw-label-muted { color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.hiw-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900; color: #fff;
  line-height: 1.08; margin-bottom: 22px;
}
.hiw-gradient-em {
  background: linear-gradient(90deg, #5CD5D6, #C7CCD0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-style: italic;
}
.hiw-hero-sub {
  color: rgba(255,255,255,0.55); font-size: 1.05rem;
  max-width: 520px; margin: 0 auto 48px; line-height: 1.8;
}
.hiw-hero-btn { font-size: 1rem; padding: 14px 30px; }

/* ── How It Works: numbered step sections ──────────────── */
.hiw-step-section {
  padding: 96px 0;
  background: var(--dark, #1a1a1a);
}
/* Dark sections (1 & 3): force headings to white */
.hiw-step-section .section-label { color: var(--teal); }
.hiw-step-section .section-title { color: #fff; }
.hiw-step-section .section-title em { color: var(--teal); font-style: italic; }

/* Alt sections (2 & 4): white background with dark text */
.hiw-step-section--alt {
  background: var(--silver-hi, #E6E8EA);
  border-top: 1px solid var(--silver-mid, #C7CCD0);
  border-bottom: 1px solid var(--silver-mid, #C7CCD0);
}
.hiw-step-section--alt .section-label { color: var(--teal-mid, #02878D); }
.hiw-step-section--alt .section-title { color: var(--dark, #1a1a1a); }
.hiw-step-section--alt .section-title em { color: var(--teal-mid, #02878D); font-style: italic; }
.hiw-step-section--alt .hiw-step-num   { color: rgba(4, 91, 97, 0.65); opacity: 1; }
.hiw-step-section--alt .hiw-step-intro { color: rgba(0,0,0,0.55); }

.hiw-step-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 12px;
}
.hiw-step-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.9;
  color: rgba(12, 177, 178, 0.65);
  opacity: 1;
  flex-shrink: 0;
  user-select: none;
  margin-top: 4px;
}
.hiw-step-title-wrap { flex: 1; }
.hiw-step-title-wrap .section-label { margin-bottom: 6px; }
.hiw-step-title-wrap .section-title  { margin-bottom: 0; }
.hiw-step-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  margin: 0 0 48px;
  line-height: 1.75;
}
/* Two-path grid */
.hiw-paths {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
}
.hiw-path-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
}
/* Dark section card overrides already inherited; white section overrides: */
.hiw-step-section--alt .hiw-path-card {
  background: #ffffff;
  border-color: var(--silver-mid, #C7CCD0);
}
/* Path subtitle (replaces pill tag) */
.hiw-path-subtitle {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin: 0 0 10px;
}
.hiw-step-section--alt .hiw-path-subtitle { color: var(--teal-mid, #02878D); }
.hiw-path-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.hiw-step-section--alt .hiw-path-card h3 { color: var(--dark, #1a1a1a); }
.hiw-path-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.hiw-step-section--alt .hiw-path-card p { color: rgba(0,0,0,0.58); }
.hiw-path-qs {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hiw-path-qs li {
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}
.hiw-step-section--alt .hiw-path-qs li {
  background: rgba(0,0,0,0.04);
  color: rgba(0,0,0,0.65);
}
.hiw-path-divider {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 28px 0;
}
.hiw-path-divider span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-step-section--alt .hiw-path-divider span {
  color: rgba(0,0,0,0.3);
  background: #fff;
  border-color: #dde1e5;
}
/* Completion pillars */
.hiw-completion-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.hiw-pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}
.hiw-pillar-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.hiw-pillar h3   { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hiw-pillar p    { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.65; }
.hiw-completion-note {
  background: rgba(12,177,178,0.06);
  border: 1px solid rgba(12,177,178,0.18);
  border-radius: 12px;
  padding: 22px 28px;
}
.hiw-completion-note p {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0;
  font-size: 0.96rem;
}
/* Portfolio teaser (section 4 — white bg) */
.hiw-portfolio-teaser {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.hiw-pf-item {
  background: #ffffff;
  border: 1px solid var(--silver-mid, #C7CCD0);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
  padding: 0;
}
.hiw-pf-item:hover {
  border-color: rgba(12,177,178,0.4);
  box-shadow: 0 8px 32px rgba(12,177,178,0.1);
}
.hiw-pf-banner {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.hiw-pf-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hiw-pf-body { padding: 24px 28px 28px; }
.hiw-pf-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-mid, #02878D);
  background: rgba(2,135,141,0.08);
  border: 1px solid rgba(2,135,141,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.hiw-pf-item h3 { font-size: 1.22rem; font-weight: 700; color: var(--dark, #1a1a1a); margin-bottom: 8px; }
.hiw-pf-item p  { color: rgba(0,0,0,0.55); font-size: 0.92rem; line-height: 1.65; margin: 0; }
.hiw-portfolio-cta { text-align: center; }
/* Step section responsive */
@media (max-width: 860px) {
  .hiw-paths { grid-template-columns: 1fr; }
  .hiw-path-divider { padding: 16px 0; align-items: center; }
  .hiw-completion-pillars { grid-template-columns: 1fr; }
  .hiw-portfolio-teaser { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hiw-step-header { flex-direction: column; gap: 6px; }
  .hiw-step-num { font-size: 3rem; }
  .hiw-step-section { padding: 64px 0; }
}

/* ── HIW: Scroll-reveal animation classes ─────────────── */
.hiw-anim,
.hiw-anim-left,
.hiw-anim-right {
  opacity: 0;
}
.hiw-anim        { transform: translateY(30px); }
.hiw-anim-left   { transform: translateX(-40px); }
.hiw-anim-right  { transform: translateX(40px); }

.hiw-anim,
.hiw-anim-left,
.hiw-anim-right  {
  transition:
    opacity  0.68s cubic-bezier(0.22, 1, 0.36, 1) var(--anim-delay, 0s),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1) var(--anim-delay, 0s);
}
.hiw-anim.is-visible,
.hiw-anim-left.is-visible,
.hiw-anim-right.is-visible {
  opacity: 1;
  transform: none;
}

/* ── HIW: Dot-grid texture on dark sections ───────────── */
.hiw-step-section {
  background-image: radial-gradient(rgba(12, 177, 178, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── HIW: Left teal accent bar ────────────────────────── */
.hiw-step-section,
.hiw-step-section--alt {
  position: relative;
}
.hiw-step-section::after,
.hiw-step-section--alt::after {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 3px;
  border-radius: 2px;
}
.hiw-step-section::after {
  background: linear-gradient(to bottom, transparent, rgba(12,177,178,0.55) 40%, rgba(12,177,178,0.55) 60%, transparent);
}
.hiw-step-section--alt::after {
  background: linear-gradient(to bottom, transparent, rgba(2,135,141,0.4) 40%, rgba(2,135,141,0.4) 60%, transparent);
}

/* ── HIW: Em underline draw-in on scroll ─────────────── */
.hiw-step-title-wrap .section-title em {
  position: relative;
}
.hiw-step-title-wrap .section-title em::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}
.hiw-step-title-wrap.is-visible .section-title em::after {
  width: 100%;
}

/* ── HIW: Enhanced card hovers ────────────────────────── */
.hiw-path-card {
  transition:
    transform  0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.hiw-step-section .hiw-path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.38);
  border-color: rgba(12, 177, 178, 0.45);
}
.hiw-step-section--alt .hiw-path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--teal, #0CB1B2);
}

/* ── HIW: Pillar hover lift + icon bounce ─────────────── */
.hiw-pillar {
  transition:
    transform  0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.hiw-pillar:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
  border-color: rgba(12, 177, 178, 0.38);
}
.hiw-pillar-icon {
  display: block;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hiw-pillar:hover .hiw-pillar-icon {
  transform: rotate(-10deg) scale(1.2);
}

/* ── HIW: Portfolio banner zoom on hover ─────────────── */
.hiw-pf-banner img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.hiw-pf-item:hover .hiw-pf-banner img {
  transform: scale(1.06);
}

/* ── HIW: Completion note hover glow ─────────────────── */
.hiw-completion-note {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.hiw-completion-note:hover {
  border-color: rgba(12, 177, 178, 0.4);
  box-shadow: 0 0 0 1px rgba(12,177,178,0.12), 0 8px 28px rgba(12,177,178,0.1);
}

.hiw-process-section { padding: 100px 0; background: #fff; }
.hiw-reassure {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px; margin-top: 72px;
  padding: 28px 40px;
  background: var(--cream); border-radius: 16px; border: 1px solid var(--border);
}
.hiw-reassure-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--dark);
}
.hiw-reassure-icon { font-size: 1.25rem; }
.hiw-reassure-divider { width: 1px; height: 26px; background: var(--border); }

/* -- Bottom CTA section --------------------------- */
/* ── FAQ Section ─────────────────────────────────── */
.hiw-faq-section {
  padding: 100px 0;
  background: var(--dark);
}
.hiw-faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.hiw-faq-title { color: #fff; }
.hiw-faq-title em { color: var(--primary); font-style: italic; }
.hiw-faq-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
  line-height: 1.7;
}

.hiw-faq-list {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--primary); }
.faq-item.open .faq-q { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s ease;
  line-height: 1;
}
.faq-item.open .faq-icon {
  border-color: var(--primary);
  color: var(--primary);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
}
.faq-a p {
  padding-bottom: 22px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.faq-a p strong { color: rgba(255,255,255,0.75); font-weight: 600; }
.faq-inline-link { color: var(--primary); text-decoration: none; font-weight: 600; }
.faq-inline-link:hover { text-decoration: underline; }

.hiw-faq-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hiw-faq-cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
}

.hiw-cta-section {
  padding: 110px 0; background: var(--dark);
  text-align: center; position: relative; overflow: hidden;
}
.hiw-cta-grid-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none;
}
.hiw-cta-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hiw-cta-orb--1 {
  top: -180px; right: -120px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(12,177,178,0.18) 0%, transparent 70%);
  filter: blur(80px);
}
.hiw-cta-orb--2 {
  bottom: -120px; left: -80px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  filter: blur(80px);
}
.hiw-cta-inner { position: relative; z-index: 2; }
.hiw-cta-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: #5CD5D6; margin-bottom: 20px;
}
.hiw-cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 900; color: #fff;
  line-height: 1.12; margin-bottom: 20px;
}
.hiw-gradient-span {
  background: linear-gradient(90deg, #5CD5D6, #C7CCD0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hiw-cta-sub {
  color: rgba(255,255,255,0.52); font-size: 1rem;
  max-width: 420px; margin: 0 auto 44px; line-height: 1.8;
}
.hiw-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hiw-cta-outline { border-color: rgba(255,255,255,0.25); color: #fff; font-size: 1rem; padding: 14px 30px; }

/* -- Responsive ----------------------------------- */
@media (max-width: 860px) {
  .simple-steps { grid-template-columns: 1fr; gap: 32px; }
  .simple-step-arrow { display: none; }
  .fork-cards { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .perks-grid { grid-template-columns: 1fr; } }
