/* ============================================================
   TOP CAREER RESUMES — main.css
   Covers: navbar, hero, trust, services, packages, testimonials,
   stats, blog, faq, cta, contact, footer, dashboard, proposal,
   resume checker, utility classes
   ============================================================ */

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

:root {
  --navy:        #0b1f3a;
  --navy-mid:    #132d52;
  --navy-light:  #1a3560;
  --gold:        #c9a94a;
  --gold-light:  #e8c96b;
  --cream:       #faf8f4;
  --cream-dark:  #f0ece4;
  --text:        #1a1a2e;
  --muted:       #6b7280;
  --white:       #ffffff;
  --green:       #2d7a4f;
  --red:         #c0392b;
  --border:      #e8e2d8;
  --sidebar-w:   260px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY HELPERS ── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.22; margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 1rem; max-width: 540px; }

/* ── LAYOUT ── */
.section   { padding: 80px 5%; }
.container { max-width: 1180px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 0.92rem;
  padding: 14px 28px; border-radius: var(--radius-sm);
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,74,0.35); }

.btn-outline-white {
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 0.92rem;
  padding: 14px 28px; border-radius: var(--radius-sm);
  text-decoration: none; transition: all 0.2s;
  border: 2px solid rgba(255,255,255,0.35);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.navbar-logo-icon {
  width: 38px; height: 38px; background: var(--gold);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.navbar-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem; font-weight: 700; color: var(--white); letter-spacing: -0.2px;
}
.navbar-brand span em { color: var(--gold); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* login/dashboard button in navbar */
#loginBtn {
  background: var(--gold); color: var(--navy) !important;
  font-weight: 700 !important; padding: 9px 20px;
  border-radius: 6px; font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s !important;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
}
#loginBtn:hover { background: var(--gold-light) !important; transform: translateY(-1px); color: var(--navy) !important; }
#loginBtn.btn-success { background: var(--green) !important; color: #fff !important; }
#loginBtn.btn-success:hover { background: #247a41 !important; }

.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  font-weight: 700 !important; padding: 9px 20px; border-radius: 6px;
  font-size: 0.85rem !important; transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.hamburger { display: none; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  padding: 130px 5% 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,169,74,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 10% 80%, rgba(13,45,82,0.6) 0%, transparent 60%);
}
.hero-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,169,74,0.15); border: 1px solid rgba(201,169,74,0.4); color: var(--gold);
  padding: 6px 16px; border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: var(--white);
  line-height: 1.18; margin-bottom: 22px; letter-spacing: -0.5px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 520px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 40px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust-item { color: rgba(255,255,255,0.55); font-size: 0.8rem; display: flex; align-items: center; gap: 6px; }
.hero-trust-item .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* Hero resume card */
.hero-card-wrap { position: relative; }
.hero-resume-card {
  background: var(--white); border-radius: 16px; padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative; animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.resume-card-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid #e5e7eb;
}
.resume-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
}
.resume-name { font-weight: 700; font-size: 1rem; color: var(--navy); }
.resume-title { font-size: 0.78rem; color: var(--muted); }
.resume-line { height: 8px; border-radius: 4px; background: #e5e7eb; margin-bottom: 8px; overflow: hidden; }
.resume-line-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--navy), #1e4080); animation: fillBar 2s ease-out forwards; }
@keyframes fillBar { from { width: 0; } }
.resume-line:nth-child(1) .resume-line-fill { width: 85%; animation-delay: 0.2s; }
.resume-line:nth-child(2) .resume-line-fill { width: 70%; animation-delay: 0.4s; }
.resume-line:nth-child(3) .resume-line-fill { width: 90%; animation-delay: 0.6s; }
.resume-line:nth-child(4) .resume-line-fill { width: 60%; animation-delay: 0.8s; }
.ats-badge {
  position: absolute; top: -14px; right: -14px;
  background: var(--green); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 6px 12px; border-radius: 100px; box-shadow: 0 4px 14px rgba(45,122,79,0.4);
}
.score-badge {
  position: absolute; bottom: -14px; left: 20px;
  background: var(--navy); color: #fff; font-size: 0.78rem; font-weight: 600;
  padding: 8px 16px; border-radius: 100px; box-shadow: 0 6px 20px rgba(11,31,58,0.5);
  display: flex; align-items: center; gap: 8px;
}
.score-num { color: var(--gold); font-size: 1rem; font-weight: 800; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--cream-dark);
  border-top: 1px solid #e0d9cc; border-bottom: 1px solid #e0d9cc;
  padding: 22px 5%;
}
.trust-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.trust-label { font-size: 0.78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; }
.trust-logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.trust-logo { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: #9ca3af; letter-spacing: 0.5px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 50px; }

.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 32px 28px; transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: #d4c9b0; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(201,169,74,0.15); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; }
.service-price { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.service-price span { color: var(--gold); font-size: 1.15rem; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); text-decoration: none; font-size: 0.85rem; font-weight: 600; margin-top: 12px; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--navy); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-sub  { color: rgba(255,255,255,0.55); }

.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; margin-top: 56px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.3;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 68px; height: 68px; border-radius: 50%;
  border: 2px solid rgba(201,169,74,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--gold);
  margin: 0 auto 20px; background: rgba(201,169,74,0.08); position: relative; z-index: 1;
}
.step h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step p  { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* ============================================================
   PACKAGES / PRICING
   ============================================================ */
.packages { background: var(--cream); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 54px; align-items: start; }

.package-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 30px; transition: all 0.3s;
}
.package-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
.package-card.featured {
  background: var(--navy); border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(11,31,58,0.25); transform: scale(1.03);
}
.package-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pkg-badge {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.package-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.package-card.featured h3 { color: var(--white); }
.pkg-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; margin: 20px 0 6px; }
.pkg-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; }
.package-card.featured .pkg-period { color: rgba(255,255,255,0.45); }
.pkg-desc { color: var(--muted); font-size: 0.83rem; margin-bottom: 24px; }
.package-card.featured .pkg-desc { color: rgba(255,255,255,0.55); }

