/* ============================================================
   BanaoCV — style.css
   Main stylesheet — all pages
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Mono:wght@400;500&display=swap');

/* ══════════════════════════════════════════════════════════
   1. CSS VARIABLES
══════════════════════════════════════════════════════════ */
:root {
  /* Brand */
  --brand:          #1B3A6B;
  --brand-dark:     #0f2347;
  --brand-light:    #2a5298;
  --brand-xlight:   #e8eef8;

  /* Gold */
  --gold:           #F5A623;
  --gold-dark:      #c8841a;
  --gold-light:     #ffc04d;
  --gold-xlight:    #fff8ec;

  /* Neutrals */
  --white:          #ffffff;
  --bg:             #f8fafc;
  --bg-2:           #f1f5f9;
  --border:         #e2e8f0;
  --border-dark:    #cbd5e1;

  /* Text */
  --text:           #0f172a;
  --text-2:         #334155;
  --text-3:         #64748b;
  --text-4:         #94a3b8;

  /* Status */
  --success:        #16a34a;
  --success-light:  #dcfce7;
  --error:          #dc2626;
  --error-light:    #fee2e2;
  --warning:        #d97706;
  --warning-light:  #fef3c7;

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(15,35,71,0.08), 0 1px 2px rgba(15,35,71,0.05);
  --shadow:         0 4px 16px rgba(15,35,71,0.10), 0 2px 6px rgba(15,35,71,0.06);
  --shadow-md:      0 10px 30px rgba(15,35,71,0.12), 0 4px 10px rgba(15,35,71,0.07);
  --shadow-lg:      0 25px 50px rgba(15,35,71,0.15), 0 10px 20px rgba(15,35,71,0.08);
  --shadow-xl:      0 50px 100px rgba(15,35,71,0.20), 0 20px 40px rgba(15,35,71,0.10);
  --shadow-gold:    0 10px 30px rgba(245,166,35,0.35);
  --shadow-brand:   0 10px 30px rgba(27,58,107,0.35);

  /* Radius */
  --r-sm:   6px;
  --r:      10px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast:   0.15s ease;
  --t:        0.25s ease;
  --t-slow:   0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --t-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Typography */
  --font-heading: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Layout */
  --max-w:    1280px;
  --nav-h:    68px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}

p { color: var(--text-2); line-height: 1.75; }

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

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

button, input, textarea, select {
  font-family: var(--font-body);
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

ul, ol { list-style: none; }

::selection {
  background: var(--gold-light);
  color: var(--brand-dark);
}

/* ══════════════════════════════════════════════════════════
   3. SCROLLBAR
══════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: var(--r-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--brand-light); }

/* ══════════════════════════════════════════════════════════
   4. LAYOUT UTILITIES
══════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
}

.section {
  padding: 96px 0;
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ══════════════════════════════════════════════════════════
   5. TYPOGRAPHY UTILITIES
══════════════════════════════════════════════════════════ */
.text-xs    { font-size: 0.75rem; }
.text-sm    { font-size: 0.875rem; }
.text-base  { font-size: 1rem; }
.text-lg    { font-size: 1.125rem; }
.text-xl    { font-size: 1.25rem; }
.text-2xl   { font-size: 1.5rem; }
.text-3xl   { font-size: 1.875rem; }
.text-4xl   { font-size: 2.25rem; }
.text-5xl   { font-size: 3rem; }
.text-6xl   { font-size: 3.75rem; }
.text-7xl   { font-size: 4.5rem; }

.font-300 { font-weight: 300; }
.font-400 { font-weight: 400; }
.font-500 { font-weight: 500; }
.font-600 { font-weight: 600; }
.font-700 { font-weight: 700; }
.font-800 { font-weight: 800; }

.text-center  { text-align: center; }
.text-right   { text-align: right; }

.text-brand   { color: var(--brand); }
.text-gold    { color: var(--gold); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--text-3); }
.text-dark    { color: var(--brand-dark); }

.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-rev {
  background: linear-gradient(135deg, var(--gold) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════════
   6. SECTION HEADER (reused on every page)
══════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-xlight);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--text-3);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════
   7. BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  transition: all var(--t-slow);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t);
}

