/* ============================================================
   SECOND CHOICE REMOTE MAILING — Design System v2
   Navy · Gold · Black · White | No Purple
   Polished · Premium · National Brand Feel
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --navy-900: #070e1a;
  --navy-800: #0a1628;
  --navy-700: #0f2035;
  --navy-600: #152d4a;
  --navy-500: #1d3d66;
  --navy-400: #2a5a8f;
  --navy-300: #3d7cc2;
  --navy-200: #6da3d9;
  --navy-100: #b3d1ee;

  --gold-600: #9a7b30;
  --gold-500: #b8932e;
  --gold-400: #c9a84c;
  --gold-300: #d4af37;
  --gold-200: #e8c84a;
  --gold-100: #f0dfa0;

  --black: #000000;
  --gray-900: #111111;
  --gray-800: #1a1a1a;
  --gray-700: #2a2a2a;
  --gray-600: #3a3a3a;
  --gray-500: #555555;
  --gray-400: #888888;
  --gray-300: #aaaaaa;
  --gray-200: #d0d0d0;
  --gray-100: #e8e8e8;
  --gray-50: #f5f5f5;
  --white: #ffffff;

  /* Semantic */
  --success: #2ecc71;
  --warning: #f39c12;
  --error: #e74c3c;
  --info: #3498db;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows – Polished depth system */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.18), 0 8px 16px rgba(0,0,0,0.08);
  --shadow-2xl: 0 30px 70px rgba(0,0,0,0.22);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.2), 0 2px 8px rgba(212,175,55,0.1);
  --shadow-gold-lg: 0 8px 35px rgba(212,175,55,0.28), 0 4px 12px rgba(212,175,55,0.15);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 0 1px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 12px 36px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --nav-height: 74px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-xl); }
.container--narrow { max-width: var(--container-narrow); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-gold { color: var(--gold-300); }
.text-navy { color: var(--navy-600); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn:hover::after { transform: translateX(100%); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-200));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-gold);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--secondary:hover {
  border-color: var(--gold-300);
  color: var(--gold-300);
  transform: translateY(-2px);
  background: rgba(212,175,55,0.06);
}

.btn--dark {
  background: var(--navy-700);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
}
.btn--dark:hover {
  background: var(--navy-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--navy-700);
  border: 2px solid var(--gray-200);
}
.btn--outline:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 0.6rem 1.2rem;
}
.btn--ghost:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn--lg { padding: 1.05rem 2.8rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--icon { padding: 0.65rem; border-radius: var(--radius-md); }

.btn:disabled, .btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10,22,40,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  z-index: 1000;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  transition: all var(--transition-base);
}
.navbar.scrolled {
  background: rgba(7,14,26,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom-color: rgba(212,175,55,0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Logo area */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: opacity var(--transition-fast);
  flex-shrink: 0;
}
.navbar__logo:hover { opacity: 0.9; }

.navbar__logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--navy-900);
  font-weight: 800;
  font-family: var(--font-display);
  box-shadow: 0 2px 8px rgba(212,175,55,0.25);
  position: relative;
  overflow: hidden;
}
.navbar__logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.navbar__logo-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.navbar__logo-name .gold { color: var(--gold-300); }
.navbar__logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.navbar__link {
  padding: 0.5rem 0.9rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--gold-300);
  border-radius: 1px;
  transition: transform var(--transition-base);
}
.navbar__link:hover {
  color: var(--white);
}
.navbar__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.navbar__link.active {
  color: var(--gold-300);
}
.navbar__link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Login dropdown trigger */
.nav-login-wrap {
  position: relative;
  overflow: visible;
}
.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  background: transparent;
}
.nav-login-btn:hover {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-login-btn .login-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

/* Login dropdown */
.login-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  animation: dropdownIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}
.login-dropdown.open { display: block; }
@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.login-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: rotate(45deg);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-left: 1px solid rgba(0,0,0,0.06);
}

.login-dropdown__header {
  padding: 1.1rem 1.25rem 0.6rem;
  border-bottom: 1px solid var(--gray-100);
}
.login-dropdown__header h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.02em;
}
.login-dropdown__header p {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.15rem;
}

.login-dropdown__option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border-bottom: 1px solid var(--gray-50);
}
.login-dropdown__option:last-child { border-bottom: none; }
.login-dropdown__option:hover {
  background: var(--gray-50);
}

