/* ══════════════════════════════════════════════════════════════════
   SCANSECURE — LUXURY EMERGENCY TECHNOLOGY DESIGN SYSTEM
   Apple-Inspired Minimalism • High-Trust Editorial Layouts
   ══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.2.0/fonts/remixicon.css');

:root {
  /* Brand Color System */
  --brand: #0498CE;
  --brand-dark: #08779D;
  --brand-light: #EAF8FC;
  --brand-glow: rgba(4, 152, 206, 0.22);

  /* Backgrounds & Canvas */
  --bg: #FFFFFF;
  --section-bg: #F5F5F7;
  --surface: #FFFFFF;
  --surface-secondary: #FBFCFD;
  --dark-section: #1D1D1F;

  /* Typography Colors */
  --text: #1D1D1F;
  --text-secondary: #6E6E73;
  --text-muted: #86868B;
  --text-inverse: #FFFFFF;

  /* Structural Accents */
  --border: #D2D2D7;
  --border-light: rgba(0, 0, 0, 0.06);
  --border-dark: rgba(255, 255, 255, 0.12);

  /* Functional Safety Accents (Used Sparingly) */
  --emergency-red: #FF3B30;
  --emergency-red-tint: #FFF0F0;
  --success: #34C759;
  --success-tint: #EEFBF1;
  --warning: #FF9500;

  /* Geometry & Shadows */
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-floating: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 30px rgba(4, 152, 206, 0.18);

  /* Font Stacks */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  --font-logo: 'Syne', sans-serif;
}

/* ─── RESET & GLOBAL BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg);
  color: var(--text);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

/* ─── STRICT ORIGINAL BRAND LOGO ─── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-logo) !important;
  font-size: 1.35rem;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  color: var(--text) !important;
  text-decoration: none;
  user-select: none;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #00e5ff, #7c3aed) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.4) !important;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
}

.logo-icon i {
  font-size: 17px;
  color: #FFFFFF !important;
}

.logo span {
  color: #00e5ff !important;
  font-family: var(--font-logo) !important;
  font-weight: 800 !important;
}

/* ─── APPLE-INSPIRED STICKY FROSTED NAVBAR ─── */
.apple-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.apple-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.apple-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.apple-nav a:hover,
.apple-nav a.active {
  color: var(--text);
}

/* ─── DROPDOWN / MEGA MENU ON HOVER ─── */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 64px;
}

.nav-link-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link-dropdown:hover {
  color: var(--text);
}

.nav-link-dropdown svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .nav-link-dropdown svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-floating);
  padding: 14px;
  width: 310px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.18s ease;
}

.dropdown-card-item:hover {
  background: var(--brand-light);
}

.dropdown-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
  box-shadow: var(--shadow-subtle);
}

.dropdown-card-info h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.dropdown-card-info p {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.3;
}

.apple-nav-cta {
  padding: 8px 20px !important;
  background: var(--brand) !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  border-radius: var(--radius-pill);
  border: 1px solid var(--brand) !important;
  box-shadow: 0 4px 14px var(--brand-glow);
  transition: all 0.22s ease !important;
}

.apple-nav-cta:hover {
  background: #1D1D1F !important;
  border-color: #1D1D1F !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-1px);
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-btn span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-drawer {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px 6vw 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.mobile-nav-drawer a i {
  width: 22px;
  font-size: 18px;
  color: var(--brand);
  text-align: center;
}

.mobile-nav-drawer a:hover,
.mobile-nav-drawer a.active {
  background: var(--brand-light);
  border-color: rgba(4, 152, 206, 0.2);
  color: var(--brand-dark);
}

/* ─── BUTTONS (APPLE PILL WITH EXACT HOVER STATES) ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97) !important;
}

/* Primary Brand Button (#0498CE -> hover Jet Black #1D1D1F) */
.btn-primary {
  background: var(--brand);
  color: #FFFFFF;
  border-color: var(--brand);
  box-shadow: 0 4px 16px var(--brand-glow);
}

.btn-primary:hover {
  background: #1D1D1F !important;
  border-color: #1D1D1F !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

/* Dark Button (#1D1D1F -> hover Brand #0498CE) */
.btn-dark {
  background: #1D1D1F;
  color: #FFFFFF;
  border-color: #1D1D1F;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-dark:hover {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 24px var(--brand-glow);
  transform: translateY(-2px);
}

/* Outline Button */
.btn-outline {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-subtle);
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
  transform: translateY(-2px);
}

/* Subtle Tint Pill */
.btn-tint {
  background: var(--brand-light);
  color: var(--brand-dark);
  border-color: rgba(4, 152, 206, 0.25);
}

.btn-tint:hover {
  background: var(--brand);
  color: #FFFFFF;
  border-color: var(--brand);
  transform: translateY(-2px);
}

/* ─── TYPOGRAPHY & HEADINGS ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--brand-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  border: 1px solid rgba(4, 152, 206, 0.2);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 6px var(--brand);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}

.hero-title {
  font-size: clamp(38px, 5.8vw, 76px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-title .brand-span,
.brand-span {
  color: var(--brand) !important;
  background: linear-gradient(135deg, #0498CE 0%, #08779D 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline;
}

.hero-subtitle {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.section-title {
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── SECTION CONTAINERS ─── */
.apple-section {
  padding: 90px 5vw;
}

.apple-wrap {
  max-width: 1220px;
  margin: 0 auto;
}

.apple-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-subtle);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.apple-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: #B5B5BA;
}