.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.98); }

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(27,58,107,0.45);
}

/* Gold */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--brand-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(245,166,35,0.5);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

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

/* Outline Gold */
.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
}

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

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-xlight);
}

/* Sizes */
.btn-sm { padding: 8px 16px; font-size: 0.8125rem; border-radius: var(--r); }
.btn-lg { padding: 16px 32px; font-size: 1.0625rem; border-radius: var(--r-lg); }
.btn-xl { padding: 20px 40px; font-size: 1.125rem; border-radius: var(--r-xl); }

/* Icon only */
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--r);
}

.btn-icon-sm {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: var(--r-sm);
}

/* Shine effect */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.btn-shine:hover::before { left: 150%; }

/* ══════════════════════════════════════════════════════════
   8. FORM ELEMENTS
══════════════════════════════════════════════════════════ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  color: var(--text);
  transition: all var(--t);
}

.form-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(27,58,107,0.08);
}

.form-input::placeholder { color: var(--text-4); }

.form-input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(220,38,38,0.08);
}

.form-error {
  font-size: 0.8125rem;
  color: var(--error);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--text-4);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   9. CARDS
══════════════════════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--t-slow);
}

.card:hover {
  border-color: rgba(27,58,107,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-flat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}

.card-brand {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-light) 100%);
  border-radius: var(--r-lg);
  padding: 28px;
  color: var(--white);
}

.card-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
  border-radius: var(--r-lg);
  padding: 28px;
  color: var(--brand-dark);
}

/* ══════════════════════════════════════════════════════════
   10. BADGES & CHIPS
══════════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-brand {
  background: var(--brand-xlight);
  color: var(--brand);
  border: 1px solid rgba(27,58,107,0.15);
}

.badge-gold {
  background: var(--gold-xlight);
  color: var(--gold-dark);
  border: 1px solid rgba(245,166,35,0.25);
}

.badge-success {
  background: var(--success-light);
  color: var(--success);
}

.badge-new {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--brand-dark);
  font-weight: 700;
}

.badge-popular {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: var(--white);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   11. NAVBAR
══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  transition: all var(--t);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(27,58,107,0.3);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--brand-dark);
  letter-spacing: -0.03em;
}

.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 7px 14px;
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--t);
  position: relative;
}

.nav-link:hover {
  color: var(--brand);
  background: var(--brand-xlight);
}

.nav-link.active {
  color: var(--brand);
  background: var(--brand-xlight);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-login-btn {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 7px 14px;
  border-radius: var(--r);
  transition: all var(--t);
}

.nav-login-btn:hover {
  color: var(--brand);
  background: var(--brand-xlight);
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  transition: background var(--t);
}

.nav-hamburger:hover { background: var(--bg); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile.open { display: flex; }

.nav-mobile .nav-link {
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 1rem;
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .nav-links, .nav-login-btn { display: none; }
  .nav-hamburger { display: flex; }
}

/* ══════════════════════════════════════════════════════════
   12. HERO SECTION
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 600px at -5% 20%, rgba(245,166,35,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 105% 30%, rgba(27,58,107,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,58,107,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,58,107,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(245,166,35,0.15);
  top: -100px;
  left: -100px;
}

.hero-blob-2 {
  width: 600px;
  height: 600px;
  background: rgba(27,58,107,0.12);
  bottom: -200px;
  right: -100px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding: 60px 24px;
  }
}

.hero-content { max-width: 580px; }

@media (max-width: 1024px) {
  .hero-content { max-width: 100%; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 6px 16px 6px 6px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-eyebrow-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--brand-dark);
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-eyebrow-text {
  font-size: 0.8125rem;
  color: var(--text-3);
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--brand-dark);
}

.hero-title .line-gold { color: var(--gold); }

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-3);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

@media (max-width: 1024px) {
  .hero-desc { max-width: 100%; }
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-cta { justify-content: center; }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .hero-stats { justify-content: center; }
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero-visual { max-width: 480px; margin: 0 auto; }
}

.hero-resume-mock {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.hero-resume-header {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-light) 100%);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-resume-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 3px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1.25rem;
}

.hero-resume-name {
  height: 16px;
  width: 140px;
  background: rgba(255,255,255,0.8);
  border-radius: 4px;
  margin-bottom: 8px;
}

.hero-resume-role {
  height: 10px;
  width: 100px;
  background: rgba(255,255,255,0.4);
  border-radius: 4px;
}

.hero-resume-body { padding: 20px 24px; }

.resume-line-group { margin-bottom: 16px; }

.resume-line-title {
  height: 10px;
  width: 80px;
  background: var(--brand-xlight);
  border-radius: 3px;
  margin-bottom: 8px;
}

.resume-line {
  height: 8px;
  border-radius: 4px;
  background: var(--bg-2);
  margin-bottom: 6px;
}

/* Floating badges on hero */
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero-float-badge .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.hero-float-badge .badge-text { font-size: 0.8125rem; font-weight: 600; color: var(--text-2); }
.hero-float-badge .badge-sub  { font-size: 0.75rem; color: var(--text-3); }

