/*
 * ACEwithCrystal — Component Styles
 * css/components.css
 *
 * Navigation, footer, buttons, cards, hero sections, tier cards,
 * testimonials, newsletter strip, forms, contact layout.
 * Depends on: variables.css, base.css
 */

/* ══════════════════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════════════════ */
nav#main-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--purple);
  border-bottom: 2px solid var(--gold);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.spade-svg    { width: 36px; height: 36px; }
.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 7px 13px;
  border-radius: 5px;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* Nav CTA */
.nav-cta { margin-left: 14px; flex-shrink: 0; }

/* Mobile hamburger */
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 4px 8px;
  line-height: 1;
}
.mobile-menu {
  display: none;
  background: var(--purple);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0;
}
.mobile-menu a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 12px 24px;
  cursor: pointer;
  transition: all var(--t-fast);
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.mobile-menu .mobile-cta { padding: 12px 24px 20px; }

/* ══════════════════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  transition: all var(--t-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
}
.btn-sm  { font-size: 12px; padding: 9px 18px; }
.btn-lg  { font-size: 16px; padding: 16px 32px; }

.btn-primary {
  background: var(--gold);
  color: var(--purple);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  color: #fff;
}

.btn-dark {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.btn-dark:hover { background: var(--purple2); border-color: var(--purple2); }

.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline:hover { background: var(--purple); color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* Button group */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO — DARK (purple background)
══════════════════════════════════════════════════════════════════════════ */
.hero-dark {
  background: var(--purple);
  position: relative;
  overflow: hidden;
  padding: 80px 0 96px;
  border-top: none !important;
}
.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(196,154,60,0.07), transparent 60%);
  pointer-events: none;
}
.hero-dark h1            { color: #fff; line-height: 1.04; margin-bottom: 20px; }
.hero-dark h1 em         { font-style: italic; color: rgba(255,255,255,0.32); }
.hero-desc               { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 560px; margin-bottom: 36px; }

/* Two-column hero layout */
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.hero-stats         { display: flex; flex-direction: column; gap: 12px; }
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  min-width: 160px;
}
.stat-card .sn {
  font-family: var(--font-serif);
  font-size: 38px;
  color: #fff;
  display: block;
  line-height: 1;
}
.stat-card .sl {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 5px;
  display: block;
  line-height: 1.4;
}

/* Page hero variants */
.page-hero          { padding: 64px 0 72px; }
.pathway-hero       { background: var(--purple); padding: 72px 0; position: relative; overflow: hidden; }
.pathway-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 40%, rgba(196,154,60,0.06), transparent 60%);
  pointer-events: none;
}
.pathway-hero h1    { color: #fff; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════════════════════
   CARDS — BASE
══════════════════════════════════════════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
}
.card-hover {
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.card-hover:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════════════════════════
   PATHWAY CARDS
══════════════════════════════════════════════════════════════════════════ */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pw-card {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
  cursor: pointer;
}
.pw-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pw-card-head    { padding: 24px 24px 18px; }
.pw-card-ico     { font-size: 28px; margin-bottom: 14px; }
.pw-card-num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.pw-card h3      { font-size: 21px; margin-bottom: 8px; }
.pw-card p       { font-size: 13px; color: var(--ink3); line-height: 1.65; }
.pw-card-foot {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pw-card-foot .tag {
  color: var(--purple);
  border-color: rgba(75,52,153,0.2);
  background: rgba(75,52,153,0.04);
}
.pw-arrow        { color: var(--gold); font-size: 18px; font-weight: 700; }

/* ══════════════════════════════════════════════════════════════════════════
   TIER CARDS (Low / Mid / High)
══════════════════════════════════════════════════════════════════════════ */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.tier-card {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border2);
}
.tc-head      { padding: 22px 24px 18px; }
.tc-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 3px 10px;
  margin-bottom: 12px;
  border: 1px solid;
}
.tc-price {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin: 4px 0 8px;
}
.tc-tagline   { font-size: 13px; font-style: italic; color: var(--ink3); }
.tc-body      { padding: 20px 24px; background: var(--white); }
.tc-service {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tc-service:last-child         { border-bottom: none; }
.tc-service .s-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}
.tc-service .s-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.tc-service .s-desc {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.5;
  margin-top: 5px;
}

