@charset "UTF-8";
/* ================================================================
   IFENIA — Marketing Site Design System v3
   Navy · Gold · Ivory  ·  Cormorant Garamond + Jost
================================================================ */
/* ── Google Fonts import (fallback inline) ─────────────────── */
/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy: #0D1525;
  --navy-deep: #07101E;
  --navy-mid: #14203A;
  --navy-card: rgba(16, 26, 46, 0.92);
  --gold: #C8A96E;
  --gold-hi: #DEC08E;
  --gold-pale: #F0E2C8;
  --gold-dim: rgba(200, 169, 110, 0.28);
  --gold-ring: rgba(200, 169, 110, 0.18);
  --ivory: #F8F4EE;
  --ivory-mid: #F0EAE1;
  --white: #FFFFFF;
  --ink: #0A1222;
  --ink-mid: #2C3E55;
  --ink-muted: #5A6A7A;
  --ink-light: #8A96A8;
  --text: #DDD5C5;
  --text-dim: #7A8898;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Jost', system-ui, sans-serif;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 48px;
  --r-full: 9999px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t: 0.35s var(--ease);
  --t-fast: 0.18s ease;
  --shadow-sm: 0 2px 12px rgba(10,18,34,0.08);
  --shadow-md: 0 6px 30px rgba(10,18,34,0.12);
  --shadow-lg: 0 16px 60px rgba(10,18,34,0.18);
  --shadow-dark: 0 20px 70px rgba(0,0,0,0.55);
  --shadow-gold: 0 0 50px rgba(200,169,110,0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  background: var(--ivory);
  color: var(--ink-mid);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--gold-hi);
}

/* ── Typography helpers ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.eyebrow::before, .eyebrow::after {
  content: "";
  flex-shrink: 0;
  width: 30px;
  height: 1px;
  background: var(--gold-dim);
}

.eyebrow--left {
  justify-content: flex-start;
}

.eyebrow--left::before {
  display: none;
}

.headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--gold-pale);
}

.headline--dark {
  color: var(--ink);
}

.headline em {
  font-style: italic;
  color: var(--gold);
}

.subline {
  font-family: var(--ff-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 520px;
}

.subline--dark {
  color: var(--ink-muted);
}

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.4rem 2.5rem;
  transition: background var(--t), padding var(--t), box-shadow var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(7, 16, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 2.5rem;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
  border-bottom-color: var(--gold-ring);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-pale) !important;
}

.nav-logo img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-ring);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-pale);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim) !important;
  position: relative;
  padding-bottom: 3px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.28s ease;
}

.nav-link:hover {
  color: var(--gold-pale) !important;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-deep) !important;
  background: linear-gradient(135deg, var(--gold) 0%, #B8914A 100%);
  padding: 0.6rem 1.5rem;
  border-radius: var(--r-full);
  transition: var(--t);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 169, 110, 0.5);
  color: var(--navy-deep) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--t-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Section helpers ─────────────────────────────────────────── */
.section {
  padding: 7rem 2rem;
}

