/* ============================================
   Anna 99 Careers — Warm Minimalism Design
   Resume & CV Writing Services
   ============================================ */

/* --- Font Faces --- */
@font-face { font-family: 'Playfair Display'; src: url('fonts/playfair-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('fonts/playfair-semibold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Playfair Display'; src: url('fonts/playfair-bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Source Sans 3'; src: url('fonts/sourcesans-regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Source Sans 3'; src: url('fonts/sourcesans-semibold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Source Sans 3'; src: url('fonts/sourcesans-bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('fonts/jetbrains-regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('fonts/jetbrains-bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

/* --- CSS Variables --- */
:root {
  --coral: #E8604C;
  --coral-dark: #D14E3B;
  --coral-light: #F4A99E;
  --charcoal: #1E1E2E;
  --charcoal-light: #2D2D3F;
  --gold: #D4A853;
  --gold-light: #E8C97A;
  --cream: #FDF8F3;
  --cream-dark: #F5EDE4;
  --gray-light: #F0EDEA;
  --gray-mid: #B8B2AB;
  --gray-text: #6B6560;
  --text-dark: #2D2D3F;
  --text-body: #4A4540;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(30,30,46,0.06);
  --shadow-md: 0 4px 16px rgba(30,30,46,0.08);
  --shadow-lg: 0 8px 32px rgba(30,30,46,0.12);
  --shadow-card: 0 2px 12px rgba(30,30,46,0.06);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--coral-dark); }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--charcoal); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
.mono { font-family: var(--font-mono); }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-cream { background-color: var(--cream); }
.section-white { background-color: var(--white); }
.section-gray { background-color: var(--gray-light); }
.section-charcoal { background-color: var(--charcoal); color: var(--white); }
.section-charcoal h2, .section-charcoal h3, .section-charcoal h4 { color: var(--white); }
.section-charcoal p { color: rgba(255,255,255,0.75); }

/* --- Grid Systems --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2-asym { display: grid; grid-template-columns: 55% 42%; gap: 3%; align-items: center; }
.grid-2-asym-r { display: grid; grid-template-columns: 42% 55%; gap: 3%; align-items: center; }

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,248,243,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30,30,46,0.06);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 72px;
}
.navbar-logo img { height: 100px; width: auto; }
.navbar-links { display: flex; gap: 2rem; align-items: center; }
.navbar-links a {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--charcoal); transition: var(--transition);
}
.navbar-links a:hover { color: var(--coral); }
.navbar-links a.active { color: var(--coral); }
.navbar-cta {
  background: var(--coral); color: var(--white); padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem;
  transition: var(--transition); border: none; cursor: pointer;
  display: inline-block;
}
.navbar-cta:hover { background: var(--coral-dark); color: var(--white); transform: translateY(-1px); }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: var(--transition); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--cream); padding: 2rem 1.5rem; z-index: 999;
  flex-direction: column; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-weight: 600; color: var(--charcoal); padding: 0.5rem 0; border-bottom: 1px solid var(--gray-light); }
.mobile-menu a:hover { color: var(--coral); }

/* --- Buttons --- */
.btn {
  display: inline-block; padding: 0.85rem 2rem; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  transition: var(--transition); cursor: pointer; border: none; text-align: center;
}
.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: var(--coral-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--coral); border: 2px solid var(--coral); }
.btn-outline:hover { background: var(--coral); color: var(--white); transform: translateY(-2px); }
.btn-charcoal { background: var(--charcoal); color: var(--white); }
.btn-charcoal:hover { background: var(--charcoal-light); color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--coral); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* --- Hero Section --- */
.hero {
  padding-top: 120px; padding-bottom: 5rem;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block; background: rgba(232,96,76,0.1); color: var(--coral);
  padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.5rem; font-family: var(--font-mono);
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .highlight { color: var(--coral); }
.hero-text { font-size: 1.15rem; color: var(--gray-text); margin-bottom: 2rem; max-width: 540px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat { text-align: left; }
.hero-stat-value { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 700; color: var(--coral); }
.hero-stat-label { font-size: 0.85rem; color: var(--gray-text); margin-top: 0.2rem; }
.hero-image { position: relative; z-index: 2; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-image::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px; background: var(--gold); opacity: 0.15;
  border-radius: 50%; z-index: -1;
}
.hero-image::after {
  content: ''; position: absolute; bottom: -15px; left: -15px;
  width: 80px; height: 80px; background: var(--coral); opacity: 0.12;
  border-radius: 50%; z-index: -1;
}

/* --- Section Headers --- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-header .label {
  display: inline-block; font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--coral); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 0.8rem; font-weight: 600;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--gray-text); font-size: 1.05rem; }
.section-header-left { text-align: left; max-width: 600px; margin-bottom: 3rem; }

/* --- Section Badge & Title (used across all pages) --- */
.section-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 0.8rem;
  color: var(--coral); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 0.8rem; font-weight: 600;
}
.section-title {
  font-family: var(--font-heading); color: var(--charcoal); line-height: 1.2;
  font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--gray-text); font-size: 1.05rem; max-width: 700px;
  margin: 0 auto 2.5rem; line-height: 1.7;
}