.login-dropdown__option-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.login-dropdown__option-icon--customer {
  background: linear-gradient(135deg, rgba(42,90,143,0.12), rgba(42,90,143,0.06));
  color: var(--navy-500);
}
.login-dropdown__option-icon--admin {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.06));
  color: var(--gold-500);
}

.login-dropdown__option-text h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-800);
}
.login-dropdown__option-text p {
  font-size: 0.76rem;
  color: var(--gray-400);
  margin-top: 0.1rem;
}
.login-dropdown__option-arrow {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--gray-300);
  transition: transform var(--transition-fast);
}
.login-dropdown__option:hover .login-dropdown__option-arrow {
  transform: translateX(3px);
  color: var(--navy-500);
}

/* Mobile nav — hidden by default on ALL screen sizes */
.mobile-nav {
  display: none;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}
.navbar__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
@media (max-width: 968px) {
  .navbar__hamburger { display: flex; }
  .navbar__links,
  .navbar__actions { display: none; }

  .mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100vh - var(--nav-height));
    background: var(--navy-800);
    z-index: 999;
    padding: var(--space-xl) var(--space-xl) var(--space-2xl);
    flex-direction: column;
    gap: 0.35rem;
    overflow-y: auto;
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    border-bottom: 1px solid rgba(212,175,55,0.12);
  }
  .mobile-nav.open { display: flex; }

  .mobile-nav .navbar__link {
    font-size: 1.05rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    color: rgba(255,255,255,0.75);
  }
  .mobile-nav .navbar__link::after { display: none; }
  .mobile-nav .navbar__link:hover { background: rgba(255,255,255,0.06); }

  .mobile-nav__divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: var(--space-md) 0;
  }
  .mobile-nav__section-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: var(--space-sm) 1rem 0.25rem;
  }
  .mobile-nav .btn {
    margin-top: var(--space-sm);
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-800) 100%);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 20% 50%, var(--gold-300) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--gold-300) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--gold-300) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 70px 70px;
}

.hero__glow {
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
  border-radius: 50%;
  top: 8%;
  right: -8%;
  animation: pulseGlow 8s ease-in-out infinite;
}

.hero__glow--2 {
  top: auto;
  bottom: -20%;
  right: auto;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(42,90,143,0.1) 0%, transparent 70%);
  animation-delay: 4s;
}

.hero__glow--3 {
  top: 60%;
  right: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
  animation-delay: 2s;
  animation-duration: 10s;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.7; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.15rem;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-full);
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s ease 0.2s both;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
  max-width: 560px;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
  animation: fadeInUp 0.6s ease 0.8s both;
}

.hero__trust {
  display: flex;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 1s both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  font-weight: 500;
}

.trust-badge__icon {
  width: 40px;
  height: 40px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  font-size: 1.05rem;
  transition: all var(--transition-base);
}
.trust-badge:hover .trust-badge__icon {
  background: rgba(212,175,55,0.14);
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-2px);
}
.trust-badge:hover {
  color: rgba(255,255,255,0.8);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Section Defaults ---------- */
.section {
  padding: var(--space-4xl) 0;
}
.section--dark {
  background: var(--navy-900);
  color: var(--white);
}
.section--light {
  background: var(--gray-50);
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}
.section--dark .section__title { color: var(--white); }

.section__desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.section--dark .section__desc { color: rgba(255,255,255,0.55); }

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400) 20%, var(--gold-200) 80%, transparent);
  opacity: 0.2;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: var(--space-md);
}

.step-card__number {
  width: 88px;
  height: 88px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border: 2px solid rgba(212,175,55,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-300);
  transition: all var(--transition-bounce);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.step-card:hover .step-card__number {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold-lg);
  border-color: var(--gold-200);
}

.step-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.section--dark .step-card__title { color: var(--white); }

.step-card__desc {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.65;
}
.section--dark .step-card__desc { color: rgba(255,255,255,0.5); }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
  .steps-grid::before { display: none; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-200));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(212,175,55,0.15);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}
