/* ============================================================
   TheFlyerLab Web Division — Global Stylesheet
   Fonts: Visby CF (display) + DM Sans (body)
   ============================================================ */

/* ===== DM SANS (self-hosted) ===== */
/* latin-ext */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/DMSans-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/DMSans-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext italic */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/DMSans-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin italic */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/DMSans-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== VISBY CF ===== */
@font-face {
  font-family: 'Visby CF';
  src: url('../fonts/VisbyCF-DemiBold.woff2') format('woff2'),
       url('../fonts/VisbyCF-DemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Visby CF';
  src: url('../fonts/VisbyCF-Bold.woff2') format('woff2'),
       url('../fonts/VisbyCF-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Visby CF';
  src: url('../fonts/VisbyCF-ExtraBold.woff2') format('woff2'),
       url('../fonts/VisbyCF-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== FOCUS ===== */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== TOKENS ===== */
:root {
  --white:      #FFFFFF;
  --offwhite:   #1A1F2B;
  --ink:        #E2E8F0;
  --ink-mid:    #94A3B8;
  --ink-lt:     #64748B;
  --blue:       #006eff;
  --blue-dk:    #0058cc;
  --blue-lt:    rgba(0,110,255,0.18);
  --green:      #059669;
  --green-check:#22c55e;
  --amber:      #D97706;
  --amber-lt:   #f59e0b;
  --red:        #e05252;
  --red-error:  #e53e3e;
  --purple:     #AD42F4;
  --orange:     #ed6a31;
  --orange-lt:  #fb923c;
  --coral:      #f97316;
  --yellow:     #f5cf0b;
  --teal:       #10b981;
  --violet:     #7c3aed;
  --mac-red:    #ff5f57;
  --mac-yellow: #febc2e;
  --mac-green:  #28c840;
  --surface-lc: #141f33;
  --rule:       rgba(255,255,255,0.09);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.25);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.4);
  --navy:       #0D1321;
  --surface:    #141926;
  --card:       #141926;
  --fd: 'Visby CF', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --max-w: 1280px;
  --pad-x: max(48px, calc((100% - var(--max-w)) / 2));
  --pad-x-sm: 20px;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
footer { margin-top: auto; }
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { letter-spacing: -0.03em; }
p { font-size: 15px; }

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0; z-index: 200;
  height: 62px;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,19,33,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dot { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-links a.active {
  font-weight: 700;
  color: var(--blue);
}

a.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  isolation: isolate;
  background: none;
  color: #fff !important;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 9px 20px;
  border-radius: 8px;
  overflow: hidden;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Blue base layer */
a.nav-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  z-index: -1;
}
/* White fill — slides in from left on hover */
a.nav-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
a.nav-btn:hover::after,
a.nav-btn:active::after { transform: translateX(0); }
a.nav-btn:hover,
a.nav-btn:active { color: var(--blue) !important; }

/* ===== MOBILE NAV TOGGLE ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s;
  flex-shrink: 0;
}

.nav-toggle:hover { background: var(--offwhite); }
.nav-toggle { min-width: 44px; min-height: 44px; }

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animate to X when open */
nav.nav-open .nav-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .nav-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: 72px var(--pad-x) 64px;
  border-bottom: none;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 120% at 95% 50%, rgba(0,110,255,0.35) 0%, transparent 65%),
    var(--navy);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to left, rgba(0,110,255,0.6) 0%, transparent 65%);
  pointer-events: none;
}




.page-header .sec-kicker { margin-bottom: 14px; color: var(--blue); }
.page-header .sec-kicker::before { display: none; }

.page-header h1 {
  font-family: var(--fd);
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: #ffffff;
}

.page-header p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 520px;
}

/* ===== PAGE HEADER SPLIT (services, pricing) ===== */
.page-header--split {
  display: flex;
  align-items: center;
  gap: 180px;
}

.page-header-text { flex: 1; max-width: 540px; }
.page-header-visual { flex: 0 0 auto; }

/* Lighthouse mock */
.lighthouse-mock {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 24px 24px;
  min-width: 300px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.lh-url {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 7px 12px;
  margin-bottom: 20px;
}

.lh-url span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-family: var(--fd);
  letter-spacing: 0.01em;
}

.lh-scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.lh-score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.lh-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(var(--lh-color, #0cce6b) var(--lh-deg, 360deg), rgba(255,255,255,0.06) 0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lh-circle-inner {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #0a0f1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lh-num {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: var(--lh-color, #0cce6b);
}

@keyframes lhBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.lh-cursor {
  display: inline-block;
  width: 1.5px;
  height: 13px;
  background: rgba(255,255,255,0.45);
  border-radius: 1px;
  vertical-align: middle;
  margin-left: 1px;
  animation: lhBlink 1s ease-in-out infinite;
}

.lh-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.lh-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 7px;
}

.lh-footer span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: var(--fd);
  letter-spacing: 0.03em;
}

/* ===== INVOICE MOCK ===== */
.invoice-mock {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 22px 26px 24px;
  min-width: 300px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.inv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.inv-label {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
}

.inv-badge {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,110,255,0.18);
  border: 1px solid rgba(0,110,255,0.35);
  border-radius: 20px;
  padding: 3px 10px;
}

.inv-project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.inv-project-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-family: var(--fd);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.inv-project-val {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-family: var(--fd);
  font-weight: 600;
}

.inv-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 14px 0;
}

.inv-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inv-row-label {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-family: var(--fd);
}

.inv-val {
  font-size: 14px;
  font-weight: 600;
  color: #0cce6b;
  font-family: var(--fd);
}

.inv-val--zero {
  color: rgba(255,255,255,0.22);
}

.inv-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inv-total-label {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
}

.inv-total-val {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

/* ===== SECTION BASE ===== */
.section { padding: 88px var(--pad-x); }
.section.alt { background: var(--offwhite); }

.sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fd);
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.sec-kicker::before {
  display: none;
}

.hl-text { color: var(--blue); }

.sec-title {
  font-family: var(--fd);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.72;
  max-width: 520px;
}

.sec-sub a {
  color: var(--blue);
  font-weight: 500;
  white-space: nowrap;
}