/* --- Dark section overrides for text visibility --- */
.section-charcoal .section-badge,
[style*="background:var(--charcoal)"] .section-badge { color: var(--coral); }
.section-charcoal .section-title,
[style*="background:var(--charcoal)"] .section-title,
[style*="background:var(--charcoal)"] h2,
[style*="background:var(--charcoal)"] h3,
[style*="background:var(--charcoal)"] h4 { color: var(--white) !important; }
.section-charcoal .section-subtitle,
[style*="background:var(--charcoal)"] .section-subtitle,
[style*="background:var(--charcoal)"] p { color: rgba(255,255,255,0.75) !important; }
[style*="background:var(--charcoal)"] .card,
[style*="background:var(--charcoal)"] .audience-card,
[style*="background:var(--charcoal)"] .why-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
[style*="background:var(--charcoal)"] .card h3,
[style*="background:var(--charcoal)"] .card h4,
[style*="background:var(--charcoal)"] .audience-card h4,
[style*="background:var(--charcoal)"] .why-card h4 { color: var(--white) !important; }
[style*="background:var(--charcoal)"] .card p,
[style*="background:var(--charcoal)"] .audience-card p,
[style*="background:var(--charcoal)"] .why-card p { color: rgba(255,255,255,0.7) !important; }

/* --- Cards --- */
.card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-card); transition: var(--transition);
  border: 1px solid rgba(30,30,46,0.04);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; font-size: 1.5rem;
}
.card-icon-coral { background: rgba(232,96,76,0.1); color: var(--coral); }
.card-icon-gold { background: rgba(212,168,83,0.15); color: var(--gold); }
.card-icon-charcoal { background: rgba(30,30,46,0.08); color: var(--charcoal); }
.card h3 { margin-bottom: 0.8rem; font-size: 1.25rem; }
.card h4 { margin-bottom: 0.6rem; }
.card p { color: var(--gray-text); font-size: 0.95rem; line-height: 1.7; }
.card-price {
  font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700;
  color: var(--coral); margin-bottom: 0.5rem;
}
.card-price small { font-size: 0.85rem; color: var(--gray-text); font-weight: 400; }

/* --- Service Cards --- */
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem;
  box-shadow: var(--shadow-card); border: 1px solid rgba(30,30,46,0.04);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .badge {
  display: inline-block; font-family: var(--font-mono); font-size: 0.75rem;
  padding: 0.3rem 0.8rem; border-radius: 50px; margin-bottom: 1rem;
  font-weight: 600;
}
.badge-popular { background: rgba(232,96,76,0.1); color: var(--coral); }
.badge-premium { background: rgba(212,168,83,0.15); color: var(--gold); }
.badge-starter { background: rgba(30,30,46,0.06); color: var(--charcoal); }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card .turnaround { font-family: var(--font-mono); font-size: 0.8rem; color: var(--gray-text); margin-bottom: 1rem; }
.service-card .description { margin-bottom: 1.5rem; }
.service-card ul { list-style: none; margin-bottom: 1.5rem; }
.service-card ul li { padding: 0.4rem 0; padding-left: 1.5rem; position: relative; font-size: 0.95rem; color: var(--text-body); }
.service-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }

/* --- Steps / Process --- */
.step { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; align-items: flex-start; }
.step-number {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--coral); color: var(--white); display: flex;
  align-items: center; justify-content: center; font-family: var(--font-mono);
  font-weight: 700; font-size: 1.1rem;
}
.step-content h4 { margin-bottom: 0.4rem; color: var(--charcoal); }
.step-content p { color: var(--gray-text); font-size: 0.95rem; }

/* --- Audience Grid --- */
.audience-card {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem;
  border-left: 4px solid var(--coral); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-left-color: var(--gold); }
.audience-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.audience-card p { font-size: 0.9rem; color: var(--gray-text); margin: 0; }

/* --- Why Us --- */
.why-card {
  text-align: center; padding: 2rem 1.5rem;
}
.why-card .icon {
  font-size: 2.5rem; margin-bottom: 1rem;
}
.why-card h4 { margin-bottom: 0.6rem; }
.why-card p { font-size: 0.9rem; color: var(--gray-text); }