.service-card:hover .service-card__icon {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(212,175,55,0.15);
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 0.4rem;
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
}

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

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  box-shadow: var(--shadow-card);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.pricing-card--featured {
  border: 2px solid var(--gold-300);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  transform: scale(1.04);
}
.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: var(--shadow-gold-lg), var(--shadow-lg);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(212,175,55,0.3);
}

.pricing-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}
.pricing-card__price sup {
  font-size: 1rem;
  top: -1rem;
}
.pricing-card__period {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: var(--space-lg);
}

.pricing-card__features {
  text-align: left;
  margin-bottom: var(--space-xl);
}
.pricing-card__features li {
  padding: 0.45rem 0;
  font-size: 0.86rem;
  color: var(--gray-600);
  display: flex;
  align-items: start;
  gap: 0.5rem;
}
.pricing-card__features li::before {
  content: '✓';
  color: var(--gold-400);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-6px); }
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ---------- Upload / Order Form ---------- */
.upload-section {
  background: var(--gray-50);
  min-height: calc(100vh - var(--nav-height));
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
}

.order-stepper {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-3xl);
  position: relative;
  flex-wrap: wrap;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gray-400);
  position: relative;
  transition: color var(--transition-base);
}
.stepper-step::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gray-200);
  margin-left: 0.5rem;
  transition: background var(--transition-base);
}
.stepper-step:last-child::after { display: none; }

.stepper-step__dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition-bounce);
  flex-shrink: 0;
}
.stepper-step.active .stepper-step__dot {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  border-color: var(--gold-300);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
  transform: scale(1.1);
}
.stepper-step.active { color: var(--navy-800); }
.stepper-step.completed .stepper-step__dot {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: var(--white);
}
.stepper-step.completed { color: var(--navy-700); }
.stepper-step.completed::after { background: var(--navy-700); }

.order-form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-2xl);
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.form-group label .required { color: var(--error); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.94rem;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition-fast);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-300);
}
.form-textarea { resize: vertical; min-height: 90px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* File upload drop zone */
.drop-zone {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--gray-50);
  position: relative;
}
.drop-zone:hover,
.drop-zone.dragover {
  border-color: var(--gold-400);
  background: rgba(212,175,55,0.03);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.06);
}
.drop-zone__icon {
  font-size: 2.8rem;
  margin-bottom: var(--space-md);
  color: var(--gray-300);
  transition: transform var(--transition-bounce);
}
.drop-zone:hover .drop-zone__icon { transform: scale(1.1) translateY(-4px); }
.drop-zone__text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: var(--space-xs);
}
.drop-zone__hint {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.file-list {
  margin-top: var(--space-md);
}
.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}
.file-item:hover { border-color: var(--gray-200); box-shadow: var(--shadow-xs); }
.file-item__name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy-700);
  font-weight: 500;
}
.file-item__remove {
  color: var(--gray-400);
  cursor: pointer;
  padding: 0.2rem;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}
.file-item__remove:hover { color: var(--error); background: rgba(231,76,60,0.08); }

/* Radio/option cards */
.option-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.6rem;
}
.option-card {
  padding: 1.05rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
}
.option-card:hover { border-color: var(--navy-400); color: var(--navy-700); background: var(--gray-50); }
.option-card.selected {
  border-color: var(--gold-400);
  background: rgba(212,175,55,0.05);
  color: var(--navy-800);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
  font-weight: 600;
}
.option-card__icon { font-size: 1.3rem; margin-bottom: 0.35rem; }

/* Order summary */
.order-summary {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  color: var(--white);
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(212,175,55,0.1);
}
.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.order-summary__row:last-child { border-bottom: none; }
.order-summary__label { color: rgba(255,255,255,0.55); }
.order-summary__value { font-weight: 600; }
.order-summary__total {
  border-top: 2px solid var(--gold-400);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  font-size: 1.1rem;
}
.order-summary__total .order-summary__value {
  color: var(--gold-300);
  font-size: 1.35rem;
  font-family: var(--font-display);
}

.form-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: space-between;
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

/* ---------- Auth Pages ---------- */
.portal-section,
.admin-section {
  min-height: calc(100vh - var(--nav-height));
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-3xl);
}

.auth-page {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-800) 100%);
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
}
.auth-page__bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 30% 30%, var(--gold-300) 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, var(--gold-300) 1px, transparent 1px);
  background-size: 50px 50px, 60px 60px;
}
.auth-page__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  border-radius: 50%;
  top: 20%;
  right: 10%;
}