.float-badge-ai {
  top: 10%;
  right: -5%;
}

.float-badge-users {
  bottom: 15%;
  left: -5%;
}

/* ══════════════════════════════════════════════════════════
   13. FEATURES SECTION
══════════════════════════════════════════════════════════ */
.features { background: var(--bg); }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity var(--t);
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--brand-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.375rem;
  transition: all var(--t);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
}

.feature-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-3);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   14. TEMPLATES SECTION
══════════════════════════════════════════════════════════ */
.templates-section { background: var(--white); }

.templates-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.templates-tab {
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-3);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: all var(--t);
  cursor: pointer;
}

.templates-tab:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--brand-xlight);
}

.templates-tab.active {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  box-shadow: var(--shadow-brand);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .templates-grid { grid-template-columns: repeat(3, 1fr); }
}

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

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

.template-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--t-slow);
  position: relative;
}

.template-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.template-thumb {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.template-thumb-inner {
  width: 100%;
  height: 100%;
  padding: 16px;
  transition: transform 0.5s ease;
}

.template-card:hover .template-thumb-inner { transform: scale(1.04); }

.template-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,35,71,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}

.template-card:hover .template-overlay { opacity: 1; }

.template-footer {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

.template-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.template-category {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 2px;
  text-transform: capitalize;
}

.template-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

/* ══════════════════════════════════════════════════════════
   15. HOW IT WORKS
══════════════════════════════════════════════════════════ */
.how-it-works { background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--gold) 100%);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-num {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-brand);
  position: relative;
  z-index: 2;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--text-3);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   16. REVIEWS / TESTIMONIALS
══════════════════════════════════════════════════════════ */
.reviews { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all var(--t-slow);
  position: relative;
}

.review-card:hover {
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 20px 40px rgba(245,166,35,0.1);
  transform: translateY(-4px);
}

.review-card.featured {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-light) 100%);
  border-color: transparent;
  color: var(--white);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-star {
  color: var(--gold);
  font-size: 1rem;
}

.review-card.featured .review-star { color: var(--gold-light); }

.review-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 20px;
  font-style: italic;
}

.review-card.featured .review-text { color: rgba(255,255,255,0.85); }

.review-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold-xlight);
  line-height: 0.5;
  margin-bottom: 12px;
  display: block;
}

.review-card.featured .review-quote-mark { color: rgba(245,166,35,0.3); }

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.review-card.featured .review-author { border-top-color: rgba(255,255,255,0.15); }

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--brand-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand);
  font-size: 1rem;
}

.review-card.featured .review-avatar {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.review-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--brand-dark);
}

.review-card.featured .review-name { color: var(--white); }

.review-meta {
  font-size: 0.8125rem;
  color: var(--text-3);
}

.review-card.featured .review-meta { color: rgba(255,255,255,0.6); }

/* Overall rating summary */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  background: var(--bg);
  border-radius: var(--r-xl);
  margin-bottom: 48px;
  border: 1px solid var(--border);
}

