/* ============================================
   CSS CUSTOM PROPERTIES
============================================ */
:root {
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-dark: #1d4ed8;
  --blue-faint: rgba(37, 99, 235, 0.12);
  --blue-glow: rgba(37, 99, 235, 0.35);
  --slate: #0f172a;
  --slate-2: #1e293b;
  --slate-3: #334155;
  --slate-4: #475569;
  --slate-5: #64748b;
  --white: #ffffff;
  --off-white: #f8fafc;
  --border: rgba(255,255,255,0.08);
  --border-light: #e2e8f0;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1160px;
  --px: clamp(1rem, 4vw, 2rem);
  --section-py: clamp(4rem, 8vw, 7rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ============================================
   SKIP LINK
============================================ */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 1rem;
  background: var(--blue);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  z-index: 10000;
  font-family: var(--font-body);
}
.skip-link:focus { top: 1rem; }

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav__logo span {
  color: var(--blue-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
}

.nav__links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav__cta {
  background: var(--blue);
  color: white !important;
  padding: 0.5rem 1.125rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav__cta:hover {
  background: var(--blue-dark) !important;
  color: white !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--slate);
  padding: 1rem var(--px) 1.5rem;
  border-top: 1px solid var(--border);
  gap: 0.25rem;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav__mobile a:last-child { border-bottom: none; }

.nav__mobile a:hover { color: white; }

.nav__mobile .nav__cta {
  margin-top: 0.75rem;
  text-align: center;
  padding: 0.875rem !important;
  font-size: 1rem !important;
  border-radius: 10px !important;
  display: block;
}

/* ============================================
   HERO
============================================ */
.hero {
  background: var(--slate);
  padding-top: calc(64px + clamp(3.5rem, 8vw, 6rem));
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

/* Geometric background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(37,99,235,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37,99,235,0.08) 0%, transparent 45%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: clamp(200px, 35vw, 480px);
  height: clamp(200px, 35vw, 480px);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 50%;
  transform: translate(40%, -40%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  position: relative;
  z-index: 1;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-faint);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--blue-light);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero__kicker::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  color: var(--white);
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero__title em {
  font-style: normal;
  color: var(--blue-light);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero__sub strong {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  min-height: 50px;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
  min-height: 50px;
  white-space: nowrap;
}

.btn-secondary:hover {
  color: white;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}

/* ============================================
   TRUST BAR
============================================ */
.trust-bar {
  background: var(--slate-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem var(--px);
}

.trust-bar__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.trust-item__icon {
  color: var(--blue-light);
  flex-shrink: 0;
}

.trust-item__text {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

.trust-bar__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ============================================
   PORTFOLIO
============================================ */
.portfolio {
  background: var(--slate);
  padding: var(--section-py) 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: clamp(0.975rem, 1.5vw, 1.075rem);
  color: rgba(255,255,255,0.55);
  max-width: 52ch;
  line-height: 1.65;
}

.section-title.dark { color: var(--slate); }
.section-sub.dark { color: var(--slate-4); }

.portfolio__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.portfolio-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--slate-2);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,99,235,0.3);
}

.portfolio-card__img-wrap {
  height: 420px;
  overflow: hidden;
  position: relative;
}

.portfolio-card__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--slate-2) 0%, transparent 100%);
  pointer-events: none;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.portfolio-card:hover img {
  transform: none;
}

.portfolio-card__info {
  padding: 1rem 1.25rem 1.25rem;
}

.portfolio-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: var(--blue-faint);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.portfolio-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.portfolio-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

/* ============================================
   HOW IT WORKS
============================================ */
.how {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.how__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.how__header .section-sub {
  margin-inline: auto;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connector line through step number centers: top = padding (2rem/32px) + circle radius (28px) = 60px */
.how__steps::before {
  content: '';
  position: absolute;
  top: calc(28px + 2rem);
  left: calc(16.666%);
  right: calc(16.666%);
  height: 0;
  border-top: 2px dashed rgba(37,99,235,0.3);
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(37,99,235,0.12);
}

.step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.step__desc {
  font-size: 0.95rem;
  color: var(--slate-4);
  line-height: 1.65;
}

/* ============================================
   WHAT'S INCLUDED
============================================ */
.included {
  background: var(--white);
  padding: var(--section-py) 0;
}

.included__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--off-white);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.4rem;
}

.feature-card__desc {
  font-size: 0.85rem;
  color: var(--slate-5);
  line-height: 1.55;
}

/* ============================================
   COMPARISON TABLE
============================================ */
.comparison {
  background: var(--slate);
  padding: var(--section-py) 0;
}

.comparison__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

thead th {
  padding: 1.25rem 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  background: var(--slate-2);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

thead th:first-child {
  text-align: left;
  color: rgba(255,255,255,0.4);
}

thead th.col-highlight {
  background: var(--blue);
  color: white;
  position: relative;
}

thead th.col-highlight::before {
  content: 'Best Value';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: var(--blue-light);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px 100px 0 0;
  white-space: nowrap;
}

tbody tr {
  border-top: 1px solid var(--border);
  transition: background 0.15s;
}

tbody tr:hover { background: rgba(255,255,255,0.02); }

tbody td {
  padding: 1rem 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  vertical-align: middle;
}

tbody td:first-child {
  text-align: left;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.875rem;
}

tbody td.col-highlight {
  background: rgba(37,99,235,0.08);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.check {
  color: #34d399;
  font-size: 1.1rem;
}

.cross {
  color: rgba(255,255,255,0.2);
  font-size: 1.1rem;
}

.badge-win {
  display: inline-block;
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.row-highlight td {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

/* ============================================
   FAQ
============================================ */
.faq {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.faq__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
}

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

.faq-item:last-child { border-bottom: none; }

.faq-item__trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--slate);
  transition: background 0.15s;
  min-height: 44px;
}

.faq-item__trigger:hover { background: var(--off-white); }

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--blue);
  transition: transform 0.25s;
}

.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__body {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.925rem;
  color: var(--slate-4);
  line-height: 1.7;
}

.faq-item.open .faq-item__body { display: block; }

/* ============================================
   GUARANTEE
============================================ */
.guarantee {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  max-width: 700px;
  margin-inline: auto;
}

.guarantee__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.guarantee__text strong {
  color: white;
}

.comparison .guarantee__text {
  color: rgba(255,255,255,0.7);
}

.comparison .guarantee__text strong {
  color: white;
}

.comparison .guarantee {
  background: rgba(37, 99, 235, 0.08);
}

/* ============================================
   WHO BUILDS THIS
============================================ */
.about-builder {
  background: var(--slate);
  padding: var(--section-py) 0;
}

.about-builder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.about-builder__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-builder__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.about-builder__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.about-builder__text a {
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.about-builder__text a:hover {
  color: var(--white);
}

/* ============================================
   CONTACT FORM
============================================ */
.cta-form {
  max-width: 480px;
  margin: 2rem auto 0;
  text-align: left;
}

.cta-form__group {
  margin-bottom: 1rem;
}

.cta-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.375rem;
}

.cta-form__input,
.cta-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: white;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}