.pkg-features { list-style: none; margin-bottom: 28px; }
.pkg-features li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-size: 0.87rem; padding: 7px 0; border-bottom: 1px solid var(--cream-dark); }
.package-card.featured .pkg-features li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.1); }
.pkg-features li:last-child { border: none; }
.pkg-check { color: var(--green); font-size: 1rem; flex-shrink: 0; }
.package-card.featured .pkg-check { color: var(--gold-light); }

.btn-pkg { display: block; text-align: center; text-decoration: none; padding: 13px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem; transition: all 0.2s; cursor: pointer; border: none; }
.btn-pkg-outline { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-pkg-outline:hover { background: var(--navy); color: #fff; }
.btn-pkg-gold { background: var(--gold); color: var(--navy); }
.btn-pkg-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Free plan dashed border */
.package-card.free-plan { border: 2px dashed var(--gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream-dark); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 50px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; transition: transform 0.3s; }
.testi-card:hover { transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 0.92rem; color: #444; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 1rem; }
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testi-role { font-size: 0.75rem; color: var(--muted); }
.testi-result { display: inline-block; margin-top: 6px; background: #e8f5ee; color: var(--green); font-size: 0.73rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-section { background: var(--navy); padding: 60px 5%; }
.stats-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px; text-align: center;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* ============================================================
   BLOG / ARTICLES
   ============================================================ */
.blog { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 50px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.blog-img { height: 180px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-content { padding: 22px; }
.blog-tag { display: inline-block; background: var(--cream-dark); color: var(--navy); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 10px; }
.blog-card p { color: var(--muted); font-size: 0.83rem; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; }
.blog-author { font-size: 0.78rem; color: var(--muted); }
.blog-read { color: var(--gold); font-size: 0.82rem; font-weight: 700; text-decoration: none; }
.blog-read:hover { color: var(--navy); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--white); }
.faq-grid { max-width: 720px; margin: 50px auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-q {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 0.93rem; color: var(--navy);
  background: var(--white); border: none; width: 100%; text-align: left; gap: 16px;
}
.faq-q:hover { background: var(--cream); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 0.9rem; color: var(--gold); font-weight: 800; transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; padding: 0 24px; }
.faq-a-inner { padding: 0 0 20px; color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), #0a2240);
  padding: 80px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,169,74,0.1) 0%, transparent 70%);
}
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 36px; position: relative; z-index: 1; }
.cta-banner .btn-gold { position: relative; z-index: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.contact-info p { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-item-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(201,169,74,0.15); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item strong { font-size: 0.83rem; color: var(--navy); display: block; }
.contact-item span { font-size: 0.83rem; color: var(--muted); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1px solid #d8d0c4; border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--text);
  background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,74,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy); color: rgba(255,255,255,0.55);
  padding: 60px 5% 30px;
}
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 0.83rem; max-width: 280px; line-height: 1.7; margin-top: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-size: 0.82rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.float-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.88rem;
  padding: 13px 22px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 8px 28px rgba(201,169,74,0.4);
  display: flex; align-items: center; gap: 8px; transition: all 0.3s;
  animation: pulseCta 3s infinite;
}
@keyframes pulseCta {
  0%, 100% { box-shadow: 0 8px 28px rgba(201,169,74,0.4); }
  50%       { box-shadow: 0 8px 40px rgba(201,169,74,0.7); }
}
.float-btn:hover { transform: translateY(-3px) scale(1.03); color: var(--navy); }

/* ============================================================
   DASHBOARD
   ============================================================ */
body.dashboard-page { display: flex; min-height: 100vh; }

/* Sidebar */
.sidebar {
  width: var(--sidebar-w); flex-shrink: 0;
  background: var(--navy);
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0;
  overflow-y: auto; z-index: 100; padding: 0;
}
.sidebar-brand {
  padding: 22px 22px 18px; border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.sidebar-brand-icon { width: 34px; height: 34px; background: var(--gold); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.sidebar-brand-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.2; }
.sidebar-brand-name em { color: var(--gold); font-style: normal; }

.sidebar-user { padding: 18px 22px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sidebar-user-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.sidebar-user-email  { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-bottom: 4px; word-break: break-all; }
.sidebar-plan-badge {
  display: inline-block; background: rgba(201,169,74,0.18); color: var(--gold);
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(201,169,74,0.3); text-transform: uppercase; letter-spacing: 0.5px;
}

.sidebar-nav { padding: 16px 0; flex: 1; }
.sidebar-label { padding: 8px 22px 4px; font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1.5px; }
.sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 22px; color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; transition: all 0.2s;
  border-left: 3px solid transparent;
}
.sidebar-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.sidebar-link.active { color: var(--gold); border-left-color: var(--gold); background: rgba(201,169,74,0.08); }
.sidebar-link .icon { width: 18px; text-align: center; font-size: 1rem; }

.sidebar-footer { padding: 16px 22px; border-top: 1px solid rgba(255,255,255,0.08); }
.sidebar-logout { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.83rem; text-decoration: none; transition: color 0.2s; background: none; border: none; cursor: pointer; }
.sidebar-logout:hover { color: #fff; }

/* Dashboard main area */
.dash-main { margin-left: var(--sidebar-w); flex: 1; min-height: 100vh; }

.topbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 36px; display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 50;
}
.topbar h1 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.topbar-date { color: var(--muted); font-size: 0.83rem; }

.dash-content { padding: 32px 36px; max-width: 1100px; }

/* Greeting card */
.greeting-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 16px; padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; position: relative; overflow: hidden;
}
.greeting-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,169,74,0.15) 0%, transparent 70%);
}
.greeting-card h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: #fff; position: relative; z-index: 1; }
.greeting-card p  { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 6px; position: relative; z-index: 1; }
.greeting-emoji { font-size: 3rem; position: relative; z-index: 1; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.stat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 20px; transition: all 0.25s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.stat-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.stat-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.stat-icon.gold  { background: rgba(201,169,74,0.15); }
.stat-icon.navy  { background: rgba(11,31,58,0.08); }
.stat-icon.green { background: rgba(45,122,79,0.12); }
.stat-icon.blue  { background: rgba(59,130,246,0.1); }
.stat-change { font-size: 0.72rem; font-weight: 600; padding: 2px 8px; border-radius: 100px; }
.stat-change.up      { background: #dcfce7; color: #16a34a; }
.stat-change.neutral { background: #f3f4f6; color: var(--muted); }
.stat-num-dash { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.stat-label-dash { font-size: 0.8rem; color: var(--muted); }

/* Usage card */
.usage-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; margin-bottom: 28px; }
.usage-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 22px; }
.usage-item { margin-bottom: 20px; }
.usage-item:last-child { margin-bottom: 0; }
.usage-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.usage-label { font-size: 0.87rem; font-weight: 600; color: var(--text); }
.usage-count { font-size: 0.83rem; color: var(--muted); }
.usage-bar { height: 10px; background: var(--cream-dark); border-radius: 100px; overflow: hidden; }
.usage-fill { height: 100%; border-radius: 100px; transition: width 1s ease; }
.usage-fill.gold { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.usage-fill.navy { background: linear-gradient(90deg, var(--navy), #1e4080); }

/* Tool cards */
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.tool-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.tool-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.tool-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,0.09); }
.tool-card:hover::after { transform: scaleX(1); }
.tool-card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.tool-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.tool-card p  { color: var(--muted); font-size: 0.85rem; margin-bottom: 18px; }
.btn-tool { display: inline-flex; align-items: center; gap: 6px; background: var(--navy); color: #fff; font-size: 0.84rem; font-weight: 600; padding: 10px 20px; border-radius: var(--radius-sm); text-decoration: none; transition: all 0.2s; }
.btn-tool:hover { background: var(--navy-mid); transform: translateX(2px); color: #fff; }

/* Dashboard pricing */
.pricing-section h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 22px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; transition: all 0.25s; }
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,0,0,0.08); }
.plan-card.featured { background: var(--navy); border-color: var(--gold); }
.plan-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.plan-card.featured .plan-name { color: #fff; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; color: var(--gold); margin: 14px 0 4px; line-height: 1; }
.plan-period { font-size: 0.78rem; color: var(--muted); margin-bottom: 18px; }
.plan-card.featured .plan-period { color: rgba(255,255,255,0.45); }
.plan-features { list-style: none; margin-bottom: 22px; }
.plan-features li { font-size: 0.84rem; color: var(--text); padding: 5px 0; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--cream-dark); }
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.08); }
.plan-features li:last-child { border: none; }
.plan-check { color: var(--green); font-size: 0.9rem; }
.plan-card.featured .plan-check { color: var(--gold-light); }
.plan-recommended { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; padding: 3px 10px; border-radius: 100px; margin-bottom: 14px; }
.btn-plan { display: block; text-align: center; padding: 11px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.87rem; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; width: 100%; }
.btn-plan-outline { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-plan-outline:hover { background: var(--navy); color: #fff; }
.btn-plan-gold { background: var(--gold); color: var(--navy); }
.btn-plan-gold:hover { background: var(--gold-light); }

/* Dashboard slim footer */
.dash-footer { background: var(--navy); padding: 18px 36px; display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.dash-footer span { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ============================================================
   PROPOSAL PAGE (tool styles)
   ============================================================ */
.tool-hero { background: var(--navy); padding: 100px 5% 50px; position: relative; overflow: hidden; }
.tool-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 70% 50%, rgba(201,169,74,0.12) 0%, transparent 70%); }
.tool-hero-inner { max-width: 700px; position: relative; z-index: 1; }
.tool-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.tool-hero h1 em { color: var(--gold); font-style: normal; }
.tool-hero p { color: rgba(255,255,255,0.6); font-size: 1rem; }
.tool-hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.hero-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); font-size: 0.78rem; padding: 5px 14px; border-radius: 100px; }