@media (max-width: 640px) {
  .reviews-summary {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.reviews-rating-big {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
}

.reviews-rating-stars {
  display: flex;
  gap: 4px;
  margin: 6px 0;
}

.reviews-rating-count {
  font-size: 0.875rem;
  color: var(--text-3);
}

.reviews-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

.reviews-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.reviews-stat-label {
  font-size: 0.875rem;
  color: var(--text-3);
}

/* ══════════════════════════════════════════════════════════
   17. PRICING SECTION
══════════════════════════════════════════════════════════ */
.pricing { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  transition: all var(--t-slow);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .pricing-card.popular { transform: none; }
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: var(--white);
  padding: 5px 18px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-brand);
}

.pricing-plan {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
}

.pricing-period {
  font-size: 0.875rem;
  color: var(--text-3);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-3);
  margin-bottom: 28px;
  margin-top: 8px;
}

.pricing-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-2);
}

.pricing-feature .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-feature .cross {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--text-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   18. FAQ SECTION
══════════════════════════════════════════════════════════ */
.faq { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

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

.faq-item {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t);
}

.faq-item.open {
  border-color: var(--brand);
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--brand-dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--t);
}

.faq-question:hover { color: var(--brand); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t);
  font-size: 1rem;
  color: var(--text-3);
}

.faq-item.open .faq-icon {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-3);
  line-height: 1.8;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ══════════════════════════════════════════════════════════
   19. CTA BANNER
══════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-banner-blob-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(245,166,35,0.2);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -50px;
}

.cta-banner-blob-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  filter: blur(60px);
  bottom: -80px;
  left: -50px;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   20. FOOTER
══════════════════════════════════════════════════════════ */
#footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--gold) 100%);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--white);
}

.footer-brand-name span { color: var(--gold); }

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: all var(--t);
}

.footer-social:hover {
  background: var(--gold);
  color: var(--brand-dark);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

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

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--t);
  text-decoration: none;
}

.footer-link:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--t);
}

.footer-bottom-link:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   21. MODALS
══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,35,71,0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--t-slow);
  position: relative;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 1rem;
  transition: all var(--t);
  cursor: pointer;
}

.modal-close:hover {
  background: var(--error-light);
  color: var(--error);
}

.modal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.modal-title {
  font-size: 1.625rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 0.9375rem;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 28px;
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.modal-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.modal-divider-text {
  font-size: 0.8125rem;
  color: var(--text-4);
  font-weight: 500;
}

.modal-switch {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-3);
  margin-top: 16px;
}

.modal-switch a {
  color: var(--brand);
  font-weight: 600;
  cursor: pointer;
}

.modal-switch a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════
   22. TOAST NOTIFICATIONS
══════════════════════════════════════════════════════════ */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--brand-dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--r-lg);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 340px;
  animation: toastIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.toast.success { background: var(--success); }
.toast.error   { background: var(--error); }
.toast.warning { background: var(--warning); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(100%); }
}

/* ══════════════════════════════════════════════════════════
   23. MARQUEE / LOGO STRIP
══════════════════════════════════════════════════════════ */
.marquee-section {
  background: var(--bg);
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-3);
  white-space: nowrap;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   24. MISC UTILITIES
══════════════════════════════════════════════════════════ */
.hidden { display: none !important; }
.visible { display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.rounded-sm   { border-radius: var(--r-sm); }
.rounded      { border-radius: var(--r); }
.rounded-md   { border-radius: var(--r-md); }
.rounded-lg   { border-radius: var(--r-lg); }
.rounded-xl   { border-radius: var(--r-xl); }
.rounded-full { border-radius: var(--r-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow    { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.bg-brand    { background: var(--brand); }
.bg-brand-dk { background: var(--brand-dark); }
.bg-gold     { background: var(--gold); }
.bg-white    { background: var(--white); }
.bg-bg       { background: var(--bg); }

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.divider-v {
  width: 1px;
  height: 100%;
  background: var(--border);
}

/* Responsive helpers */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .text-5xl { font-size: 2rem; }
  .text-6xl { font-size: 2.5rem; }
  .text-7xl { font-size: 3rem; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
}

@media (min-width: 769px) {
  .show-mobile { display: none !important; }
}

/* Smooth page load */
body { animation: pageLoad 0.4s ease forwards; }

@keyframes pageLoad {
  from { opacity: 0; }
  to   { opacity: 1; }
}