/* ─── 3D FLOATING FLIPPABLE CARD ─── */
.card-preview-container {
  perspective: 1400px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}

.flipper-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1.586 / 1;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.2, 0.85, 0.4, 1.25);
  cursor: pointer;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-floating), 0 0 40px var(--brand-glow);
}

.flipper-card.is-flipped {
  transform: rotateY(180deg);
}

.real-card-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.real-card-face.card-back {
  transform: rotateY(180deg);
}

.real-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sample-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.sample-card-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 6px var(--brand);
}

.flip-card-btn {
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: all 0.2s ease;
}

.flip-card-btn:hover {
  background: var(--brand-light);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}

.flip-card-btn svg {
  transition: transform 0.4s ease;
}

.flip-card-btn:hover svg {
  transform: rotate(180deg);
}

/* ─── MINIMAL TRUST / METRIC STRIP ─── */
.apple-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.apple-stat-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border-light);
}

.apple-stat-num {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.apple-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ─── EDITORIAL PROBLEM CONTRAST ─── */
.problem-contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 48px;
}

.problem-side-card {
  border-radius: var(--radius-xl);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.problem-side-card.locked {
  background: #F5F5F7;
  border: 1px solid var(--border);
}

.problem-side-card.solution {
  background: #FFFFFF;
  border: 1.5px solid var(--brand);
  box-shadow: var(--shadow-card), 0 0 30px var(--brand-glow);
}

/* ─── 4-STEP HOW IT WORKS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  position: relative;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

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

.step-number {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--brand);
  background: var(--brand-light);
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── "ONE SCAN" DARK CONTRAST LUXURY SECTION ─── */
.dark-experience-section {
  background: var(--dark-section);
  color: #FFFFFF;
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}

.dark-experience-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 152, 206, 0.15), transparent 70%);
  pointer-events: none;
}

/* ─── 2-PHONE REALISTIC EMERGENCY SHOWCASE ─── */
.mockup-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 820px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 768px) {
  .mockup-duo-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}

.mockup-phone-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.mockup-screen-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  white-space: nowrap;
}

.mockup-badge-step {
  background: #00E5FF;
  color: #000000;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
}

.mockup-device-frame {
  background: #F5F5F7;
  border: 7px solid #2C2C2E;
  border-radius: 44px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15);
  width: 100%;
  max-width: 360px;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
}

.mockup-device-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0, 229, 255, 0.15), 0 0 0 1px rgba(0, 229, 255, 0.3);
}

.mockup-dynamic-island {
  width: 80px;
  height: 20px;
  background: #000000;
  border-radius: 20px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.mockup-sos-strip {
  background: #FF3B30;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  margin-top: 34px;
  box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3);
}

.mockup-sos-strip span {
  font-size: 9.5px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: center;
}

.mockup-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFFFFF;
  flex-shrink: 0;
}

.mockup-screen-content {
  padding: 16px 14px 20px;
  color: #1D1D1F;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mockup-profile-header {
  text-align: center;
  margin-bottom: 12px;
}

.mockup-avatar-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 6px;
  padding: 2px;
  border: 2.5px solid #0498CE;
  background: #FFFFFF;
}

.mockup-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.mockup-user-name {
  font-size: 16px;
  font-weight: 800;
  color: #1D1D1F;
  letter-spacing: -0.02em;
}

.mockup-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #EEFBF1;
  border: 1px solid rgba(52, 199, 89, 0.3);
  color: #248A3D;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin: 3px 0 2px;
}

.mockup-user-email {
  font-size: 10.5px;
  color: #86868B;
}