.auth-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.5s ease both;
}

.auth-card__logo {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.auth-card__logo-mark {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy-900);
  font-weight: 800;
  font-family: var(--font-display);
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.auth-card__logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
}
.auth-card__logo h2 {
  font-family: var(--font-display);
  color: var(--navy-800);
  font-size: 1.3rem;
}
.auth-card__logo p {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 0.3rem;
}

.auth-card__toggle {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gray-100);
  font-size: 0.86rem;
  color: var(--gray-500);
}
.auth-card__toggle a {
  color: var(--gold-500);
  font-weight: 600;
  cursor: pointer;
}
.auth-card__toggle a:hover { text-decoration: underline; }

/* Admin auth styling */
.auth-card--admin {
  border-top: 3px solid var(--gold-400);
}
.auth-card--admin .auth-card__logo-mark {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: var(--gold-300);
}

/* ---------- Dashboard layout ---------- */
.dashboard {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - var(--nav-height));
}
@media (max-width: 768px) {
  .dashboard { grid-template-columns: 1fr; }
}

.dashboard__sidebar {
  background: var(--navy-900);
  padding: var(--space-xl) 0;
  border-right: 1px solid rgba(212,175,55,0.08);
}
@media (max-width: 768px) {
  .dashboard__sidebar { display: none; }
  .dashboard__sidebar.open { display: block; position: fixed; top: var(--nav-height); left: 0; bottom: 0; width: 260px; z-index: 100; box-shadow: var(--shadow-2xl); }
}

.sidebar__brand {
  padding: var(--space-md) var(--space-xl) var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: var(--space-sm);
}
.sidebar__brand-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.sidebar__brand-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-top: 0.15rem;
}

.sidebar__nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem var(--space-xl);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}
.sidebar__nav-item:hover {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
}
.sidebar__nav-item.active {
  color: var(--gold-300);
  background: rgba(212,175,55,0.06);
  border-left-color: var(--gold-400);
  font-weight: 600;
}
.sidebar__section-label {
  padding: var(--space-lg) var(--space-xl) var(--space-xs);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}

.dashboard__main {
  padding: var(--space-2xl);
  background: var(--gray-50);
  overflow-y: auto;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}
.dash-header h1 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy-800);
}
.dash-header__subtitle {
  font-size: 0.88rem;
  color: var(--gray-400);
  margin-top: 0.2rem;
}

/* Stat cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
}
.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(212,175,55,0.12);
}
.stat-card__label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.stat-card__value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--navy-800);
}
.stat-card__change {
  font-size: 0.78rem;
  margin-top: 0.3rem;
  font-weight: 500;
}
.stat-card__change--up { color: var(--success); }
.stat-card__change--down { color: var(--error); }

/* Data table */
.data-table-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.data-table-header {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.data-table-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-800);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  padding: 0.8rem var(--space-xl);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: left;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.data-table td {
  padding: 0.85rem var(--space-xl);
  font-size: 0.88rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.data-table tbody tr { transition: background var(--transition-fast); }
.data-table tbody tr:hover { background: rgba(212,175,55,0.02); }
.data-table tbody tr:last-child td { border-bottom: none; }

.data-table-footer {
  padding: var(--space-md) var(--space-xl);
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: capitalize;
}
.status-badge--received { background: rgba(52,152,219,0.1); color: #2980b9; }
.status-badge--printing { background: rgba(243,156,18,0.1); color: #e67e22; }
.status-badge--mailed { background: rgba(46,204,113,0.1); color: #27ae60; }
.status-badge--delivered { background: rgba(39,174,96,0.12); color: #1e8449; }
.status-badge--canceled { background: rgba(231,76,60,0.1); color: #c0392b; }
.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ---------- Messages / Inbox ---------- */
.messages-list {
  max-height: 400px;
  overflow-y: auto;
}
.message-item {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: background var(--transition-fast);
}
.message-item:hover { background: var(--gray-50); }
.message-item.unread { border-left: 3px solid var(--gold-400); }
.message-item__subject { font-weight: 600; color: var(--navy-800); font-size: 0.92rem; }
.message-item__preview { font-size: 0.82rem; color: var(--gray-500); margin-top: 0.2rem; }
.message-item__time { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.3rem; }

.message-compose {
  padding: var(--space-lg);
  border-top: 1px solid var(--gray-100);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
  display: flex;
  align-items: start;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
}
.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.contact-info-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(212,175,55,0.2);
}
.contact-info-card__title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-800);
  margin-bottom: 0.2rem;
}
.contact-info-card__text {
  font-size: 0.86rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(212,175,55,0.08);
}
.footer__top {
  padding: var(--space-3xl) 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
}
@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
}

.footer__brand p {
  font-size: 0.86rem;
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 300px;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer__brand-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--navy-900);
  font-weight: 800;
  font-family: var(--font-display);
}
.footer__brand-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.footer__brand-logo-text .gold { color: var(--gold-300); }

.footer__col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}
.footer__col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.86rem;
  transition: all var(--transition-fast);
}
.footer__col a:hover { color: var(--gold-300); transform: translateX(2px); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer__bottom a:hover { color: var(--gold-300); }

/* ---------- Legal / Privacy ---------- */
.legal-section {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
}
.legal-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy-800);
  margin-bottom: var(--space-xl);
}
.legal-content h2 {
  font-size: 1.15rem;
  color: var(--navy-700);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}
