/* ============================================================
   Fix My Boat NZ — Global Styles v2
   Design: Warm, professional, human. Not corporate.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Core palette */
  --navy:        #0a2540;
  --navy-mid:    #133460;
  --ocean:       #1a6b8a;
  --teal:        #0ea5e9;
  --teal-light:  #e0f7ff;
  --orange:      #f97316;
  --orange-dark: #ea6100;
  --orange-light:#fff3e8;

  /* Neutral warm tones — NOT cold greys */
  --cream:       #faf8f5;
  --sand:        #f2ede6;
  --warm-100:    #f5f0ea;
  --warm-200:    #e8e0d6;
  --warm-400:    #a89888;
  --warm-600:    #5c4f44;
  --warm-800:    #2d2420;

  /* Semantic */
  --white:    #ffffff;
  --success:  #16a34a;
  --error:    #dc2626;

  /* Radii & shadows */
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(10,37,64,0.08);
  --shadow:    0 4px 12px rgba(10,37,64,0.10);
  --shadow-md: 0 8px 24px rgba(10,37,64,0.12);
  --shadow-lg: 0 16px 40px rgba(10,37,64,0.14);
  --shadow-orange: 0 8px 24px rgba(249,115,22,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--warm-800);
  background: var(--white);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: 3rem;    font-weight: 800; }
h2 { font-size: 2rem;    font-weight: 700; }
h3 { font-size: 1.4rem;  font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

a { color: var(--ocean); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ---- LAYOUT ---- */
.container   { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 80px 0; }
.section-sm  { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-sm      { gap: 8px; }
.gap-md      { gap: 16px; }
.gap-lg      { gap: 24px; }

/* ---- TYPOGRAPHY HELPERS ---- */
.text-sm      { font-size: 13px; }
.text-xs      { font-size: 11px; letter-spacing: 0.04em; }
.text-muted   { color: var(--warm-400); }
.text-center  { text-align: center; }
.font-bold    { font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px 24px; border-radius: var(--radius); font-size: 14px; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer; border: none; transition: all 0.18s ease;
  text-decoration: none; line-height: 1; letter-spacing: 0.01em;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--orange); color: white;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(249,115,22,0.3); }

.btn-navy   { background: var(--navy); color: white; box-shadow: var(--shadow); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn-ocean  { background: var(--ocean); color: white; box-shadow: var(--shadow); }
.btn-ocean:hover { background: #155f7a; transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--warm-200);
}
.btn-outline:hover { border-color: var(--navy); background: var(--cream); }

.btn-outline-white {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }

.btn-ghost  { background: transparent; color: var(--ocean); padding: 8px 12px; }
.btn-ghost:hover { background: var(--teal-light); }

.btn-sm  { padding: 8px 16px; font-size: 13px; }
.btn-lg  { padding: 15px 32px; font-size: 16px; }
.btn-xl  { padding: 18px 40px; font-size: 17px; font-weight: 800; }
.btn-block { width: 100%; }
.btn-danger { background: var(--error); color: white; }

/* ---- NAV ---- */
.nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem; font-weight: 800; color: white;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--orange); }
.nav-logo:hover { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500;
  padding: 7px 13px; border-radius: 8px;
  transition: all 0.15s;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.1); text-decoration: none; }
.nav-link.active { color: white; background: rgba(255,255,255,0.12); }
#nav-auth { display: flex; align-items: center; gap: 10px; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(150deg, #0a2540 0%, #0e3460 45%, #1a5a78 100%);
  color: white;
  padding: 88px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-glow-1 {
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: 40px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-content h1 { color: white; font-size: 3.4rem; line-height: 1.08; margin-bottom: 20px; }
.hero-content h1 .highlight { color: var(--orange); }
.hero-content .subheading {
  font-size: 1.1rem; color: rgba(255,255,255,0.72);
  margin-bottom: 32px; max-width: 520px; line-height: 1.7;
}
.search-box {
  background: white; border-radius: var(--radius-lg);
  padding: 7px 7px 7px 18px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg); max-width: 560px;
}
.search-box input {
  border: none; outline: none; flex: 1;
  font-size: 15px; color: var(--warm-800);
  font-family: 'Inter', sans-serif; background: transparent;
}
.search-box input::placeholder { color: var(--warm-400); }
.search-box select {
  border: none; border-left: 1px solid var(--warm-200);
  outline: none; padding: 8px 12px;
  font-size: 14px; color: var(--warm-600);
  cursor: pointer; background: transparent;
  font-family: 'Inter', sans-serif;
}
.search-links { display: flex; gap: 20px; margin-top: 14px; flex-wrap: wrap; }
.search-link  { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 5px; }
.search-link a { color: rgba(255,255,255,0.85); font-weight: 600; }
.search-link a:hover { color: var(--orange); text-decoration: none; }