.sec-sub a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sec-header .sec-sub {
  max-width: none;
}

.sec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 28px;
}

.sec-header--lg { margin-bottom: 48px; }

.sec-intro { margin-bottom: 40px; }
.sec-intro--lg { margin-bottom: 48px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  background: linear-gradient(to right, #fff 49%, var(--blue) 51%);
  background-size: 210% 100%;
  background-position: right center;
  color: #fff;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 10px;
  transition: background-position 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s;
}
.btn-primary:hover { background-position: left center; color: var(--blue); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-mid);
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

.btn-outline:hover { border-color: var(--ink); color: var(--ink); background: rgba(255,255,255,0.06); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  background: linear-gradient(to right, var(--blue) 49%, #fff 51%);
  background-size: 210% 100%;
  background-position: right center;
  color: var(--blue);
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 16px 32px;
  border-radius: 10px;
  transition: background-position 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s;
}
.btn-white:hover { background-position: left center; color: #fff; }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 10px;
  transition: all 0.2s;
}

.btn-ghost-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }


/* ===== HERO ZONE — shared dark background for hero + process strip ===== */
.hero-zone {
  background:
    radial-gradient(ellipse 60% 70% at 85% 25%, rgba(0,110,255,0.4) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 15% 80%, rgba(0,110,255,0.22) 0%, transparent 55%),
    var(--navy);
  position: relative;
  overflow: hidden;
}

/* ===== INTRO / HERO (index only) ===== */
#intro {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: start;
  padding: 80px var(--pad-x);
  gap: 48px;
  border-bottom: none;
  position: relative;
  overflow: hidden;
  background: transparent;
}

/* Dark hero — text & element overrides */
#intro .intro-headline { color: #ffffff; }

#intro .intro-sub { color: rgba(255,255,255,0.62); }

#intro .intro-badge {
  background: rgba(0,110,255,0.15);
  border-color: rgba(0,110,255,0.35);
  color: #93c5fd;
}

#intro .intro-badge::before { background: var(--blue); }

#intro .proof-text        { color: rgba(255,255,255,0.55); }
#intro .proof-text strong  { color: #ffffff; }

#intro .proof-dot { border-color: var(--navy); }

/* Buttons in dark hero */
#intro .btn-primary {
  background: linear-gradient(to right, #fff 49%, var(--blue) 51%);
  background-size: 210% 100%;
  background-position: right center;
  color: #fff;
}
#intro .btn-primary:hover {
  background-position: left center;
  color: var(--blue);
  box-shadow: none;
}
#intro .btn-outline {
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75);
  background: transparent;
}
#intro .btn-outline:hover {
  border-color: rgba(255,255,255,0.55);
  color: #ffffff;
  background: rgba(255,255,255,0.07);
}

/* Hero entrance animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hlUnderline {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.intro-left { padding: 0; }

.intro-badge   { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both 0.05s; }
.intro-headline { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both 0.18s; }
.intro-sub     { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both 0.32s; }
.intro-actions { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both 0.46s; }
.intro-proof   { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both 0.58s; }

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-lt);
  color: var(--blue);
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.intro-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.intro-headline {
  font-family: var(--fd);
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--ink);
}

.intro-headline .hl {
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.intro-headline .hl::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 4px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: hlUnderline 0.55s cubic-bezier(0.16,1,0.3,1) both 0.75s;
}

.intro-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 38px;
}

.intro-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.intro-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.proof-dots { display: flex; }

.proof-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  margin-left: -8px;
}

.proof-dot:first-child { margin-left: 0; }

.proof-text { font-size: 14px; font-weight: 400; color: var(--ink-mid); line-height: 1.4; }
.proof-text strong { color: var(--ink); font-weight: 700; }

/* Mockup art */
.intro-art {
  position: relative;
  height: 460px;
  display: flex;
  animation: heroFadeUp 1s cubic-bezier(0.16,1,0.3,1) both 0.2s;
  align-items: center;
  justify-content: center;
}

/* Glow orb behind the mocks */
.intro-art::before {
  content: '';
  position: absolute;
  width: 380px; height: 280px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(0,110,255,0.35) 0%, transparent 70%);
  filter: blur(48px);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

.mock {
  position: absolute;
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.1);
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mock-screen {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  position: relative;
}

.mock-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.mock-main {
  width: 440px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 3;
  animation: mockFloat 5s ease-in-out infinite;
}

.mock-back-left {
  width: 390px;
  top: 50%; left: 50%;
  z-index: 1; opacity: 1;
  animation: mockFloatLeft 6.5s ease-in-out infinite;
  animation-delay: -2.2s;
}

.mock-back-right {
  width: 368px;
  top: 50%; left: 50%;
  z-index: 2; opacity: 1;
  animation: mockFloatRight 7.2s ease-in-out infinite;
  animation-delay: -4.8s;
}

@keyframes mockFloat {
  0%,100% { transform: translate(-50%,-50%) translateY(0); }
  50%      { transform: translate(-50%,-50%) translateY(-10px); }
}

@keyframes mockFloatLeft {
  0%,100% { transform: translate(-90%,-74%) rotate(-6deg) translateY(0); }
  50%      { transform: translate(-90%,-74%) rotate(-6deg) translateY(-8px); }
}

@keyframes mockFloatRight {
  0%,100% { transform: translate(-6%,-20%) rotate(5deg) translateY(0); }
  50%      { transform: translate(-6%,-20%) rotate(5deg) translateY(-7px); }
}