.cta-form__input::placeholder,
.cta-form__textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.cta-form__input:focus,
.cta-form__textarea:focus {
  border-color: rgba(255,255,255,0.5);
  outline: 2px solid white;
  outline-offset: 2px;
}

.cta-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.cta-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  min-height: 48px;
}

.cta-form__submit:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

.cta-form__or {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.cta-form__or a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-form .h-captcha {
  margin: 0.5rem 0;
  display: flex;
  justify-content: center;
}

.cta-form__success {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
}

.cta-form__success svg {
  margin-bottom: 1rem;
}

.cta-form__success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.75rem;
}

.cta-form__success p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.cta-banner {
  background: var(--blue);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(0,0,0,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.cta-banner__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cta-banner__amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -0.04em;
}

.cta-banner__once {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: white;
  margin-bottom: 0.875rem;
  letter-spacing: -0.025em;
}

.cta-banner__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.25rem;
  max-width: 48ch;
  margin-inline: auto;
  line-height: 1.65;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.875rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  min-height: 50px;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
  min-height: 50px;
}

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

.cta-banner__note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--slate);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: white;
}

.footer__logo span { color: var(--blue-light); }

.footer__email {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer__email:hover { color: rgba(255,255,255,0.85); }

.footer__right {
  text-align: right;
}

.footer__tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}

.footer__location {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.hidden {
  opacity: 0;
  transform: translateY(24px);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-up.hidden {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card__img-wrap {
    height: 320px;
  }

  .how__steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .how__steps::before { display: none; }

  .step {
    padding: 1.5rem 1rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .step__num {
    margin: 0;
    flex-shrink: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .trust-bar__inner {
    gap: 1rem;
  }

  .trust-bar__divider { display: none; }

  .trust-item__text {
    font-size: 0.7rem;
  }

  .trust-item__icon svg {
    width: 14px;
    height: 14px;
  }

  table { font-size: 0.85rem; }

  thead th, tbody td {
    padding: 0.875rem 0.75rem;
  }

  .btn-primary, .btn-secondary, .btn-white, .btn-outline-white {
    width: 100%;
    justify-content: center;
  }

  .hero__actions { flex-direction: column; align-items: stretch; }

  .cta-banner__actions { flex-direction: column; align-items: stretch; max-width: 320px; margin-inline: auto; }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    justify-items: center;
  }

  .trust-bar__divider { display: none; }
}