.section--sm {
  padding: 4rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-inner--narrow {
  max-width: 900px;
  margin: 0 auto;
}

.section--dark {
  background: var(--navy-deep);
  color: var(--text);
}

.section--navy {
  background: var(--navy);
  color: var(--text);
}

.section--mid {
  background: var(--navy-mid);
  color: var(--text);
}

.section--ivory {
  background: var(--ivory);
  color: var(--ink-mid);
}

.section--white {
  background: var(--white);
  color: var(--ink-mid);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header--left {
  text-align: left;
  margin-bottom: 3rem;
}

/* ── Gold divider ────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 1.25rem auto;
  max-width: 240px;
}

.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}

.divider::after {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}

.divider span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.divider--left {
  margin-left: 0;
  max-width: none;
  justify-content: flex-start;
}

.divider--left::before {
  display: none;
}

.divider--left::after {
  max-width: 80px;
  flex: none;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border-radius: var(--r-full);
  transition: var(--t);
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #B8914A 100%);
  color: var(--navy-deep) !important;
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(200, 169, 110, 0.5);
  color: var(--navy-deep) !important;
}

.btn--outline {
  background: transparent;
  color: var(--gold-pale) !important;
  border: 1.5px solid var(--gold-ring);
}

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.08);
  color: var(--gold) !important;
  transform: translateY(-3px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--ink-mid) !important;
  border: 1.5px solid rgba(10, 18, 34, 0.2);
}

.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Phone Mockup ────────────────────────────────────────────── */
.phone {
  position: relative;
  display: inline-block;
  border-radius: 40px;
  border: 9px solid #080E1C;
  box-shadow: 0 0 0 1.5px rgba(200, 169, 110, 0.2), 0 30px 90px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  background: #080E1C;
}

.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background: #1A202E;
  border-radius: 3px;
  z-index: 10;
}

.phone img {
  width: 100%;
  display: block;
}

.phone--lg {
  width: 270px;
}

.phone--md {
  width: 210px;
}

.phone--sm {
  width: 170px;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: radial-gradient(ellipse at 70% 30%, rgba(200, 169, 110, 0.07) 0%, transparent 55%), radial-gradient(ellipse at 20% 80%, rgba(60, 100, 200, 0.05) 0%, transparent 50%), linear-gradient(160deg, #07101E 0%, #0D1525 50%, #14203A 80%, #0D1525 100%);
  padding: 9rem 2rem 6rem;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.hero {
  position: relative;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid var(--gold-ring);
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.75rem;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--gold-pale);
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-title strong {
  font-weight: 400;
  display: block;
}

.hero-sub {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.2rem;
  padding-bottom: 1rem;
}

.hero-phones .phone:nth-child(1) {
  transform: rotate(-4deg) translateY(20px);
  z-index: 1;
}

.hero-phones .phone:nth-child(2) {
  transform: rotate(0deg);
  z-index: 3;
  box-shadow: 0 0 0 1.5px rgba(200, 169, 110, 0.35), 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(200, 169, 110, 0.15);
}

.hero-phones .phone:nth-child(3) {
  transform: rotate(4deg) translateY(20px);
  z-index: 1;
}

/* ── Trust bar ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-ring);
  border-bottom: 1px solid var(--gold-ring);
  padding: 1.75rem 2rem;
}

.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  white-space: nowrap;
}

.trust-item .trust-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--gold-ring);
  flex-shrink: 0;
}

/* ── Value Props ─────────────────────────────────────────────── */
.vp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vp-card {
  background: var(--white);
  border: 1px solid rgba(10, 18, 34, 0.07);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.vp-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  transition: var(--t);
}

.vp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(200, 169, 110, 0.1);
  border-color: rgba(200, 169, 110, 0.25);
}

.vp-card:hover::after {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.vp-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.vp-card h3 {
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.vp-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin: 0;
}

/* ── Feature Row ─────────────────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.feature-row + .feature-row {
  border-top: 1px solid var(--gold-ring);
}

.feature-row.reverse .feature-phone {
  order: -1;
}

.feature-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--gold-pale);
  margin-bottom: 1rem;
}

.feature-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 1.75rem;
}

.feature-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-dim);
  padding: 0.7rem 1rem;
  background: rgba(200, 169, 110, 0.05);
  border-left: 2px solid var(--gold-dim);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* on ivory bg */
.section--ivory .feature-text h2 {
  color: var(--ink);
}

.section--ivory .feature-text p {
  color: var(--ink-muted);
}

.section--ivory .feature-points li {
  background: rgba(10, 18, 34, 0.03);
  color: var(--ink-muted);
  border-left-color: rgba(200, 169, 110, 0.35);
}

.feature-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.feature-phone::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section--ivory .feature-phone::before {
  background: radial-gradient(circle, rgba(200, 169, 110, 0.12) 0%, transparent 70%);
}

/* ── How it works ────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-dim));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-ring);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.section--dark .step-num {
  background: var(--navy-mid);
  border-color: var(--gold-dim);
  box-shadow: none;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.section--dark .step h3 {
  color: var(--gold-pale);
}

.step p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

.section--dark .step p {
  color: var(--text-dim);
}

/* ── Mini features grid ──────────────────────────────────────── */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mini-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(10, 18, 34, 0.07);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: var(--t-fast);
}

.mini-card:hover {
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(200, 169, 110, 0.08);
}

.mini-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.mini-card h4 {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.mini-card p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── App Gallery ─────────────────────────────────────────────── */
.gallery-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.2rem;
  padding: 2rem 0 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-phones::-webkit-scrollbar {
  display: none;
}

.gallery-phones .phone {
  flex-shrink: 0;
}

.gallery-phones .phone:nth-child(odd) {
  transform: translateY(-12px);
}

/* ── Download section ────────────────────────────────────────── */
.download-section {
  background: radial-gradient(ellipse at 50% 60%, rgba(200, 169, 110, 0.09) 0%, transparent 60%), var(--navy-deep);
  border-top: 1px solid var(--gold-ring);
  text-align: center;
  padding: 7rem 2rem;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.badge-wrap {
  display: inline-flex;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gold-ring);
  transition: var(--t);
}

.badge-wrap:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(200, 169, 110, 0.3);
}

.badge-wrap img {
  height: 52px;
  width: auto;
  display: block;
}

/* ── Page hero (interior pages) ─────────────────────────────── */
.page-hero {
  background: radial-gradient(ellipse at 60% 40%, rgba(200, 169, 110, 0.06) 0%, transparent 55%), linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 11rem 2rem 5rem;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 300;
  color: var(--gold-pale);
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Features detail page ────────────────────────────────────── */
.feat-section {
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(10, 18, 34, 0.08);
}

.feat-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.feat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.feat-header .ico {
  font-size: 1.5rem;
}

.feat-header h2 {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--ink);
}

.feat-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid rgba(10, 18, 34, 0.07);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  line-height: 1.6;
}

.feat-list li:hover {
  border-color: rgba(200, 169, 110, 0.3);
  box-shadow: var(--shadow-md);
}

.feat-list li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.4rem;
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.tab-cards {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tab-card {
  background: var(--white);
  border: 1px solid rgba(10, 18, 34, 0.07);
  border-radius: var(--r-md);
  padding: 1.25rem 0.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--t-fast);
}

.tab-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 110, 0.3);
  box-shadow: var(--shadow-md);
}