.mock-chrome {
  height: 28px;
  background: var(--offwhite);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.mock-btn { width: 8px; height: 8px; border-radius: 50%; }

.mock-url-bar {
  flex: 1; height: 13px;
  background: var(--rule);
  border-radius: 4px;
  margin: 0 8px;
}

.mock-body { padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.mock-block { border-radius: 5px; background: var(--offwhite); }
.mock-block.hero-blk { height: 72px; background: linear-gradient(135deg,rgba(0,110,255,0.35),rgba(0,110,255,0.15)); position: relative; overflow: hidden; }
.mock-block.nav-blk  { height: 10px; width: 70%; background: var(--rule); border-radius: 3px; }
.mock-block.cards    { display: flex; gap: 6px; }
.mock-block.card-blk { flex: 1; height: 44px; border-radius: 5px; background: var(--offwhite); }
.mock-block.line     { height: 7px; border-radius: 3px; background: var(--rule); }
.mock-block.line.short { width: 55%; }
.mock-block.line.med   { width: 78%; }

/* Mock nav bar */
.mock-nav {
  height: 22px;
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
  flex-shrink: 0;
}
.mock-nav-logo { width: 30px; height: 7px; background: #1A1F2B; border-radius: 2px; opacity: 0.75; }
.mock-nav-links { display: flex; gap: 5px; flex: 1; }
.mock-nav-item { width: 16px; height: 5px; background: var(--rule); border-radius: 2px; }
.mock-nav-btn { width: 24px; height: 10px; background: var(--blue); border-radius: 3px; opacity: 0.85; }

/* Hero block inner content lines */
.mock-hero-content { padding: 10px; display: flex; flex-direction: column; gap: 5px; }
.mock-hero-line { height: 6px; border-radius: 2px; background: rgba(255,255,255,0.75); }
.mock-hero-line.wide { width: 72%; }
.mock-hero-line.med  { width: 50%; background: rgba(255,255,255,0.45); }
.mock-hero-cta { width: 34px; height: 11px; background: rgba(255,255,255,0.9); border-radius: 3px; margin-top: 3px; }

/* ===== PROCESS STRIP ===== */
.process-strip {
  background: transparent;
  padding: 36px var(--pad-x) 48px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  position: relative;
}

.process-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to left, rgba(0,110,255,0.6), transparent 65%);
  pointer-events: none;
}

.process-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(0,110,255,0.6), transparent 65%);
  pointer-events: none;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
  position: relative;
}

.process-step:first-child { padding-left: 0; }
.process-step:last-child  { border-right: none; }

.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px; top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 18px;
  z-index: 2;
}

.process-step .step-num {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: transparent;
  border: 1.5px solid rgba(0,110,255,0.55);
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-title {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.step-desc { color: rgba(255,255,255,0.68); line-height: 1.5; }

/* ===== SERVICES ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto 1fr auto auto;
  column-gap: 20px;
  row-gap: 0;
}

.svc-card {
  position: relative;
  background: var(--surface);
  border: 1.5px solid rgba(0,110,255,0.4);
  border-radius: 16px;
  padding: 36px 32px 28px;
  overflow: visible;
  box-shadow: none;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  row-gap: 0;
}

.svc-card::before {
  display: none;
}

.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── Per-card color themes (border, price link border, fit divider, fit inner card) ── */
.svc-card--blue   { border-color: rgba(255,255,255,0.12); }
.svc-card--blue:hover   { border-color: rgba(255,255,255,0.22); transition-delay: 0s; }
.svc-card--blue   .svc-price-link          { border-color: rgba(0,110,255,0.4); }
.svc-card--blue   .svc-price-link:hover    { border-color: var(--blue); background: rgba(0,110,255,0.06); }
.svc-card--blue   .svc-fit-divider         { border-color: rgba(0,110,255,0.2); }
.svc-card--blue   .svc-fit-inner-card      { border-color: rgba(255,255,255,0.12); box-shadow: none; }
.svc-card--blue   .svc-feat::before        { background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23006eff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.svc-card--blue   .svc-fit-card-list li::before { color: var(--blue); }

.svc-card--purple { border-color: rgba(255,255,255,0.12); }
.svc-card--purple:hover { border-color: rgba(255,255,255,0.22); transition-delay: 0s; }
.svc-card--purple .svc-price-link          { border-color: rgba(237,106,49,0.4); }
.svc-card--purple .svc-price-link:hover    { border-color: #ed6a31; background: rgba(237,106,49,0.06); }
.svc-card--purple .svc-fit-divider         { border-color: rgba(237,106,49,0.2); }
.svc-card--purple .svc-fit-inner-card      { border-color: rgba(255,255,255,0.12); box-shadow: none; }
.svc-card--purple .svc-feat::before        { background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23ed6a31' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.svc-card--purple .svc-fit-card-list li::before { color: #ed6a31; }

.svc-card--pink   { border-color: rgba(255,255,255,0.12); }
.svc-card--pink:hover   { border-color: rgba(255,255,255,0.22); transition-delay: 0s; }
.svc-card--pink   .svc-price-link          { border-color: rgba(173,66,244,0.5); }
.svc-card--pink   .svc-price-link:hover    { border-color: #AD42F4; background: rgba(173,66,244,0.06); }
.svc-card--pink   .svc-fit-divider         { border-color: rgba(173,66,244,0.2); }
.svc-card--pink   .svc-fit-inner-card      { border-color: rgba(255,255,255,0.12); box-shadow: none; }
.svc-card--pink   .svc-feat::before        { background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23AD42F4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.svc-card--pink   .svc-fit-card-list li::before { color: #AD42F4; }



.svc-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.svc-card-header svg {
  flex-shrink: 0;
  opacity: 0.9;
  width: 52px;
  height: 52px;
}

.svc-name {
  font-family: var(--fd);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  line-height: 1.2;
}

.svc-desc {
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.72;
  margin-bottom: 16px;
}

.svc-feat-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }

.svc-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-mid);
}

.svc-feat::before {
  content: '';
  width: 16px; height: 16px;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%2310b981' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== TOOLTIPS ===== */
.tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  color: var(--blue);
  opacity: 0.7;
  cursor: default;
  /* Extend tap target to 44×44pt minimum without shifting layout */
  padding: 10px 6px;
  margin-top: -10px;
  margin-bottom: -10px;
  vertical-align: middle;
}

.tip svg {
  display: block;
  flex-shrink: 0;
}

.tip:hover { opacity: 1; }

.tip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #f1f5f9;
  color: #1a202c;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 8px;
  width: 220px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.tip::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #f1f5f9;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 100;
}

.tip:hover::after,
.tip:hover::before,
.tip:focus::after,
.tip:focus::before { opacity: 1; }

.tip:focus { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 2px; }

/* ===== PORTFOLIO ===== */
.port-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}

.port-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 52px;
}

.port-stat-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}

.port-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-lt);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.port-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--rule);
}

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