.tool-main-content { max-width: 1180px; margin: 0 auto; padding: 50px 5%; display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }

/* Form card */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.form-card-header { background: var(--navy); padding: 22px 28px; display: flex; align-items: center; gap: 14px; }
.form-card-header-icon { width: 40px; height: 40px; background: rgba(201,169,74,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.form-card-header h2 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: #fff; }
.form-card-header p { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.form-body { padding: 28px; }
.form-body .form-group { margin-bottom: 16px; }
.form-body .form-group label { font-size: 0.8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }
.form-body .form-group input,
.form-body .form-group select,
.form-body .form-group textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 9px;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--text);
  background: var(--cream); transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
}
.form-body .form-group input:focus,
.form-body .form-group select:focus,
.form-body .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,74,0.12); background: #fff;
}
.form-body .form-group textarea { resize: vertical; min-height: 100px; }
.form-body .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.optional-badge { display: inline-block; background: var(--cream-dark); color: var(--muted); font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; margin-left: 6px; text-transform: uppercase; }

.btn-generate {
  width: 100%; padding: 15px; background: var(--navy); color: #fff;
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  border: none; border-radius: 10px; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px;
}
.btn-generate:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,31,58,0.25); }
.btn-generate:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-generate .spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Output */
.output-section { margin-top: 24px; display: none; }
.output-card { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.output-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--white); border-bottom: 1px solid var(--border); }
.output-header h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); }
.output-actions { display: flex; gap: 8px; }
.btn-action { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 7px; font-size: 0.8rem; font-weight: 700; cursor: pointer; border: none; transition: all 0.2s; }
.btn-copy  { background: var(--gold); color: var(--navy); }
.btn-copy:hover  { background: var(--gold-light); }
.btn-clear { background: var(--cream-dark); color: var(--muted); }
.btn-clear:hover { background: var(--border); color: var(--text); }
.output-body { padding: 22px; white-space: pre-wrap; font-size: 0.92rem; line-height: 1.75; color: var(--text); min-height: 180px; }
.word-count { padding: 10px 20px; border-top: 1px solid var(--border); background: var(--white); font-size: 0.75rem; color: var(--muted); }