.tab-card .ico {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.tab-card span {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(10, 18, 34, 0.08);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 169, 110, 0.3);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(200, 169, 110, 0.1);
}

.contact-card .ico {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
  display: block;
}

.contact-card h3 {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.75;
}

.contact-card a {
  color: var(--gold);
  font-weight: 500;
}

.contact-card a:hover {
  color: #B8914A;
}

/* ── Prose ───────────────────────────────────────────────────── */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}

.prose h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.25);
}

.prose h2 {
  font-size: 1.5rem;
  margin: 3.5rem 0 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  color: var(--ink);
}

.prose h3 {
  font-size: 1.1rem;
  margin: 2rem 0 0.75rem;
  color: var(--ink-mid);
}

.prose p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.9;
}

.prose ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.prose li {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.prose strong {
  color: var(--ink-mid);
  font-weight: 500;
}

.prose a {
  color: var(--gold);
}

.prose a:hover {
  color: #B8914A;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--gold-ring);
  padding: 5rem 2.5rem 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-ring);
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dim);
  margin: 0;
}

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

.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: var(--text-dim) !important;
  margin-bottom: 0.6rem;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer-col a:hover {
  color: var(--gold-pale) !important;
  padding-left: 5px;
}

.footer-divider {
  max-width: 1200px;
  margin: 0 auto 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-ring), transparent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: var(--text-dim);
  margin: 0;
  letter-spacing: 0.05em;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tab-cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .steps-grid::before {
    display: none;
  }
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .btn-group {
    justify-content: center;
  }
  .hero-phones {
    padding-bottom: 0;
  }
  .hero-phones .phone:nth-child(1),
  .hero-phones .phone:nth-child(3) {
    display: none;
  }
  .vp-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
  }
  .feature-row.reverse .feature-phone {
    order: 0;
  }
  .mini-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .feat-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .site-nav {
    padding: 1.2rem 1.5rem;
  }
  .site-nav.scrolled {
    padding: 0.85rem 1.5rem;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 16, 30, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-link {
    font-size: 1.1rem;
  }
  .nav-cta {
    font-size: 0.85rem;
    padding: 0.8rem 2rem;
  }
  .nav-toggle {
    display: flex;
  }
  .section {
    padding: 5rem 1.5rem;
  }
  .vp-grid {
    grid-template-columns: 1fr;
  }
  .mini-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .trust-inner {
    gap: 1.5rem;
  }
  .trust-sep {
    display: none;
  }
  .tab-cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
  .phone--lg {
    width: 220px;
  }
}

/*# sourceMappingURL=style.css.map */