/* ===== PORTFOLIO CASE STUDY LAYOUT ===== */
.port-cases {
  display: flex;
  flex-direction: column;
}

.port-stripe {
  padding: 88px var(--pad-x);
  background: var(--navy);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to right, rgba(0,110,255,0.6), transparent 65%) 1;
}

.port-stripe--alt {
  background: #141a29;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to left, rgba(0,110,255,0.6), transparent 65%) 1;
}

.port-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.port-case--flip .port-case-img { order: 2; }
.port-case--flip .port-case-content { order: 1; }

.port-case-img {
  border-radius: 14px;
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-md);
  position: relative;
}

.port-case-img a { display: block; }
.port-case-img a img { transition: transform 0.4s ease; display: block; }
.port-case-img a:hover img { transform: scale(1.03); }

.port-case-img .mini-chrome {
  position: relative;
  top: auto; left: auto; right: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  background: #1e1e1e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: auto;
  backdrop-filter: none;
}

.port-case-img img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
}

.port-case-img img[alt="Knight Fire and Security website"] {
  filter: brightness(0.88);
}

.port-case-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.port-case-tag {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5da8ff;
}

.port-case-name {
  font-family: var(--fd);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
}

.port-case-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-mid);
  margin: 0;
}

.port-card {
  border-radius: 14px;
  overflow: hidden;
  border: none;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  color: inherit;
}

.port-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.port-card:hover { transform: translateY(-4px); }


.port-tier {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--fd);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-mid);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 100px;
  padding: 3px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}

.port-thumb {
  height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--offwhite);
}

.port-thumb-img {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 24px);
  object-fit: cover;
  object-position: top left;
  z-index: 1;
  transition: transform 0.4s ease;
}

.port-card:hover .port-thumb-img {
  transform: scale(1.04);
}

.mini-chrome {
  position: relative;
  z-index: 2;
  align-self: flex-start;
}

.mini-chrome {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  z-index: 3;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.mini-dot { width: 7px; height: 7px; border-radius: 50%; }

.port-em {
  position: relative;
  z-index: 2;
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-top: 24px;
}

.port-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }

