/* ============================================================
   SWIFTWY LLC — Global Stylesheet
   Shared across all 11 pages.
   Page-specific styles live in: home.css, dashboard.css, crypto.css
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --navy:       #0d1f3c;
  --navy2:      #162d52;
  --navy-dark:  #060f1e;
  --gold:       #c9a84c;
  --gold-light: #e8c96e;
  --gold-pale:  #f5e9c8;
  --offwhite:   #f8f6f1;
  --white:      #ffffff;
  --text:       #1a1a2e;
  --muted:      #5a6478;
  --border:     #ddd8cc;
  --orange:     #f97316;
  --blue-dark:  #1e3a8a;
  --blue-med:   #2d4cc8;
  --green:      #22c55e;
  --lavender:   #eef2ff;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Lato', 'Helvetica Neue', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
button, a[onclick], [onclick] {
  cursor: pointer;
}
button { font-family: inherit; min-height: 44px; }
img    { max-width: 100%; height: auto; }

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

/* ── NAVBAR (shared: index, why-wyoming, services, pricing, faq, contact) ── */
nav#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 60% 35%, 100% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 0% 35%, 40% 35%);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.nav-login-btn {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 9px 20px;
}
.nav-login-btn:hover { background: rgba(201,168,76,0.1); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: block;
  transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 20px 5%;
  border-bottom: 2px solid var(--gold);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  font-size: 16px;
  cursor: pointer;
}

/* ── SHARED BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}
.btn-navy {
  background: transparent;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid var(--navy);
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.btn-navy:hover { background: var(--navy); color: var(--white); }
.btn-gold-full {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.btn-gold-full:hover { background: var(--gold-light); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 5%;
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.trust-icon  { font-size: 22px; color: var(--gold); }
.trust-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.trust-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── SECTIONS COMMON ── */
section { padding: 90px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.overline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 56px;
  line-height: 1.8;
}
.centered { text-align: center; }
.centered .section-sub { margin-left: auto; margin-right: auto; }

/* ── BENEFIT CARDS ── */
.why-section { background: var(--white); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 36px 28px;
  transition: all 0.3s;
  cursor: default;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13,31,60,0.12);
  border-top-color: var(--gold-light);
}
.benefit-icon  { font-size: 36px; margin-bottom: 18px; display: block; }
.benefit-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.benefit-desc  { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--offwhite); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.step-card:hover {
  box-shadow: 0 16px 40px rgba(13,31,60,0.1);
  transform: translateY(-4px);
}
.step-num {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  border: 3px solid var(--gold);
}
.step-num span { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--gold); }
.step-icon  { font-size: 26px; margin-bottom: 14px; display: block; }
.step-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.step-desc  { font-size: 15px; color: var(--muted); line-height: 1.7; }
.how-cta    { text-align: center; margin-top: 50px; }