/* HERO RIGHT CARD */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-xl);
  padding: 28px;
  color: white;
}
.hero-card-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.visitor-option {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 14px; border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 9px;
  cursor: pointer; transition: all 0.15s;
  text-decoration: none; color: white;
}
.visitor-option:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.26);
  text-decoration: none; color: white;
  transform: translateX(3px);
}
.visitor-option-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.visitor-option-text strong { display: block; font-size: 13px; font-weight: 700; }
.visitor-option-text span   { font-size: 12px; color: rgba(255,255,255,0.5); }
.visitor-option-arrow { margin-left: auto; color: rgba(255,255,255,0.3); }

/* WAVE */
.wave-divider { width: 100%; overflow: hidden; line-height: 0; margin-top: -2px; }
.wave-divider svg { display: block; width: 100%; }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--cream); border-bottom: 1px solid var(--warm-200); padding: 20px 0; }
.stats-inner { display: flex; flex-wrap: wrap; }
.stat-item {
  flex: 1; min-width: 140px;
  display: flex; align-items: center; gap: 12px;
  padding: 4px 28px; border-right: 1px solid var(--warm-200);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }
.stat-num  { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--navy); }
.stat-desc { font-size: 13px; color: var(--warm-600); line-height: 1.3; }

/* ---- AUDIENCE CARDS ---- */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.audience-card {
  border-radius: var(--radius-xl); padding: 36px 32px;
  position: relative; overflow: hidden;
}
.audience-card.local   { background: var(--navy); }
.audience-card.visitor { background: linear-gradient(135deg, #0e3d54 0%, #1a6b8a 100%); }
.audience-card .tag-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.15); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px;
}
.audience-card h3 { color: white; font-size: 1.5rem; margin-bottom: 10px; }
.audience-card p  { color: rgba(255,255,255,0.72); font-size: 14px; margin-bottom: 22px; line-height: 1.65; }
.audience-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.audience-bg-icon {
  position: absolute; right: -8px; bottom: -18px;
  font-size: 7rem; opacity: 0.07; pointer-events: none; line-height: 1;
}