.port-tag {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.port-name {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.2;
}

.port-desc {
  color: var(--ink-mid);
  flex: 1;
  line-height: 1.6;
  margin-bottom: 16px;
}

.port-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  border: 1.5px solid rgba(0,110,255,0.6);
  border-radius: 8px;
  padding: 8px 14px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.port-link:hover {
  border-color: var(--blue);
  background: rgba(0,110,255,0.08);
  color: var(--ink);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  background: var(--card);
  border: 1.5px solid rgba(0,110,255,0.4);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}

.price-card:hover { transform: translateY(-3px); }

/* ── Per-card color themes (tier label only — borders/buttons are neutral) ── */
.price-card--blue   { border-color: rgba(255,255,255,0.12); }
.price-card--blue:hover   { border-color: rgba(255,255,255,0.22); }
.price-card--blue   .price-tier        { color: var(--blue); }
.price-card--blue   .price-cta         { border-color: rgba(0,110,255,0.5); }
.price-card--blue   .price-cta::before { background: transparent; }
.price-card--blue   .price-cta:hover   { border-color: var(--blue); background: rgba(0,110,255,0.06); }

.price-card--orange { border-color: rgba(255,255,255,0.12); }
.price-card--orange:hover { border-color: rgba(255,255,255,0.22); }
.price-card--orange .price-tier        { color: #ed6a31; }
.price-card--orange .price-cta         { border-color: rgba(237,106,49,0.5); }
.price-card--orange .price-cta::before { background: transparent; }
.price-card--orange .price-cta:hover   { border-color: #ed6a31; background: rgba(237,106,49,0.06); }

.price-card--pink   { border-color: rgba(255,255,255,0.12); }
.price-card--pink:hover   { border-color: rgba(255,255,255,0.22); }
.price-card--pink   .price-tier        { color: #AD42F4; }
.price-card--pink   .price-cta         { border-color: rgba(173,66,244,0.5); }
.price-card--pink   .price-cta::before { background: transparent; }
.price-card--pink   .price-cta:hover   { border-color: #AD42F4; background: rgba(173,66,244,0.06); }

.price-card-head {
  display: block;
}

.price-icon {
  color: var(--blue);
  position: absolute;
  top: 32px;
  right: 32px;
  opacity: 0.9;
  pointer-events: none;
}

.price-card.featured {
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(0,110,255,0.5) 0%, transparent 90%),
    var(--navy);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #ffffff;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-tier {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}


.price-name {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.price-card.featured .price-name { color: #fff; }

.price-amount {
  font-family: var(--fd);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink);
}

.price-card.featured .price-amount { color: #fff; }

.price-amount sup { font-size: 22px; font-weight: 600; vertical-align: super; letter-spacing: 0; }

.price-note { font-size: 14px; color: var(--ink-lt); margin-bottom: 28px; }
.price-card.featured .price-note { color: rgba(255,255,255,0.65); }

.price-divider { height: 1px; background: var(--rule); margin-bottom: 24px; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.12); }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; flex: 1; }

.price-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.4;
}

.price-card.featured .price-feat { color: rgba(255,255,255,0.82); }
.price-feat .tip,
.svc-feat .tip { margin-left: 2px; }

.feat-check {
  width: 18px; height: 18px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-card.featured .feat-check { background: transparent; color: var(--blue); }

.price-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.15);
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.72);
  background: transparent;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.price-cta::before { display: none; }
.price-cta::after  { display: none; }

.pricing-note { text-align: center; margin-top: 28px; font-size: 14px; color: var(--ink-mid); }
.pricing-note--spaced { margin-top: 40px; }
.pricing-note a { color: var(--blue); font-weight: 500; }

/* ===== ADD-ONS ===== */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.addon-card {
  background: var(--surface);
  border: 1.5px solid rgba(0,110,255,0.4);
  border-radius: 14px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-lg);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

.addon-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.addon-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.addon-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.addon-price {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  margin: 0;
  white-space: nowrap;
}

.addon-desc {
  line-height: 1.65;
  color: var(--ink-mid);
  margin: 0;
}

/* ===== RECURRING / AFTER-LAUNCH TIERS ===== */
.after-intro {
  max-width: 560px;
  font-size: 15px;
  margin-top: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  align-self: center;
}

.recurring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto 1fr auto;
  column-gap: 24px;
  row-gap: 0;
}

.recurring-card {
  background: var(--surface);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  row-gap: 0;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.4s ease, transform 0.3s ease, border-color 0.4s ease;
}

.recurring-card:hover {
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-4px);
}

/* Purple — Hosting Plan */
.recurring-card--purple { border-color: rgba(255,255,255,0.12); }
.recurring-card--purple:hover { border-color: rgba(255,255,255,0.22); }
.recurring-card--purple .recurring-label { color: #AD42F4; }
.recurring-card--purple .recurring-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23AD42F4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Amber — Fully Managed Plan */
.recurring-card--amber { border-color: rgba(255,255,255,0.12); }
.recurring-card--amber:hover { border-color: rgba(255,255,255,0.22); }
.recurring-card--amber .recurring-label { color: #ed6a31; }
.recurring-card--amber .recurring-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23ed6a31' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.recurring-card--popular {
  border-color: rgba(0,110,255,0.65);
  position: relative;
}

.recurring-card--featured {
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(0,110,255,0.5) 0%, transparent 90%),
    var(--navy);
  border-color: rgba(255,255,255,0.12);
}

.recurring-card--featured:hover {
  border-color: rgba(255,255,255,0.22);
  transform: none;
}

.recurring-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.recurring-label {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}

.recurring-card--featured .recurring-label { color: var(--blue); }

.recurring-amount {
  font-family: var(--fd);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.recurring-card--featured .recurring-amount { color: #fff; }

.recurring-amount sup {
  font-size: 18px;
  font-weight: 600;
  vertical-align: super;
  letter-spacing: 0;
}

.recurring-per {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-lt);
  letter-spacing: 0;
}

.recurring-card--featured .recurring-per { color: rgba(255,255,255,0.45); }

.recurring-desc {
  color: var(--ink-mid);
  line-height: 1.65;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
}

.recurring-card--featured .recurring-desc { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.1); }

.recurring-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recurring-list li {
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 26px;
  position: relative;
}

.recurring-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px; height: 16px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%2310b981' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.recurring-card--featured .recurring-list li { color: rgba(255,255,255,0.7); }
.recurring-card--featured .recurring-list li::before {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23006eff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.recurring-cta-group {
  padding-top: 24px;
}

.recurring-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.18);
  text-decoration: none;
  background: transparent;
  color: var(--ink);
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease;
}
.recurring-cta:hover { color: #fff !important; }

/* Purple card button */
.recurring-card--purple .recurring-cta { border-color: rgba(173,66,244,0.5); color: #fff; }
.recurring-card--purple .recurring-cta:hover { border-color: #AD42F4; background: rgba(173,66,244,0.06); }

/* Amber card button */
.recurring-card--amber .recurring-cta { border-color: rgba(237,106,49,0.5); color: #fff; }
.recurring-card--amber .recurring-cta:hover { border-color: #ed6a31; background: rgba(237,106,49,0.06); }

/* Featured (blue) card button */
.recurring-card--featured .recurring-cta { border-color: rgba(0,110,255,0.6); color: #fff; background: transparent; }
.recurring-card--featured .recurring-cta:hover { border-color: var(--blue); background: rgba(0,110,255,0.06); }

.hosting-nudge {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-lt);
  line-height: 1.5;
}
.hosting-nudge a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(0,110,255,0.4);
  text-underline-offset: 2px;
}
.hosting-nudge a:hover { text-decoration-color: var(--blue); }

/* ===== WHY / STATS ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.section--code-glow {
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,110,255,0.28) 0%, transparent 65%),
    var(--navy);
}

/* About section body copy */
.about-copy {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-copy p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
}

.about-copy a {
  color: var(--blue);
  font-weight: 500;
}

.why-list { list-style: none; }

.why-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}

.why-row:first-child { padding-top: 0; }
.why-row:last-child  { border-bottom: none; }

/* ===== CODE PANEL ===== */
.code-panel {
  background: #0d1117;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(0,110,255,0.4);
  box-shadow: 0 24px 56px rgba(0,0,0,0.2);
  align-self: center;
}

.code-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #161b22;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.code-dots { display: flex; gap: 6px; }
.code-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }

.code-filename {
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
  font-size: 11.5px;
  color: rgba(255,255,255,0.38);
}

.code-body {
  margin: 0;
  padding: 18px 20px 22px;
  overflow: hidden;
  min-height: 420px;
}

.code-body code {
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
  font-size: 12px;
  line-height: 1.85;
  display: block;
  white-space: pre;
}

.code-body .ln {
  display: inline-block;
  width: 18px;
  text-align: right;
  margin-right: 16px;
  color: rgba(255,255,255,0.16);
  user-select: none;
  font-size: 11px;
}

.code-body .t  { color: #7dd3fc; }
.code-body .a  { color: #c4b5fd; }
.code-body .v  { color: #86efac; }
.code-body .s  { color: rgba(255,255,255,0.7); }
.code-body .p  { color: rgba(255,255,255,0.3); }
.code-body .jk { color: #93c5fd; }
.code-body .jv { color: #86efac; }

.why-icon {
  width: 38px; height: 38px;
  background: transparent;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid transparent;
}
.why-icon--red    { border-color: rgba(239,68,68,0.45); }
.why-icon--purple { border-color: rgba(124,58,237,0.45); }
.why-icon--amber  { border-color: rgba(245,158,11,0.45); }
.why-icon--green  { border-color: rgba(16,185,129,0.45); }

.why-row h3 {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}

.why-row p { color: var(--ink-mid); line-height: 1.65; }

/* ===== WE TYPE SECTION ===== */
.type-section { background: var(--offwhite); }
.no-pt { padding-top: 0 !important; }

.type-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 52px;
}

.type-headline h2 {
  font-family: var(--fd);
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.type-em {
  font-style: italic;
  color: var(--blue);
  font-family: var(--fb);
  font-weight: 700;
}

.type-right p {
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.type-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.type-mock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(12,18,41,0.14);
  border: 1.5px solid rgba(0,110,255,0.4);
}

.type-editor {
  background: #1a1e2d;
}

.type-editor-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  background: #13172280;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.te-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.te-filename {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: 'Courier New', monospace;
}

.type-editor-body {
  padding: 28px 24px;
  min-height: 370px;
}

#type-code {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 2.1;
  white-space: pre;
  color: rgba(255,255,255,0.7);
}

.te-comment { color: rgba(255,255,255,0.28); font-style: italic; }
.te-num     { color: rgba(255,255,255,0.18); margin-right: 10px; }
.te-tag     { color: #60a5fa; }
.te-attr    { color: #34d399; }
.te-str     { color: #f9a8d4; }
.te-txt     { color: rgba(255,255,255,0.75); }

.te-caret {
  display: inline-block;
  width: 2px; height: 1em;
  background: rgba(255,255,255,0.65);
  vertical-align: middle;
  margin-left: 2px;
  animation: caretBlink 1s step-end infinite;
}
@keyframes caretBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.type-preview {
  background: #0f1520;
}

.type-preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #0a0f1a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-lt);
  font-family: var(--fd);
}

.tp-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #28c840;
}

.type-preview-body {
  padding: 44px 36px;
  min-height: 260px;
}

.tp-heading {
  font-family: var(--fd);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #E2E8F0;
  line-height: 1.15;
  margin-bottom: 14px;
  white-space: pre;
}

.tp-sub {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.tp-btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 8px;
  letter-spacing: -0.01em;
  cursor: pointer;
}

@media (max-width: 767px) {
  .type-top  { grid-template-columns: 1fr; gap: 28px; }
  .type-mock { grid-template-columns: 1fr; }
  .type-preview { display: flex; flex-direction: column; }
  .type-editor-body { padding: 20px 16px; min-height: 380px; }
  #type-code { font-size: 13px; line-height: 1.8; }
}

.stats-panel {
  background: var(--offwhite);
  border-radius: 20px;
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-item { padding: 28px 24px; border-radius: 12px; }
.stat-item:nth-child(1) { grid-column: 1/-1; background: rgba(255,255,255,0.04); }

.stat-n {
  font-family: var(--fd);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-n .accent { color: var(--blue); }
.stat-l { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* ===== PROCESS SECTION ===== */
.process-section,
.section.alt {
  background: linear-gradient(to bottom, var(--offwhite) 0%, var(--navy) 100%);
}

.proc-header {
  margin-bottom: 0;
}

.proc-rule {
  height: 2px;
  background: transparent;
  margin: 48px 0 56px;
  position: relative;
  overflow: hidden;
}

.proc-rule-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--blue), rgba(0,110,255,0.35));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

.proc-num {
  display: block;
  font-family: var(--fd);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.proc-title {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.proc-desc {
  line-height: 1.75;
  color: var(--ink-lt);
}

/* ===== CUSTOM BUILD CALLOUT ===== */
.custom-callout { padding-top: 0; }

.section--sm-top { padding-top: 40px; }

.custom-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 32px 40px;
}

.custom-callout-label {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.custom-callout-desc {
  font-size: 14px;
  color: var(--ink-lt);
  line-height: 1.75;
  max-width: 620px;
}

.custom-callout-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .custom-callout-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
}

.testimonial-top-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.testimonial-stars {
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 2px;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.testimonial-top-row {
  margin-bottom: 20px;
}
.testimonial-top-row .testimonial-stars {
  margin-bottom: 0;
}

/* Compact metric badge — inline with stars */
.testimonial-metric {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,110,255,0.1);
  border: 1px solid rgba(0,110,255,0.22);
  border-radius: 6px;
  padding: 5px 11px;
}

.testimonial-metric-num {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.testimonial-metric-label {
  font-size: 13px;
  color: var(--ink-mid);
  white-space: nowrap;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-lt);
  border: 1px solid rgba(0,110,255,0.3);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--fd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-role {
  font-size: 13px;
  color: var(--ink-lt);
  margin-top: 2px;
}

/* ===== CTA SECTION ===== */
#cta {
  background: linear-gradient(to bottom, #0c1830, #162d55);
  padding: 88px var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}


.cta-eyebrow {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  position: relative;
}

.cta-headline {
  font-family: var(--fd);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  position: relative;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 44px;
  font-weight: 300;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.steps-label {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-lt);
  margin-bottom: 28px;
}

.steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  gap: 20px;
}

.step-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.steps .step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-lt);
  border: 1.5px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue);
  flex-shrink: 0;
}

.step-connector {
  width: 1px;
  flex: 1;
  min-height: 20px;
  background: linear-gradient(to bottom, rgba(0,110,255,0.4), rgba(0,110,255,0.08));
  margin: 6px 0;
}

.step-body {
  padding-bottom: 36px;
  padding-top: 9px;
}

.step:last-child .step-body { padding-bottom: 0; }

.step-body h4 {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.step-body p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-path { flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--ink);
  background: var(--offwhite);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-lt);
  opacity: 0.4;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,110,255,0.2);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  justify-content: center;
}

.form-submit:hover { background: var(--blue-dk); }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.shake { animation: shake 0.35s ease; }

/* ===== FOOTER ===== */
footer {
  padding: 40px var(--pad-x) 28px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.ft-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.ft-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-logo {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #fff;
  letter-spacing: -0.01em;
}

.ft-logo span { color: var(--blue); }
.nav-logo img { height: 44px; width: auto; display: block; }
.ft-logo img  { height: 38px; width: auto; display: block; filter: brightness(0) invert(1); }
.ft-tagline { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.ft-copy { font-size: 13px; color: rgba(255,255,255,0.4); border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; }

.ft-links { display: flex; gap: 28px; list-style: none; }

.ft-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  transition: color 0.15s;
}

.ft-links a:hover { color: rgba(255,255,255,0.85); }

.ft-break { display: none; }

/* Anchor offset — accounts for sticky nav height */
#about { scroll-margin-top: 80px; }

/* ===== SERVICE CARD ADDITIONS ===== */
.svc-feat-list { margin-top: 20px; margin-bottom: 4px; flex: 1; }

.svc-popular-badge {
  display: inline-block;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 14px;
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--blue);
  border-radius: 20px;
  white-space: nowrap;
}

.svc-more-link {
  display: block;
  margin-top: 24px;
  padding: 10px 0;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--ink-mid);
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.svc-more-link:hover {
  color: var(--ink);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
}
.svc-card--pink   .svc-more-link:hover { color: #AD42F4; border-color: rgba(173,66,244,0.5); background: rgba(173,66,244,0.06); }
.svc-card--purple .svc-more-link:hover { color: #ed6a31; border-color: rgba(237,106,49,0.5); background: rgba(237,106,49,0.06); }
.svc-card--blue   .svc-more-link:hover { color: var(--blue); border-color: rgba(0,110,255,0.5); background: rgba(0,110,255,0.06); }

.svc-divider {
  height: 1px;
  background: var(--rule);
  margin: 0 0 20px;
}

/* ===== SERVICE ICON STRIP ===== */
.svc-icon-strip {
  padding: 32px var(--pad-x);
  position: relative;
  background: rgba(255,255,255,0.02);
}

.svc-icon-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to left, rgba(0,110,255,0.6), transparent 65%);
  pointer-events: none;
}

.svc-icon-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(0,110,255,0.6), transparent 65%);
  pointer-events: none;
}

.svc-icon-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 16px;
}