/* Tool sidebar */
.tool-sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; margin-bottom: 20px; }
.tool-sidebar-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.tip-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--cream-dark); }
.tip-item:last-child { border-bottom: none; }
.tip-num { width: 24px; height: 24px; border-radius: 50%; background: rgba(201,169,74,0.15); color: var(--gold); font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.tip-text { font-size: 0.83rem; color: var(--muted); line-height: 1.55; }
.tip-text strong { color: var(--navy); }
.sidebar-cta-card { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-radius: var(--radius-md); padding: 24px; text-align: center; margin-bottom: 20px; }
.sidebar-cta-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.sidebar-cta-card p { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-bottom: 16px; }
.btn-sidebar { display: block; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.85rem; padding: 11px; border-radius: var(--radius-sm); text-decoration: none; transition: all 0.2s; text-align: center; }
.btn-sidebar:hover { background: var(--gold-light); }
.stat-row-tool { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.83rem; }
.stat-row-tool:last-child { border: none; }
.stat-row-tool strong { color: var(--navy); font-family: 'Playfair Display', serif; font-size: 1rem; }

/* Loading overlay */
.loading-overlay { position: fixed; inset: 0; background: rgba(11,31,58,0.85); z-index: 9999; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 20px; }
.loading-overlay.show { display: flex; }
.loading-icon { width: 70px; height: 70px; border: 3px solid rgba(201,169,74,0.3); border-top-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; }
.loading-text { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; }
.loading-sub { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* ============================================================
   RESUME CHECKER
   ============================================================ */
.drop-zone { border: 2px dashed #6c757d; border-radius: 12px; padding: 40px; text-align: center; color: #6c757d; cursor: pointer; transition: background 0.3s, border-color 0.3s; }
.drop-zone.dragover { background: #e9f7ff; border-color: var(--gold); color: var(--gold); }

.result-section { padding: 1rem; border-radius: 8px; margin-bottom: 1rem; }
.result-blue  { background: #dbeafe; }
.result-green { background: #d1fae5; }
.result-gray  { background: #e5e7eb; }

/* ============================================================
   ABOUT PAGE EXTRAS
   ============================================================ */
.about-hero { padding: 130px 5% 70px; background: var(--navy); text-align: center; }
.about-hero h1 { font-family: 'Playfair Display', serif; color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; }
.about-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 14px auto 0; }

.stat-card-about { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; text-align: center; transition: transform 0.25s; }
.stat-card-about:hover { transform: translateY(-4px); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--gold); }
.stat-label  { color: var(--muted); font-size: 0.85rem; margin-top: 6px; }

/* Timeline */
.timeline-item { display: flex; gap: 20px; margin-bottom: 28px; }
.timeline-dot  { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.timeline-year { font-weight: 700; color: var(--navy); font-size: 0.85rem; margin-bottom: 4px; }
.timeline-text { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

.mission-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card   { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 24px; margin-bottom: 16px; }
.value-card h5 { font-weight: 700; color: var(--navy); margin-bottom: 8px; }

.team-card   { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.team-role   { font-size: 0.78rem; color: var(--gold); font-weight: 600; }

.founder-quote { border-left: 4px solid var(--gold); background: var(--cream-dark); padding: 24px 32px; font-style: italic; font-size: 1.05rem; line-height: 1.8; border-radius: 0 12px 12px 0; color: var(--text); }

/* ============================================================
   COOKIE BAR (if used)
   ============================================================ */
#cookieBar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: var(--navy); color: rgba(255,255,255,0.8); padding: 14px 5%; display: none; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
#acceptCookies { background: var(--gold); color: var(--navy); border: none; padding: 8px 20px; border-radius: 6px; font-weight: 700; cursor: pointer; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats-row     { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-grid      { grid-template-columns: 1fr; }
  .hero-card-wrap { display: none; }
  .contact-grid   { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .nav-links      { display: none; }
  .hamburger      { display: block; }
  .tool-main-content { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .sidebar        { display: none; }
  .dash-main      { margin-left: 0; }
  .tools-grid     { grid-template-columns: 1fr; }
  .dash-content   { padding: 20px; }
  .topbar         { padding: 14px 20px; }
}
@media (max-width: 600px) {
  .footer-grid                 { grid-template-columns: 1fr; }
  .form-row                    { grid-template-columns: 1fr; }
  .package-card.featured       { transform: none; }
  .stats-row                   { grid-template-columns: repeat(2, 1fr); }
}