/* Tier: Low */
.tc-low .tc-head        { background: var(--tier-low-bg); border-bottom: 1px solid var(--tier-low-border); }
.tc-low .tc-badge       { color: var(--tier-low-badge-fg); border-color: #D4BE58; background: var(--tier-low-badge-bg); }
.tc-low h3,
.tc-low .tc-tagline     { color: var(--ink2); }
.tc-low .tc-price       { color: var(--tier-low-price); }

/* Tier: Mid */
.tc-mid .tc-head        { background: var(--tier-mid-bg); border-bottom: 1px solid var(--tier-mid-border); }
.tc-mid .tc-badge       { color: var(--tier-mid-badge-fg); border-color: #88A4D8; background: var(--tier-mid-badge-bg); }
.tc-mid h3,
.tc-mid .tc-tagline     { color: var(--ink2); }
.tc-mid .tc-price       { color: var(--tier-mid-price); }

/* Tier: High */
.tc-high .tc-head       { background: var(--purple); border-bottom: 1px solid rgba(196,154,60,0.2); }
.tc-high .tc-badge      { color: var(--gold); border-color: rgba(196,154,60,0.4); background: rgba(196,154,60,0.08); }
.tc-high h3             { color: #fff; }
.tc-high .tc-tagline    { color: rgba(255,255,255,0.4); }
.tc-high .tc-price      { color: var(--gold); }
.tc-high .tc-body       { background: var(--tier-high-body); }
.tc-high .tc-service    { border-color: rgba(255,255,255,0.07); }
.tc-high .tc-service .s-name  { color: #fff; }
.tc-high .tc-service .s-price { color: var(--gold); }
.tc-high .tc-service .s-desc  { color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 28px;
}
.testi-quote {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-quote::before {
  content: '\201C';
  font-size: 40px;
  color: var(--gold);
  line-height: 0;
  vertical-align: -16px;
  margin-right: 2px;
}
.testi-author  { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.testi-name   { font-size: 14px; font-weight: 600; color: var(--ink); }
.testi-role   { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════════════════════════════════════════════════
   NEWSLETTER STRIP
══════════════════════════════════════════════════════════════════════════ */
.nl-strip {
  background: var(--gold-lt);
  border-top: 1px solid var(--gold-bd);
  border-bottom: 1px solid var(--gold-bd);
  padding: 56px 0;
}
.nl-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.nl-text h2  { font-size: 28px; margin-bottom: 8px; }
.nl-text p   { font-size: 14px; color: var(--ink3); }
.nl-form     { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-form input {
  flex: 1;
  min-width: 240px;
  padding: 13px 18px;
  border: 1px solid var(--gold-bd);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  background: #fff;
  outline: none;
  transition: border-color var(--t-fast);
  color: var(--ink);
}
.nl-form input:focus { border-color: var(--gold); }

/* ══════════════════════════════════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 14px 0;
  background: var(--cream2);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.breadcrumb-inner span { cursor: pointer; transition: color var(--t-fast); }
.breadcrumb-inner span:hover { color: var(--purple); }
.breadcrumb-inner .sep { opacity: 0.4; }

/* ══════════════════════════════════════════════════════════════════════════
   START · BUILD · SCALE GRID
══════════════════════════════════════════════════════════════════════════ */
.sbs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.sbs-col {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.sbs-col:last-child         { border-right: none; }
.sbs-label {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}
.sbs-sub   { font-size: 12px; color: var(--ink3); margin-bottom: 18px; font-style: italic; }
.sbs-list li {
  font-size: 13px;
  color: var(--ink2);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.sbs-list li:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════════════════════════════
   FUNNEL FLOW BAR
══════════════════════════════════════════════════════════════════════════ */
.flow-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--cream);
}
.flow-step {
  padding: 28px 22px;
  border-right: 1px solid var(--border);
}
.flow-step:last-child { border-right: none; }
.flow-num  {
  font-family: var(--font-serif);
  font-size: 38px;
  color: rgba(15,14,11,0.1);
  line-height: 1;
  margin-bottom: 10px;
}
.flow-title  { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.flow-desc   { font-size: 13px; color: var(--ink3); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════════════
   PATHWAY DETAIL — WHO / PAIN / GUIDE
══════════════════════════════════════════════════════════════════════════ */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.who-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.who-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.who-item h4   { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.who-item p    { font-size: 13px; color: var(--ink3); line-height: 1.55; }

.pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pain-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.55;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pain-item::before {
  content: '→';
  color: var(--muted);
  flex-shrink: 0;
  margin-top: 1px;
}

.guide-cta {
  background: var(--purple);
  border-radius: var(--r);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.guide-cta h3  { font-size: 26px; color: #fff; margin-bottom: 8px; }
.guide-cta p   { font-size: 14px; color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════════════════════ */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow var(--t-base);
}
.svc-card:hover { box-shadow: var(--shadow-md); }
.svc-head   { padding: 22px 24px 16px; border-bottom: 1px solid var(--border); }
.svc-ico    { font-size: 28px; margin-bottom: 12px; }
.svc-head h3  { font-size: 20px; margin-bottom: 6px; }
.svc-head p   { font-size: 13px; color: var(--ink3); line-height: 1.6; }
.svc-body   { padding: 18px 24px; }
.svc-features li {
  font-size: 13px;
  color: var(--ink3);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  line-height: 1.45;
}
.svc-features li:last-child  { border-bottom: none; }
.svc-features li::before     { content: '→'; color: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   RESOURCES PAGE
══════════════════════════════════════════════════════════════════════════ */
.resource-card {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.resource-icon    { font-size: 32px; }
.resource-card h3 { font-size: 20px; margin-bottom: 6px; }
.resource-card p  { font-size: 13px; color: var(--ink3); line-height: 1.65; flex: 1; }
.resource-keyword {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  border: 1px solid var(--gold-bd);
  border-radius: var(--r-tag);
  padding: 2px 10px;
  background: var(--gold-lt);
  display: inline-block;
}

/* ══════════════════════════════════════════════════════════════════════════
   ACESBA PAGE
══════════════════════════════════════════════════════════════════════════ */
.acesba-hero {
  background: linear-gradient(135deg, #0D0620, #1A0A3D);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.acesba-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(196,154,60,0.10), transparent 60%);
  pointer-events: none;
}
.score-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,154,60,0.12);
  border: 1px solid rgba(196,154,60,0.3);
  border-radius: 30px;
  padding: 6px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.score-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.readiness-areas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.ra-card {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
}
.ra-num    { font-family: var(--font-serif); font-size: 32px; color: var(--purple); display: block; }
.ra-label  { font-size: 11px; color: var(--ink3); margin-top: 6px; display: block; line-height: 1.4; }
.ra-bar    { height: 4px; border-radius: 2px; background: rgba(15,14,11,0.08); margin-top: 12px; overflow: hidden; }
.ra-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--purple);
  transition: width 0.4s ease;
}

/* ══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════════════════════ */
.about-hero {
  background: var(--purple);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(196,154,60,0.06), transparent 55%);
  pointer-events: none;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.about-photo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r);
  padding: 32px;
  text-align: center;
}
.about-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple3), var(--purple2));
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold);
  margin: 0 auto 20px;
}
.about-name  { font-family: var(--font-serif); font-size: 24px; color: #fff; display: block; }
.about-title { font-size: 13px; color: rgba(255,255,255,0.45); display: block; margin-top: 4px; }
.cred-list   { margin-top: 20px; text-align: left; }
.cred-list li {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 8px;
}
.cred-list li::before { content: '◆'; color: var(--gold); font-size: 8px; margin-top: 3px; flex-shrink: 0; }
.cred-list li:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════════════════════════════
   WORK WITH ME PAGE
══════════════════════════════════════════════════════════════════════════ */
.wwm-tier {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow var(--t-base);
}
.wwm-tier:hover    { box-shadow: var(--shadow-md); }
.wwm-head          { padding: 28px; border-bottom: 1px solid var(--border); }
.wwm-tier.featured .wwm-head     { background: var(--purple); }
.wwm-tier.featured .wwm-head h3  { color: #fff; }
.wwm-tier.featured .wwm-head p   { color: rgba(255,255,255,0.5); }
.wwm-body          { padding: 28px; }
.wwm-includes li {
  font-size: 14px;
  color: var(--ink2);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.wwm-includes li:last-child    { border-bottom: none; }
.wwm-includes li::before       { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 40px;
}
.form-group           { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 7px;
  font-family: var(--font-mono);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border3);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--off);
  outline: none;
  transition: border-color var(--t-fast);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: #fff;
}
.form-group textarea { min-height: 120px; }

.contact-info-card {
  background: var(--purple);
  border-radius: var(--r);
  padding: 36px;
  color: #fff;
  margin-bottom: 24px;
}
.contact-info-card h3  { color: #fff; font-size: 24px; margin-bottom: 16px; }
.contact-info-card p   { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.75; margin-bottom: 28px; }
.contact-type {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 14px;
}
.contact-type:last-child { border-bottom: none; }
.ct-ico   { font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.ct-name  { font-size: 14px; font-weight: 600; color: #fff; display: block; margin-bottom: 3px; }
.ct-desc  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════ */
footer {
  background: var(--purple);
  padding: 56px 0 32px;
  border-top: 2px solid var(--gold);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 280px;
  margin-top: 14px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.footer-col ul li        { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color var(--t-fast);
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.footer-bottom p    { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-links       { display: flex; gap: 20px; }
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: color var(--t-fast);
}
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════════════════════════════════════
   MISC COMPONENTS
══════════════════════════════════════════════════════════════════════════ */
/* Home problem strip */
.problem-strip {
  background: var(--cream);
  padding: 28px 0;
  border-top: none !important;
}
.problem-strip-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.problem-chip {
  font-size: 13px;
  color: var(--ink3);
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r-tag);
}

/* ACESBA mini card grid */
.ace-mini-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ace-mini-label { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4; }
.ace-mini-score {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Two-col section grid */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