/* --- Lead Form --- */
.form-section { background: var(--charcoal); padding: 5rem 0; position: relative; overflow: hidden; }
.form-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/pattern.webp') center/cover; opacity: 0.05;
}
.form-container { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.form-container h2 { color: var(--white); text-align: center; margin-bottom: 0.8rem; }
.form-container > p { color: rgba(255,255,255,0.65); text-align: center; margin-bottom: 2.5rem; font-size: 1.05rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8);
  margin-bottom: 0.4rem; font-family: var(--font-body);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08);
  color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--coral); background: rgba(255,255,255,0.12);
}
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { text-align: center; margin-top: 1.5rem; }
.form-note { text-align: center; margin-top: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* --- Comparison Table --- */
.comparison-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.comparison-table thead { background: var(--charcoal); }
.comparison-table th { padding: 1rem 1.5rem; color: var(--white); font-family: var(--font-body); font-weight: 600; text-align: left; font-size: 0.95rem; }
.comparison-table td { padding: 0.9rem 1.5rem; font-size: 0.95rem; border-bottom: 1px solid var(--gray-light); color: var(--text-dark); }
.comparison-table tbody tr { background: var(--white); }
.comparison-table tbody tr:nth-child(even) { background: var(--cream); }
.comparison-table tbody tr:hover { background: rgba(232,96,76,0.04); }

/* --- Form Card (light bg forms) --- */
.form-card {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem;
  box-shadow: var(--shadow-md); border: 1px solid rgba(30,30,46,0.06);
}
.form-card .form-group label { color: var(--text-dark); font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 0.4rem; }
.form-card .form-group input,
.form-card .form-group select,
.form-card .form-group textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-light); background: var(--cream);
  color: var(--text-dark); font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition);
}
.form-card .form-group input:focus,
.form-card .form-group select:focus,
.form-card .form-group textarea:focus {
  outline: none; border-color: var(--coral); background: var(--white);
}
.form-card .form-group input::placeholder,
.form-card .form-group textarea::placeholder { color: var(--gray-mid); }
.form-card .form-group select { color: var(--text-body); }
.form-card .form-group textarea { resize: vertical; min-height: 100px; }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid var(--gray-light); padding: 1.5rem 0; }
.faq-question { font-family: var(--font-heading); font-size: 1.1rem; color: var(--charcoal); font-weight: 600; margin-bottom: 0.6rem; cursor: pointer; }
.faq-answer { color: var(--gray-text); font-size: 0.95rem; line-height: 1.7; }

/* --- Footer --- */
/* Footer Top - Light section for logo */
.footer-top {
  background: var(--cream);
  padding: 3rem 0;
  border-top: 3px solid var(--coral);
}
.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-logo-img {
  height: 100px;
  width: auto;
  margin-bottom: 1.2rem;
}
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-text);
  max-width: 550px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--coral);
  border-radius: 50px;
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-btn:hover {
  background: var(--coral);
  color: var(--white);
}

/* Footer Main - Dark section for links */
.footer-main {
  background: var(--charcoal);
  padding: 3rem 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-main h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer-main h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--coral);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); text-decoration: none; }
.footer-links a:hover { color: var(--coral); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.6rem; margin-bottom: 0.8rem; font-size: 0.9rem; align-items: flex-start; }
.footer-contact-item span { color: var(--coral); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* Footer Bottom */
.footer-bottom {
  background: #161625;
  padding: 1.2rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--coral); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 140px 0 60px; background: var(--charcoal);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/pattern.webp') center/cover; opacity: 0.04;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.15rem; max-width: 650px; }
.page-hero .breadcrumb { font-size: 0.85rem; margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: var(--coral-light); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.5); }

/* --- Legal Pages --- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--charcoal); }
.legal-content h3 { font-size: 1.2rem; margin-top: 1.5rem; margin-bottom: 0.8rem; }
.legal-content p { margin-bottom: 1rem; line-height: 1.8; }
.legal-content ul, .legal-content ol { margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.legal-content table th, .legal-content table td { padding: 0.8rem 1rem; border: 1px solid var(--gray-light); text-align: left; font-size: 0.9rem; }
.legal-content table th { background: var(--gray-light); font-weight: 600; color: var(--charcoal); }
.legal-content .last-updated { font-family: var(--font-mono); font-size: 0.85rem; color: var(--gray-text); margin-bottom: 2rem; }

/* --- Pricing Table --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pricing-card {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card); border: 1px solid rgba(30,30,46,0.04);
  transition: var(--transition); text-align: center; position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--coral); transform: scale(1.03);
}
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: var(--white); padding: 0.3rem 1.2rem;
  border-radius: 50px; font-size: 0.75rem; font-weight: 700; font-family: var(--font-mono);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-coral { color: var(--coral); }
.text-gold { color: var(--gold); }
.text-charcoal { color: var(--charcoal); }
.text-gray { color: var(--gray-text); }
.text-white { color: var(--white); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-charcoal { background: var(--charcoal); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.inline-block { display: inline-block; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-2, .grid-2-asym, .grid-2-asym-r { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-image { order: -1; }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .navbar-links { display: none; }
  .menu-toggle { display: block; }
  .grid-3, .grid-4, .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 100px; padding-bottom: 3rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .footer-social { flex-direction: column; align-items: center; }
  .footer-logo-img { height: 80px; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th, .comparison-table td { padding: 0.7rem 0.8rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
}