.mockup-blood-card {
  background: #FFF0F0;
  border: 1px solid rgba(255, 59, 48, 0.25);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.mockup-blood-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 59, 48, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-blood-label {
  font-size: 9px;
  font-weight: 800;
  color: #FF3B30;
  letter-spacing: 0.06em;
}

.mockup-blood-value {
  font-size: 20px;
  font-weight: 800;
  color: #FF3B30;
  line-height: 1.1;
}

.mockup-section-card {
  background: #FFFFFF;
  border: 1px solid #D2D2D7;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
}

.mockup-card-title-bar {
  font-size: 9px;
  font-weight: 800;
  color: #1D1D1F;
  letter-spacing: 0.06em;
  padding-left: 6px;
  border-left: 2.5px solid #0498CE;
  margin-bottom: 8px;
}

.mockup-call-primary-btn {
  background: #248A3D;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(36, 138, 61, 0.3);
}

.mockup-call-icon-box {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F5F5F7;
  border-radius: 10px;
  padding: 8px 10px;
}

.mockup-contact-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EAF8FC;
  border: 1px solid #0498CE;
  color: #08779D;
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-contact-name {
  font-size: 11.5px;
  font-weight: 700;
  color: #1D1D1F;
}

.mockup-contact-phone {
  font-size: 10px;
  color: #6E6E73;
}

.mockup-contact-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #EEFBF1;
  border: 1px solid rgba(52, 199, 89, 0.3);
  color: #248A3D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-addr-box {
  background: #F5F5F7;
  border-radius: 10px;
  padding: 8px 10px;
}

.mockup-addr-lbl {
  font-size: 8.5px;
  font-weight: 700;
  color: #08779D;
}

.mockup-addr-val {
  font-size: 11.5px;
  font-weight: 600;
  color: #1D1D1F;
  margin-top: 2px;
}

.mockup-med-box {
  background: #F5F5F7;
  border: 1px solid #E5E5EA;
  border-radius: 10px;
  padding: 7px 9px;
}

.mockup-med-lbl {
  font-size: 8px;
  font-weight: 800;
  color: #08779D;
  letter-spacing: 0.04em;
}

.mockup-med-val {
  font-size: 11px;
  font-weight: 600;
  color: #1D1D1F;
  margin-top: 2px;
}

.mockup-doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F5F5F7;
  border-radius: 10px;
  padding: 8px 10px;
}

.mockup-doc-icon {
  font-size: 16px;
}

.mockup-doc-title {
  font-size: 11px;
  font-weight: 700;
  color: #1D1D1F;
}

.mockup-doc-meta {
  font-size: 9px;
  color: #6E6E73;
}

.mockup-doc-btn {
  background: #0498CE;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
}

.mockup-footer-badge {
  text-align: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #E5E5EA;
}

/* ─── CONSOLIDATED FEATURES ECOSYSTEM ─── */
.features-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: #B5B5BA;
}

.features-bento-grid>.feature-bento-card:last-child:nth-child(3n + 1),
.feature-bento-card.card-centered {
  grid-column: 2;
}

@media (max-width: 1080px) {

  .features-bento-grid>.feature-bento-card:last-child:nth-child(3n + 1),
  .feature-bento-card.card-centered {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {

  .features-bento-grid>.feature-bento-card:last-child:nth-child(3n + 1),
  .feature-bento-card.card-centered {
    grid-column: 1;
    max-width: 100%;
  }
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand);
}

/* ─── AUDIENCE CARDS (WHO IS IT FOR) ─── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all 0.2s ease;
}

.audience-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-subtle);
}

/* ─── PRICING CARDS ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  align-items: stretch;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card.featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-card), 0 0 30px var(--brand-glow);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px var(--brand-glow);
}

/* ─── COMPARISON TABLE ─── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
}

.compare-table th {
  background: var(--section-bg);
  font-weight: 700;
  color: var(--text);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

/* ─── FAQ ACCORDION ─── */
.faq-accordion {
  max-width: 820px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--brand);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--brand);
}

.faq-answer {
  display: none;
  padding: 0 26px 22px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ─── LUXURY MINIMAL FOOTER ─── */
.apple-footer {
  background: var(--section-bg);
  border-top: 1px solid var(--border);
  padding: 70px 5vw 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-col p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 320px;
  margin-top: 14px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand);
}

/* Footer Social & Contact Buttons */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.footer-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.footer-social-btn.ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #FFFFFF !important;
  border-color: transparent;
}

.footer-social-btn.li:hover {
  background: #0A66C2;
  color: #FFFFFF !important;
  border-color: #0A66C2;
}

.footer-social-btn.mail:hover {
  background: var(--brand);
  color: #FFFFFF !important;
  border-color: var(--brand);
}

.footer-bottom-bar {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--brand);
}

/* ─── MOBILE BOTTOM APP DOCK ─── */
.mobile-app-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 998;
  padding: 0 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}

.dock-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}

.dock-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  flex: 1;
  padding: 4px 2px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dock-tab i {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.dock-tab:hover i,
.dock-tab.active i {
  transform: translateY(-2px);
}

.dock-tab.active {
  color: var(--brand);
}

/* ─── PRICING & ORDER VARIANTS GRID ─── */
.variants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .variants-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 20px auto 0;
  }
}