/* ── PRICING ── */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  transition: all 0.3s;
  position: relative;
  background: var(--white);
}
.price-card:hover { box-shadow: 0 20px 50px rgba(13,31,60,0.1); }
.price-card.popular {
  border: 2px solid var(--navy);
  box-shadow: 0 16px 50px rgba(13,31,60,0.14);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 12px; font-weight: 700;
  padding: 6px 22px;
  border-radius: 50px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.plan-name  { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.plan-price { font-family: var(--serif); font-size: 54px; font-weight: 900; color: var(--navy); line-height: 1; }
.plan-price sup { font-size: 24px; vertical-align: top; margin-top: 10px; }
.plan-fee     { font-size: 13px; color: var(--muted); margin: 8px 0 24px; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li {
  font-size: 15px; color: var(--text);
  padding: 9px 0;
  border-bottom: 1px solid rgba(221,216,204,0.5);
  display: flex; align-items: flex-start; gap: 10px;
}
.plan-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-features li.muted-feat { color: var(--muted); }

/* ── TESTIMONIALS (navy version — inner pages) ── */
.testi-section { background: var(--navy); padding: 90px 5%; }
.testi-section .section-title { color: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 32px 28px;
}
.testi-stars  { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 18px; }
.testi-quote  { font-size: 15px; color: rgba(255,255,255,0.85); font-style: italic; line-height: 1.8; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--navy); flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--white); font-size: 15px; }
.testi-role { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── FAQ (inner pages — gold toggle) ── */
.faq-section { background: var(--offwhite); }
.faq-list    { max-width: 780px; margin: 0 auto; }
.faq-item    { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; gap: 16px;
}
.faq-q-text { font-size: 17px; font-weight: 700; color: var(--navy); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-toggle.open { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a.open { max-height: 300px; }
.faq-a-inner { padding: 0 0 22px 20px; border-left: 3px solid var(--gold); margin-left: 4px; }
.faq-a-inner p { font-size: 15px; color: var(--muted); line-height: 1.8; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  padding: 90px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(60deg, rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 50px);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; color: var(--white); margin-bottom: 18px;
}
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto 36px; line-height: 1.8; }
.cta-note    { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── FOOTER (shared) ── */
footer {
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 70px 5% 0;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px;
}
.footer-logo        { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon   {
  width: 28px; height: 28px; background: var(--gold);
  clip-path: polygon(50% 0%, 60% 35%, 100% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 0% 35%, 40% 35%);
  flex-shrink: 0;
}
.footer-logo-text   { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--gold); }
.footer-tagline     { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 24px; line-height: 1.7; }
.footer-socials     { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 4px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; cursor: pointer; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.fc-icon { color: var(--gold); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.fc-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-bottom {
  max-width: 1100px; margin: 50px auto 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 24px 0 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-copy       { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.2); max-width: 700px; text-align: center; line-height: 1.6; padding-bottom: 30px; }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 140px 5% 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(-45deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(34px, 5vw, 60px);
  font-weight: 900; color: var(--white); margin-bottom: 18px; position: relative;
}
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 580px; margin: 0 auto; position: relative; }

/* ── WHY WYOMING PAGE ── */
.why-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center; margin-bottom: 70px;
}
.why-detail-grid.reverse { direction: rtl; }
.why-detail-grid.reverse > * { direction: ltr; }
.why-img-box {
  background: var(--navy); border-radius: 10px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; border: 2px solid rgba(201,168,76,0.2);
}
.why-text h3 { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.why-text p  { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin: 50px 0;
}
.stat-box {
  background: var(--offwhite); border: 1px solid var(--border);
  border-top: 3px solid var(--gold); border-radius: 6px;
  padding: 28px 20px; text-align: center;
}
.stat-num   { font-family: var(--serif); font-size: 42px; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ── SERVICES PAGE ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 40px 32px; transition: all 0.3s;
}
.service-card:hover {
  box-shadow: 0 16px 40px rgba(13,31,60,0.1);
  transform: translateY(-4px); border-top: 3px solid var(--gold);
}
.service-icon  { font-size: 42px; margin-bottom: 20px; display: block; }
.service-title { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-desc  { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.service-features { list-style: none; }
.service-features li { font-size: 14px; color: var(--text); padding: 6px 0; display: flex; align-items: center; gap: 8px; }
.service-features li::before { content: '→'; color: var(--gold); font-weight: 700; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.contact-info p  { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px; padding: 20px;
  background: var(--offwhite); border-radius: 6px; border-left: 3px solid var(--gold);
}
.cd-icon  { font-size: 24px; flex-shrink: 0; }
.cd-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 4px; }
.cd-val   { font-size: 15px; color: var(--text); }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 44px 40px; }
.contact-form h3 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group  { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700; color: var(--text);
  margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border); border-radius: 4px;
  font-family: var(--sans); font-size: 15px; color: var(--text);
  background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white);
  font-family: var(--sans); font-size: 16px; font-weight: 700;
  padding: 16px; border-radius: 4px; border: none;
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px; margin-top: 6px;
}
.form-submit:hover { background: var(--navy2); }

/* ── MODAL OVERLAY ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(6,15,30,0.85);
  z-index: 2000; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }

/* ── AUTH PAGES (Login) ── */
.auth-wrapper {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  padding: 100px 20px 40px; position: relative; overflow: hidden;
}
.auth-wrapper::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  rgba(201,168,76,0.03) 0, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(-45deg, rgba(201,168,76,0.03) 0, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}
.auth-card {
  background: var(--white); border-radius: 10px;
  width: 100%; max-width: 480px; padding: 50px 44px;
  position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.auth-logo {
  display: flex; align-items: center; gap: 10px;
  justify-content: center; margin-bottom: 28px;
}
.auth-logo-icon {
  width: 28px; height: 28px; background: var(--gold);
  clip-path: polygon(50% 0%, 60% 35%, 100% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 0% 35%, 40% 35%);
}
.auth-logo-text { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--navy); }
.auth-title { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 6px; }
.auth-sub   { font-size: 14px; color: var(--muted); text-align: center; margin-bottom: 32px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider::before,
.auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span   { font-size: 12px; color: var(--muted); white-space: nowrap; }
.auth-submit {
  width: 100%; background: var(--navy); color: var(--white);
  font-family: var(--sans); font-size: 16px; font-weight: 700;
  padding: 16px; border-radius: 4px; border: none;
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.5px; margin-top: 8px;
}
.auth-submit:hover { background: var(--navy2); }
.auth-alt   { text-align: center; margin-top: 22px; font-size: 14px; color: var(--muted); }
.auth-alt a { color: var(--gold); font-weight: 700; cursor: pointer; text-decoration: none; }
.auth-alt a:hover { text-decoration: underline; }
.input-icon-wrap { position: relative; }
.input-icon-wrap input { padding-left: 42px; }
.input-icon-wrap .iicon {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%); font-size: 16px; color: var(--muted);
}
.remember-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px;
}
.remember-row label { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); cursor: pointer; }
.remember-row input[type=checkbox] { accent-color: var(--gold); width: 16px; height: 16px; }
.forgot-link   { font-size: 14px; color: var(--gold); cursor: pointer; font-weight: 700; }
.social-auth   { display: flex; gap: 12px; margin-bottom: 20px; }
.social-auth-btn {
  flex: 1; padding: 12px;
  border: 1px solid var(--border); border-radius: 4px;
  background: var(--white); font-size: 14px; font-weight: 700; color: var(--text);
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s;
}
.social-auth-btn:hover { border-color: var(--gold); background: var(--gold-pale); }
.password-strength      { margin-top: 6px; height: 4px; border-radius: 2px; background: var(--border); overflow: hidden; }
.password-strength-bar  { height: 100%; width: 0; border-radius: 2px; transition: all 0.3s; }
.terms-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 16px; line-height: 1.6; }
.terms-note a { color: var(--gold); cursor: pointer; }

/* ── STATUS BADGES (shared) ── */
.order-status      { padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; }
.status-active     { background: rgba(45,122,79,0.1);   color: #2d7a4f; }
.status-pending    { background: rgba(201,168,76,0.15); color: #9a7020; }
.status-processing { background: rgba(59,130,246,0.1);  color: #2563eb; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.reveal         { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid             { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-detail-grid         { grid-template-columns: 1fr; }
  .why-detail-grid.reverse { direction: ltr; }
  .contact-grid            { grid-template-columns: 1fr; }
  .stat-row                { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .nav-cta     { display: none; }
  .auth-card   { padding: 36px 24px; }
  .stat-row    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  input, select, textarea { font-size: 16px !important; }
  .nav-links a, .mobile-menu a { min-height: 44px; display: flex; align-items: center; }
}
@media (max-width: 640px) {
  .page-hero        { padding: 80px 16px 50px !important; }
  .page-hero p      { font-size: 15px !important; }
  .services-grid    { gap: 20px !important; }
  .pricing-grid     { gap: 20px !important; }
  .contact-grid     { grid-template-columns: 1fr !important; gap: 32px !important; }
  .contact-form     { padding: 28px 20px !important; }
  .why-detail-grid  { grid-template-columns: 1fr !important; gap: 32px !important; }
  nav#navbar        { padding: 0 16px !important; }
  .mobile-menu      { padding: 12px 16px !important; }
}