.svc-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  color: var(--blue);
  text-align: center;
  cursor: default;
  flex: 1;
}

.svc-icon-item svg {
  color: var(--blue);
  opacity: 0.9;
  width: 48px;
  height: 48px;
}

.svc-icon-item span {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .svc-icon-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 16px;
  }
  .svc-icon-item span { white-space: normal; }
}

/* ===== SERVICE FIT DIVIDER (inside card) ===== */
.svc-fit-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 20px 0;
}

/* ===== SERVICE FIT CARDS ROW ===== */
.svc-fit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.svc-fit-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.svc-fit-card-label::before {
  content: '';
  width: 20px; height: 20px;
  background-color: transparent;
  border: 1px solid #28c840;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.svc-fit-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-fit-card-list li {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.svc-fit-card-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.3;
}

.svc-fit-section {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
}

.svc-fit-inner-card {
  background: var(--offwhite);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 16px;
  flex: 1;
  box-shadow: none;
}

.svc-price-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 12px 20px;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  text-decoration: none;
}

/* ===== FIND YOUR FIT SECTION ===== */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fit-scenario {
  background: var(--surface);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

.fit-scenario:hover {
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}


.fit-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.fit-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fit-icon svg {
  width: 36px;
  height: 36px;
  opacity: 0.9;
}

.fit-title {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
  align-self: center;
}

.fit-desc {
  color: var(--ink-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.fit-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.fit-cta:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  color: var(--ink);
}

/* ── Fit-scenario color variants ── */
.fit-scenario--pink   { border-color: rgba(255,255,255,0.12); }
.fit-scenario--pink:hover   { border-color: rgba(255,255,255,0.22); }
.fit-scenario--pink   .fit-cta { border-color: rgba(173,66,244,0.4); }
.fit-scenario--pink   .fit-cta:hover { border-color: #AD42F4; background: rgba(173,66,244,0.08); }

.fit-scenario--purple { border-color: rgba(255,255,255,0.12); }
.fit-scenario--purple:hover { border-color: rgba(255,255,255,0.22); }
.fit-scenario--purple .fit-cta { border-color: rgba(237,106,49,0.4); }
.fit-scenario--purple .fit-cta:hover { border-color: #ed6a31; background: rgba(237,106,49,0.08); }

.fit-scenario--blue   { border-color: rgba(255,255,255,0.12); }
.fit-scenario--blue:hover   { border-color: rgba(255,255,255,0.22); }
.fit-scenario--blue   .fit-cta { border-color: rgba(0,110,255,0.4); }
.fit-scenario--blue   .fit-cta:hover { border-color: var(--blue); background: rgba(0,110,255,0.08); }

/* ===== TERMS PAGE ===== */
.terms-wrap {
  max-width: 760px;
}

.terms-block {
  padding: 8px 0 48px;
}

.terms-kicker {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.terms-heading {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
}

.terms-subheading {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 8px;
  letter-spacing: -0.02em;
}

.terms-body {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 680px;
}

.terms-list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.terms-list li {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}

.terms-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

.terms-link {
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(0,110,255,0.4);
  text-underline-offset: 2px;
}

.terms-link:hover { text-decoration-color: var(--blue); }

.terms-divider {
  height: 1px;
  background: var(--rule);
  margin: 4px 0;
}

/* ===== FAQ SECTION ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-item:first-child {
  border-top: 1px solid var(--rule);
}

.faq-q {
  /* button reset */
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  /* typography */
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  transition: color 0.42s ease;
  user-select: none;
}

.faq-q::after {
  content: '+';
  font-family: var(--fb);
  font-size: 24px;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.is-open > .faq-q::after {
  content: '−';
}

.faq-item.is-open > .faq-q {
  color: var(--blue);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open > .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden; /* clips content when grid track is 0fr */
  min-height: 0;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 640px;
  /* no padding-bottom — padding never gets clipped by overflow:hidden,
     so we use ::after for bottom spacing instead */
}

.faq-a-inner::after {
  content: '';
  display: block;
  height: 24px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.75s ease, border-color 0.4s ease, box-shadow 0.4s ease; will-change: transform, opacity; }
.reveal.visible { opacity: 1; transform: none; }
.price-card.featured.reveal { transition: opacity 0.8s ease, transform 0.75s ease, border-color 0.4s ease, box-shadow 0.4s ease; }
.d0 { transition-delay: 0s; }
.d1 { transition-delay: 0.15s; }
.d2 { transition-delay: 0.30s; }
.d3 { transition-delay: 0.45s; }

/* ===== RESPONSIVE ===== */
/* iPad — side-by-side with tighter mock sizes */
@media (min-width: 768px) and (max-width: 1024px) {
  #intro           { grid-template-columns: 2fr 3fr; padding: 56px 24px 40px; gap: 32px; }
  .intro-art       { height: 360px; }
  .mock-main       { width: 260px; }
  .mock-back-left  { width: 230px; }
  .mock-back-right { width: 218px; }
  .intro-art::before { width: 280px; height: 210px; }
  .intro-proof     { display: none; }
}

/* Mobile only — stack intro */
@media (max-width: 767px) {
  #intro           { grid-template-columns: 1fr; padding: 56px 28px 32px; }
  .intro-art       { height: 260px; margin-top: 8px; order: -1; }
  .intro-left      { order: 1; }
  .intro-proof     { display: none; }
  .mock-main       { width: 220px; }
  .mock-back-left  { width: 195px; }
  .mock-back-right { width: 185px; }
  .intro-art::before { width: 240px; height: 180px; }
}

@media (max-width: 1024px) {
  a.nav-btn::after { display: none; }
  a.nav-btn:hover, a.nav-btn:active { color: #fff !important; }

  .btn-primary { transition: none; }
  .btn-primary:hover, .btn-primary:active { background-position: right center; color: #fff; }

  .btn-white { transition: none; }
  .btn-white:hover, .btn-white:active { background-position: right center; color: var(--blue); }

  .price-cta:hover, .price-cta:active,
  .recurring-cta:hover, .recurring-cta:active { color: #fff !important; }

  nav              { padding: 0 28px; }
  .process-strip   { grid-template-columns: 1fr; padding: 8px 28px; }
  .process-step    { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 24px 0 !important; }
  .process-step:first-child { padding-top: 16px !important; }
  .process-step:last-child  { border-bottom: none; padding-bottom: 16px !important; }
  .process-step::after { display: none; }
  .section         { padding: 64px 28px; }
  .page-header     { padding: 52px 28px 48px; }
  .page-header--split { flex-direction: column; align-items: flex-start; gap: 40px; }
  .page-header-visual { width: 100%; }
  .svc-grid        { grid-template-columns: 1fr; grid-template-rows: none; row-gap: 24px; }
  .svc-card        { display: flex; flex-direction: column; grid-row: auto; }
  .svc-feat-list   { flex: 1; }
  .svc-price-link  { margin-top: 20px; }
  .svc-columns     { grid-template-columns: 1fr; }
  .svc-fit-row     { grid-template-columns: 1fr; }
  .fit-grid        { grid-template-columns: 1fr; }
  .port-grid       { grid-template-columns: 1fr 1fr; }
  .port-stat { padding: 0 32px; }
  .port-stat-num { font-size: 38px; }
  .pricing-grid    { grid-template-columns: 1fr; }
  .price-card.featured { box-shadow: var(--shadow-md); }
  .addon-grid      { grid-template-columns: 1fr; }
  .recurring-grid  { grid-template-columns: 1fr; row-gap: 24px; }
  .why-grid        { grid-template-columns: 1fr; gap: 48px; }
  .section--code-glow { background: radial-gradient(ellipse 100% 50% at 50% 85%, rgba(0,110,255,0.28) 0%, transparent 65%), var(--navy); }
  .contact-grid    { grid-template-columns: 1fr; gap: 48px; }
  #cta             { padding: 64px 28px; }
  footer           { padding: 28px 28px; }
}

@media (max-width: 768px) {
  .proc-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-grid       { grid-template-columns: 1fr; grid-template-rows: none; row-gap: 24px; }
  .svc-columns    { grid-template-columns: 1fr; }
  .svc-fit-row    { grid-template-columns: 1fr; }
  /* svc-card is now flex, no subgrid needed */
  .pricing-grid   { grid-template-columns: 1fr; }
  .addon-grid     { grid-template-columns: 1fr 1fr; }
  .addon-card:last-child { grid-column: 1 / -1; }
  .recurring-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; row-gap: 24px; }
  .recurring-card { display: flex; flex-direction: column; grid-row: auto; }
  .recurring-card:last-child { grid-column: 1 / -1; }
  .fit-grid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .ft-top         { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ft-links       { flex-wrap: wrap; gap: 14px 20px; }
  .ft-links a     { font-size: 13px; }
  .ft-break { display: block; flex-basis: 100%; height: 0; }
  .proc-grid          { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .page-header::before { background-size: 18px 18px; }
  .addon-grid     { grid-template-columns: 1fr; }
  .addon-card:last-child { grid-column: auto; }
  .recurring-grid { grid-template-columns: 1fr; grid-template-rows: none; row-gap: 24px; }
  .recurring-card { display: flex; flex-direction: column; grid-row: auto; }
  .recurring-card:last-child { grid-column: auto; }

  /* Show hamburger, hide desktop links */
  .nav-toggle { display: flex; }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: rgba(13,19,33,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
    gap: 0;
    padding: 8px 24px 24px;
    z-index: 199;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  }

  nav.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links li:last-child a {
    border-bottom: none;
    margin-top: 12px;
    text-align: center;
    border-radius: 10px;
    padding: 14px;
    justify-content: center;
  }

  /* Mobile layout fixes */
  .port-grid       { grid-template-columns: 1fr; }
  .port-case { grid-template-columns: 1fr; gap: 28px; }
  .port-case--flip .port-case-img { order: 0; }
  .port-case--flip .port-case-content { order: 0; }
  .port-case-img img { height: 220px; }
  .port-stripe { padding: 52px 28px; }
  .svc-grid        { grid-template-columns: 1fr; row-gap: 24px; }
  .fit-grid        { grid-template-columns: 1fr; }
  .stats-panel     { grid-template-columns: 1fr; }
  .stat-item:nth-child(1) { grid-column: auto; }
  .form-row        { grid-template-columns: 1fr; }

  /* Tighter mobile padding — 48px on a 375px phone is too much */
  nav              { padding: 0 var(--pad-x-sm); }
  .page-header     { padding: 40px var(--pad-x-sm) 36px; }
  .section         { padding: 52px var(--pad-x-sm); }
  .process-strip   { padding: 28px var(--pad-x-sm); }
  #intro           { padding: 36px var(--pad-x-sm); }
  #cta             { padding: 56px var(--pad-x-sm); }
  footer           { padding: 24px var(--pad-x-sm); }

  /* Mobile font scale */
  .stat-n          { font-size: 36px; }
  .intro-headline  { font-size: clamp(28px, 8vw, 36px); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal.visible {
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