.variant-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-card);
}

.variant-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-floating);
  border-color: var(--brand);
}

.variant-card.featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-glow);
}

.variant-badge-launched {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--brand-light);
  color: var(--brand-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.variant-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--brand-light);
  color: var(--brand);
}

.variant-icon-wrap.individual {
  background: #EAF8FC;
  color: var(--brand);
}

.variant-icon-wrap.company {
  background: #EEF2F6;
  color: #1D1D1F;
}

.variant-icon-wrap.student {
  background: #FFF4E5;
  color: #D97706;
}

.variant-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.variant-audience {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.variant-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 24px;
  min-height: 44px;
}

.variant-price-box {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.variant-price-value {
  font-family: var(--font-sans);
  font-size: 38px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.variant-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.variant-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
}

.variant-features-list li svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── JOURNEY STRIP ─── */
.journey-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .journey-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .journey-strip {
    grid-template-columns: 1fr;
  }
}

.journey-step {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: left;
  transition: all 0.2s ease;
}

.journey-step:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-card);
}

.step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── COMPREHENSIVE RESPONSIVE BREAKPOINTS ─── */
@media (max-width: 1080px) {
  .apple-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 48px auto 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 860px) {
  .hero-title {
    font-size: clamp(32px, 6vw, 48px);
  }

  .product-reveal-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 768px) {
  .apple-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .mobile-app-dock {
    display: block;
  }

  body {
    padding-bottom: 74px;
  }

  .apple-section {
    padding: 50px 5vw;
  }

  .problem-contrast-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .problem-side-card {
    padding: 32px 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 26px 20px;
  }

  .features-bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-bento-card {
    padding: 26px 20px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .card-preview-container {
    max-width: 360px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 40px;
  }

  .hero-cta-group .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .apple-header {
    padding: 0 4vw;
  }

  .apple-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .apple-stat-card {
    padding: 16px 8px;
  }

  .apple-stat-num {
    font-size: 24px;
  }

  .apple-stat-label {
    font-size: 11.5px;
  }

  .section-title {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .section-subtitle {
    font-size: 14.5px;
  }

  .pricing-card {
    padding: 28px 18px;
  }

  .variant-card {
    padding: 28px 18px;
  }

  .card-preview-container {
    max-width: 320px;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 14px;
    font-size: 13.5px;
  }
}

/* ─── INDIVIDUAL CARD 2x2 FEATURES GRID ─── */
.indiv-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .indiv-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── LUXURY RESPONSIVE FORM SYSTEM (APPLE-INSPIRED) ─── */
.apple-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-card), 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.apple-form-card:focus-within {
  border-color: #B5B5BA;
  box-shadow: var(--shadow-floating);
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header .form-title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.form-header .form-subtitle {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  text-align: left;
}

.form-grid-2 .form-group {
  margin-bottom: 0;
}

.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}

.form-label .req-star {
  color: var(--emergency-red);
  margin-left: 2px;
}

.form-label .form-badge-optional {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--section-bg);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background: #FFFFFF;
  border: 1.5px solid #D2D2D7;
  border-radius: 12px;
  outline: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.form-control::placeholder {
  color: #A1A1A6;
  font-size: 14px;
}

.form-control:hover {
  border-color: #A1A1A6;
}

.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3.5px var(--brand-glow);
  background: #FFFFFF;
}

.form-select-wrapper {
  position: relative;
  width: 100%;
}

.form-select-wrapper::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  color: var(--text-secondary);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.2s ease;
}

.form-select {
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.55;
}

.form-btn-submit {
  width: 100%;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px var(--brand-glow);
  cursor: pointer;
  border: 1.5px solid var(--brand);
  background: var(--brand);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.22s ease;
}

.form-btn-submit:hover {
  background: #1D1D1F;
  border-color: #1D1D1F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.form-footer-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ─── RESPONSIVE TEXT UTILITIES ─── */
.desktop-only-text {
  display: inline;
}

.mobile-only-text {
  display: none;
}

@media (max-width: 768px) {
  .apple-form-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }

  .form-group {
    margin-bottom: 14px;
    gap: 5px;
  }

  .form-header {
    margin-bottom: 22px;
  }

  .form-header .form-title {
    font-size: 22px;
  }

  .form-header .form-subtitle {
    font-size: 13.5px;
  }

  .form-label {
    font-size: 12.5px;
  }

  .form-control {
    padding: 11px 14px;
    font-size: 15px;
  }

  .form-control::placeholder {
    font-size: 13.5px;
  }

  .form-textarea {
    min-height: 75px;
  }

  .form-btn-submit {
    padding: 13px 18px;
    font-size: 14.5px;
  }

  .desktop-only-text {
    display: none !important;
  }

  .mobile-only-text {
    display: inline !important;
  }
}