/* ---- PILLARS ---- */
.pillar-card {
  background: white; border: 1.5px solid var(--warm-200);
  border-radius: var(--radius-lg); padding: 28px 20px;
  text-align: center; cursor: pointer;
  transition: all 0.2s; text-decoration: none; color: var(--warm-800); display: block;
}
.pillar-card:hover {
  border-color: var(--orange); box-shadow: var(--shadow-md);
  transform: translateY(-3px); text-decoration: none; color: var(--warm-800);
}
.pillar-card:hover .pillar-icon-wrap { background: var(--orange-light); }
.pillar-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 14px;
  transition: background 0.2s;
}
.pillar-name  { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.pillar-desc  { font-size: 12px; color: var(--warm-400); line-height: 1.5; }
.pillar-count { font-size: 12px; color: var(--orange); font-weight: 700; margin-top: 8px; }

/* ---- HOW IT WORKS ---- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card  { text-align: center; }
.step-icon-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
}
.step-card h4 { margin-bottom: 8px; }
.step-card p  { font-size: 14px; color: var(--warm-600); line-height: 1.6; }

/* ---- CARDS ---- */
.card {
  background: white; border-radius: var(--radius-lg);
  border: 1.5px solid var(--warm-200); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover  { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-body   { padding: 22px; }
.card-footer { padding: 14px 22px; border-top: 1px solid var(--warm-100); background: var(--cream); }

/* ---- TRADE CARD ---- */
.trade-card { cursor: pointer; }
.trade-card-header {
  background: var(--navy); padding: 22px;
  display: flex; align-items: center; gap: 14px;
}
.trade-avatar {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem; font-weight: 800; flex-shrink: 0;
}
.trade-name  { color: white; font-weight: 700; font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.trade-type  { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 2px; }
.trade-badge {
  margin-left: auto; background: var(--success); color: white;
  font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 20px;
  letter-spacing: 0.05em; text-transform: uppercase; flex-shrink: 0;
}
.stars       { color: #f59e0b; font-size: 13px; }
.rating-text { font-size: 13px; color: var(--warm-400); margin-left: 4px; }

/* ---- FACILITY CARD ---- */
.facility-type-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
}
.type-marina    { background: var(--teal-light); color: var(--ocean); }
.type-haulout   { background: #fef9c3; color: #a16207; }
.type-dry_stack { background: #f3e8ff; color: #7c3aed; }

/* ---- TAGS ---- */
.tag {
  display: inline-block; background: var(--warm-100); color: var(--warm-600);
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 20px;
}
.tag-blue   { background: var(--teal-light); color: var(--ocean); }
.tag-orange { background: var(--orange-light); color: var(--orange-dark); }

/* ---- JOB STATUS ---- */
.job-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.status-open   { background: #dcfce7; color: #15803d; }
.status-quoted { background: #fef9c3; color: #a16207; }
.status-closed { background: var(--warm-100); color: var(--warm-400); }

/* ---- TESTIMONIAL ---- */
.testimonial-card {
  background: white; border-radius: var(--radius-xl);
  padding: 32px; border: 1.5px solid var(--warm-200); position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem; line-height: 1; color: var(--orange-light);
  font-family: Georgia, serif;
  position: absolute; top: 12px; left: 22px; pointer-events: none;
}
.testimonial-text {
  font-size: 1rem; line-height: 1.75; color: var(--warm-800);
  margin-bottom: 20px; padding-top: 28px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0; color: white;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-meta { font-size: 12px; color: var(--warm-400); margin-top: 1px; }

/* ---- FORMS ---- */
.form-group       { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 7px;
}
.form-group label .req { color: var(--orange); margin-left: 2px; }
input[type=text], input[type=email], input[type=password],
input[type=url],  input[type=number], select, textarea {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid var(--warm-200); border-radius: var(--radius);
  font-size: 14px; color: var(--warm-800);
  background: white; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: 'Inter', sans-serif;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}
textarea { resize: vertical; min-height: 100px; }
.form-hint  { font-size: 12px; color: var(--warm-400); margin-top: 5px; }
.form-error { font-size: 12px; color: var(--error); margin-top: 5px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- ALERTS ---- */
.alert {
  padding: 13px 16px; border-radius: var(--radius);
  font-size: 14px; margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 9px;
}
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-info    { background: var(--teal-light); color: #075985; border: 1px solid #bae6fd; }
.alert-warm    { background: var(--orange-light); color: #92400e; border: 1px solid #fed7aa; }

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #133460 100%);
  color: white; padding: 44px 0 40px;
}
.page-header h1 { font-size: 2.1rem; color: white; }
.page-header p  { color: rgba(255,255,255,0.7); margin-top: 6px; font-size: 15px; }
.breadcrumb     { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.breadcrumb a   { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: white; text-decoration: none; }

/* ---- SIDEBAR LAYOUT ---- */
.layout-sidebar { display: grid; grid-template-columns: 268px 1fr; gap: 28px; align-items: start; }
.sidebar        { position: sticky; top: 82px; }
.filter-card    { background: white; border: 1.5px solid var(--warm-200); border-radius: var(--radius-lg); padding: 22px; }
.filter-title   { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--warm-400); margin-bottom: 12px; }
.filter-group   { margin-bottom: 20px; }
.filter-group:last-child { margin-bottom: 0; }
.checkbox-item  { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; font-size: 14px; }
.checkbox-item input { cursor: pointer; accent-color: var(--ocean); }

/* ---- STAT CARD ---- */
.stat-card {
  background: white; border: 1.5px solid var(--warm-200);
  border-radius: var(--radius-lg); padding: 22px; text-align: center;
}
.stat-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--navy); }
.stat-label  { font-size: 13px; color: var(--warm-400); margin-top: 4px; }

/* ---- TABS ---- */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--warm-200); margin-bottom: 24px; }
.tab {
  padding: 10px 20px; font-size: 14px; font-weight: 600; cursor: pointer;
  color: var(--warm-400); border-bottom: 2px solid transparent; margin-bottom: -2px;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.15s;
}
.tab.active        { color: var(--ocean); border-bottom-color: var(--ocean); }
.tab:hover:not(.active) { color: var(--navy); }
.tab-content       { display: none; }
.tab-content.active { display: block; }

/* ---- MODAL ---- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(10,37,64,0.55);
  display: none; align-items: center; justify-content: center;
  z-index: 1000; padding: 20px; backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: white; border-radius: var(--radius-xl);
  width: 100%; max-width: 480px; padding: 32px;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.2s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.modal-header  { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.modal-close   { background: none; border: none; cursor: pointer; font-size: 1.1rem; color: var(--warm-400); padding: 6px; line-height: 1; border-radius: 6px; }
.modal-close:hover { color: var(--navy); background: var(--warm-100); }

/* ---- DIVIDER ---- */
.divider { border: none; border-top: 1px solid var(--warm-200); margin: 24px 0; }

/* ---- AVATAR ---- */
.avatar-lg {
  width: 80px; height: 80px; border-radius: 20px;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem; font-weight: 800; flex-shrink: 0;
}

/* ---- EMPTY STATE ---- */
.empty-state { text-align: center; padding: 60px 20px; color: var(--warm-400); }
.empty-state .icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3    { color: var(--navy); margin-bottom: 8px; }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0e3460 100%);
  color: white; padding: 72px 0; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(249,115,22,0.07) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.cta-band .container { position: relative; }

/* ---- FOOTER ---- */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.2rem; font-weight: 800; color: white; margin-bottom: 10px; }
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: 13px; line-height: 1.75; max-width: 280px; }
.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: white; margin-bottom: 14px;
}
.footer-col a  { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 9px; }
.footer-col a:hover { color: white; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px;
  font-size: 12px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}

/* ---- BADGE ---- */
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: 10px; background: var(--orange); color: white;
  font-size: 11px; font-weight: 700;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1000px) {
  .hero-body { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .audience-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .search-box { flex-direction: column; padding: 12px; border-radius: var(--radius); }
  .search-box select { border-left: none; border-top: 1px solid var(--warm-200); padding: 8px 4px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links .nav-link { display: none; }
  .stats-inner { flex-direction: column; gap: 12px; }
  .stat-item { border-right: none; padding: 0; }
}

/* ── Pro badge ── */
.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--navy) 100%);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px 3px 7px;
  border-radius: 4px;
  vertical-align: middle;
}