.legal-content p, .legal-content li {
  font-size: 0.94rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.legal-content ul {
  list-style: disc;
  padding-left: var(--space-xl);
}

/* ---------- Confirmation / Success ---------- */
.success-card {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: var(--space-3xl);
}
.success-card__icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, rgba(46,204,113,0.15), rgba(46,204,113,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-size: 2.4rem;
  color: var(--success);
  box-shadow: 0 4px 20px rgba(46,204,113,0.12);
  animation: bounceIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes bounceIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-800);
  margin-bottom: var(--space-md);
}
.success-card p {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}
.success-card__order-id {
  display: inline-block;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0.55rem 1.5rem;
  font-family: monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-700);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xl);
}

/* ---------- Modals ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: var(--space-xl);
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal__header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800);
}
.modal__close {
  font-size: 1.3rem;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0.4rem;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}
.modal__close:hover { color: var(--gray-700); background: var(--gray-50); }
.modal__body { padding: var(--space-xl); }
.modal__footer {
  padding: var(--space-md) var(--space-xl);
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

/* ---------- Toasts ---------- */
.toast-container {
  position: fixed;
  top: calc(var(--nav-height) + var(--space-md));
  right: var(--space-xl);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.toast {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  min-width: 300px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: toastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.88rem;
  font-weight: 500;
}
.toast--success { border-left: 4px solid var(--success); }
.toast--error { border-left: 4px solid var(--error); }
.toast--info { border-left: 4px solid var(--info); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(30px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: var(--space-xl);
  overflow-x: auto;
}
.tab {
  padding: 0.75rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}
.tab:hover { color: var(--navy-700); }
.tab.active {
  color: var(--navy-800);
  border-bottom-color: var(--gold-400);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---------- Misc ---------- */
.page { display: none; }
.page.active { display: block; }

.empty-state {
  text-align: center;
  padding: var(--space-3xl);
  color: var(--gray-400);
}
.empty-state__icon { font-size: 3rem; margin-bottom: var(--space-md); }
.empty-state__text { font-size: 1rem; margin-bottom: var(--space-lg); }

.badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
}
.badge--gold {
  background: rgba(212,175,55,0.15);
  color: var(--gold-500);
}

.divider {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin: var(--space-xl) 0;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Logo placeholder areas */
.logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(212,175,55,0.2);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  position: relative;
}
.logo-placeholder__hint {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  color: var(--gray-400);
  white-space: nowrap;
  display: none;
}
.logo-placeholder:hover .logo-placeholder__hint { display: block; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* Responsive global */
@media (max-width: 768px) {
  .section { padding: var(--space-3xl) 0; }
  .container { padding: 0 var(--space-md); }
  .dashboard__main { padding: var(--space-md); }
  .order-form-card { padding: var(--space-lg); }
  .hero__trust { gap: var(--space-lg); }
  .auth-card { padding: var(--space-xl) var(--space-lg) var(--space-lg); }
}

/* Print */
@media print {
  .navbar, .footer, .btn { display: none !important; }
  body { color: #000; background: #fff; }
}
