/* =============================================
   UnBox Locals – Hawaii Discovery Hub
   Main Stylesheet
   Brand: OBT Consultants | Outside the Box Thinkers
   Colors: Ocean Blue · Sunset Orange · Tropic Green · Sand
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --ocean-blue: #1a5f8a;
  --ocean-blue-dark: #124468;
  --ocean-blue-light: #2a7ab0;
  --sunset-orange: #e8722a;
  --sunset-orange-dark: #c45e1e;
  --sunset-orange-light: #f08c4a;
  --tropic-green: #2d8a5e;
  --tropic-green-dark: #1e6644;
  --sand: #f5f0e8;
  --sand-dark: #e8dfc8;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 8px 10px rgba(0,0,0,0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.25s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-accent: 'Pacifico', cursive;
}

/* ---- 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-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ocean-blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--ocean-blue-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.25; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-brand-icon {
  width: 42px; height: 42px;
  background: var(--ocean-blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-brand-icon svg { width: 26px; height: 26px; fill: white; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--ocean-blue-dark); }
.nav-brand-sub { font-size: 0.68rem; font-weight: 600; color: var(--sunset-orange); text-transform: uppercase; letter-spacing: 0.06em; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link { padding: 0.5rem 0.85rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.nav-link:hover, .nav-link.active { background: var(--gray-100); color: var(--ocean-blue); }
.nav-cta { padding: 0.55rem 1.15rem; background: var(--sunset-orange); color: white !important; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.88rem; }
.nav-cta:hover { background: var(--sunset-orange-dark) !important; color: white !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: var(--transition); }
.nav-mobile { display: none; padding: 1rem 1.5rem; border-top: 1px solid var(--border-color); flex-direction: column; gap: 0.25rem; }
.nav-mobile .nav-link { display: block; padding: 0.75rem 1rem; }
.nav-mobile.open { display: flex; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none; cursor: pointer;
}
.btn-primary { background: var(--ocean-blue); color: white; }
.btn-primary:hover { background: var(--ocean-blue-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--sunset-orange); color: white; }
.btn-secondary:hover { background: var(--sunset-orange-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ocean-blue); border: 2px solid var(--ocean-blue); }
.btn-outline:hover { background: var(--ocean-blue); color: white; }
.btn-outline-white { background: transparent; color: white; border: 2px solid white; }
.btn-outline-white:hover { background: white; color: var(--ocean-blue); }
.btn-ghost { background: transparent; color: var(--text-secondary); padding: 0.6rem 1rem; }
.btn-ghost:hover { background: var(--gray-100); color: var(--text-primary); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Hero Section ---- */
.hero {
  background: linear-gradient(135deg, var(--ocean-blue-dark) 0%, var(--ocean-blue) 50%, var(--ocean-blue-light) 100%);
  color: white;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.hero h1 { color: white; margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.88); margin-bottom: 2.5rem; line-height: 1.7; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: white; padding: 0.35rem 1rem; border-radius: 100px; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.hero-search-card { background: white; border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-xl); margin-top: 2.5rem; text-align: left; }
.search-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; border-bottom: 2px solid var(--border-color); }
.search-tab { padding: 0.6rem 1.25rem; font-weight: 600; font-size: 0.9rem; color: var(--text-muted); border-bottom: 3px solid transparent; margin-bottom: -2px; cursor: pointer; transition: var(--transition); }
.search-tab.active { color: var(--ocean-blue); border-bottom-color: var(--ocean-blue); }
.search-row { display: flex; gap: 0.75rem; }
.search-input { flex: 1; padding: 0.85rem 1.1rem; border: 1.5px solid var(--border-color); border-radius: var(--radius-sm); font-size: 0.95rem; color: var(--text-primary); background: var(--gray-50); }
.search-input:focus { outline: none; border-color: var(--ocean-blue); background: white; }
.search-select { padding: 0.85rem 1.1rem; border: 1.5px solid var(--border-color); border-radius: var(--radius-sm); font-size: 0.95rem; color: var(--text-primary); background: var(--gray-50); min-width: 160px; }
.search-select:focus { outline: none; border-color: var(--ocean-blue); }

/* ---- Stats Bar ---- */
.stats-bar { background: var(--ocean-blue-dark); color: white; padding: 1.25rem 0; }
.stats-inner { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-size: 1.6rem; font-weight: 700; color: var(--sunset-orange-light); display: block; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---- Island Navigation ---- */
.island-nav { background: var(--sand); border-bottom: 1px solid var(--sand-dark); padding: 1.25rem 0; }
.island-tabs { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.island-tab { padding: 0.55rem 1.25rem; border-radius: 100px; background: white; border: 1.5px solid var(--border-color); font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); cursor: pointer; transition: var(--transition); }
.island-tab:hover { border-color: var(--ocean-blue); color: var(--ocean-blue); }
.island-tab.active { background: var(--ocean-blue); border-color: var(--ocean-blue); color: white; }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label { display: inline-block; background: rgba(26,95,138,0.1); color: var(--ocean-blue); padding: 0.3rem 1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 560px; margin: 0 auto; color: var(--text-muted); font-size: 1.05rem; }

/* ---- Category Grid ---- */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
.category-card { text-align: center; padding: 1.5rem 1rem; background: white; border: 1.5px solid var(--border-color); border-radius: var(--radius-md); cursor: pointer; transition: var(--transition); text-decoration: none; color: var(--text-primary); }
.category-card:hover { border-color: var(--ocean-blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.category-icon { font-size: 2rem; margin-bottom: 0.6rem; display: block; }
.category-name { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }

/* ---- Business Listing Cards ---- */
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.5rem; }
.listing-card { background: white; border: 1.5px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.listing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--gray-300); }
.listing-card-image { height: 180px; background: linear-gradient(135deg, var(--ocean-blue-light), var(--tropic-green)); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
.listing-card-image img { width: 100%; height: 100%; object-fit: cover; }
.listing-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--sunset-orange); color: white; padding: 0.25rem 0.65rem; border-radius: 100px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.listing-badge.free { background: var(--tropic-green); }
.listing-card-body { padding: 1.25rem; flex: 1; }
.listing-card-meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.listing-island { font-size: 0.75rem; color: var(--ocean-blue); font-weight: 600; background: rgba(26,95,138,0.1); padding: 0.2rem 0.6rem; border-radius: 100px; }
.listing-category { font-size: 0.75rem; color: var(--text-muted); }
.listing-card h4 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.listing-card h4 a { color: var(--text-primary); }
.listing-card h4 a:hover { color: var(--ocean-blue); }
.listing-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.listing-rating { display: flex; align-items: center; gap: 0.35rem; font-size: 0.88rem; }
.stars { color: #f59e0b; letter-spacing: -1px; }
.rating-count { color: var(--text-muted); font-size: 0.8rem; }
.listing-card-footer { padding: 1rem 1.25rem; border-top: 1px solid var(--border-color); display: flex; gap: 0.75rem; }
.listing-tag { font-size: 0.75rem; background: var(--gray-100); color: var(--gray-600); padding: 0.25rem 0.65rem; border-radius: 100px; }

/* ---- Audience Split ---- */
.audience-split { display: grid; grid-template-columns: 1fr 1fr; }
.audience-panel { padding: 4rem 3rem; }
.audience-panel.consumer { background: linear-gradient(135deg, var(--ocean-blue-dark), var(--ocean-blue)); color: white; }
.audience-panel.business { background: linear-gradient(135deg, var(--sunset-orange-dark), var(--sunset-orange)); color: white; }
.audience-panel h2 { color: white; margin-bottom: 1rem; }
.audience-panel p { color: rgba(255,255,255,0.88); }
.audience-features { margin: 1.5rem 0; }
.audience-features li { padding: 0.5rem 0; display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.92); font-size: 0.95rem; }
.audience-features li::before { content: '✓'; font-weight: 700; color: white; font-size: 1rem; width: 20px; flex-shrink: 0; }

/* ---- Pricing Cards ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.pricing-card { background: white; border: 2px solid var(--border-color); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); }
.pricing-card.featured { border-color: var(--ocean-blue); box-shadow: var(--shadow-xl); transform: scale(1.03); }
.pricing-card-badge { background: var(--ocean-blue); color: white; padding: 0.3rem 1rem; border-radius: 100px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; display: inline-block; margin-bottom: 1rem; }
.pricing-name { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--ocean-blue); margin: 0.75rem 0; line-height: 1; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.pricing-features { margin-bottom: 1.75rem; }
.pricing-features li { padding: 0.45rem 0; display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text-secondary); border-bottom: 1px solid var(--gray-100); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--tropic-green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: white; border: 1.5px solid var(--border-color); border-radius: var(--radius-md); padding: 1.75rem; }
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ocean-blue); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-type { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.15rem 0.5rem; border-radius: 4px; margin-top: 0.25rem; }
.testimonial-type.consumer { background: rgba(26,95,138,0.1); color: var(--ocean-blue); }
.testimonial-type.business { background: rgba(232,114,42,0.1); color: var(--sunset-orange-dark); }
.testimonial-type.visitor { background: rgba(45,138,94,0.1); color: var(--tropic-green-dark); }

/* ---- CTA Section ---- */
.cta-section { background: linear-gradient(135deg, var(--ocean-blue-dark), var(--ocean-blue-light)); color: white; text-align: center; padding: 5rem 0; }
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Forms ---- */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--text-primary); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border-color); border-radius: var(--radius-sm);
  font-size: 0.95rem; font-family: inherit; color: var(--text-primary); background: var(--gray-50);
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--ocean-blue); background: white; box-shadow: 0 0 0 3px rgba(26,95,138,0.1); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ---- Score Widget ---- */
.score-widget { background: var(--gray-50); border: 1.5px solid var(--border-color); border-radius: var(--radius-md); padding: 1.25rem; margin-top: 1.5rem; }
.score-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.score-bar-wrap { flex: 1; background: var(--gray-200); border-radius: 100px; height: 8px; overflow: hidden; }
.score-bar { height: 100%; border-radius: 100px; background: var(--sunset-orange); }
.score-bar.low { background: #ef4444; }
.score-bar.mid { background: #f59e0b; }
.score-bar.high { background: var(--tropic-green); }
.score-label { font-size: 0.82rem; font-weight: 600; width: 160px; flex-shrink: 0; }
.score-pct { font-size: 0.82rem; font-weight: 700; width: 40px; text-align: right; }

/* ---- FAQ Accordion ---- */
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; font-weight: 600; cursor: pointer; gap: 1rem; color: var(--text-primary); }
.faq-question:hover { color: var(--ocean-blue); }
.faq-arrow { flex-shrink: 0; font-size: 1.2rem; color: var(--text-muted); transition: var(--transition); }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--ocean-blue); }
.faq-answer { display: none; padding: 0 0 1.1rem; color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; }
.faq-item.open .faq-answer { display: block; }

/* ---- Tags ---- */
.tags-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag-chip { padding: 0.4rem 1rem; background: white; border: 1.5px solid var(--border-color); border-radius: 100px; font-size: 0.83rem; font-weight: 600; color: var(--text-secondary); cursor: pointer; transition: var(--transition); text-decoration: none; }
.tag-chip:hover { border-color: var(--ocean-blue); color: var(--ocean-blue); background: rgba(26,95,138,0.06); }
.tag-chip.active { background: var(--ocean-blue); border-color: var(--ocean-blue); color: white; }

/* ---- Filters (Directory) ---- */
.filter-sidebar { width: 260px; flex-shrink: 0; }
.filter-group { margin-bottom: 1.75rem; }
.filter-title { font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.75rem; }
.filter-option { display: flex; align-items: center; gap: 0.6rem; padding: 0.35rem 0; cursor: pointer; }
.filter-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--ocean-blue); }
.filter-option label { font-size: 0.9rem; color: var(--text-secondary); cursor: pointer; }
.filter-clear { font-size: 0.82rem; color: var(--ocean-blue); cursor: pointer; font-weight: 600; background: none; border: none; padding: 0; }
.filter-clear:hover { text-decoration: underline; }

/* ---- Benefits Grid ---- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.benefit-card { padding: 1.75rem; background: white; border: 1.5px solid var(--border-color); border-radius: var(--radius-md); }
.benefit-icon { font-size: 2rem; margin-bottom: 1rem; }
.benefit-card h4 { margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.9rem; }

/* ---- How It Works ---- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.step-item { text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--ocean-blue); color: white; font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.step-item h4 { margin-bottom: 0.5rem; }
.step-item p { font-size: 0.9rem; }

/* ---- Alerts ---- */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.92rem; display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; }
.alert-info { background: rgba(26,95,138,0.1); border-left: 4px solid var(--ocean-blue); color: var(--ocean-blue-dark); }
.alert-warning { background: rgba(245,158,11,0.1); border-left: 4px solid #f59e0b; color: #92400e; }
.alert-success { background: rgba(45,138,94,0.1); border-left: 4px solid var(--tropic-green); color: var(--tropic-green-dark); }

/* ---- OBT Profile Card ---- */
.obt-card { background: var(--ocean-blue-dark); color: white; border-radius: var(--radius-lg); padding: 2.5rem; display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.obt-logo-box { width: 90px; height: 90px; background: var(--sunset-orange); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 2rem; }
.obt-info h3 { color: white; margin-bottom: 0.5rem; }
.obt-info p { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin-bottom: 0; }
.obt-tagline { color: var(--sunset-orange-light); font-style: italic; font-size: 0.88rem; margin-top: 0.3rem; }

/* ---- Sponsored / Paid Notice ---- */
.sponsored-notice { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.3); border-radius: var(--radius-sm); padding: 0.45rem 0.9rem; font-size: 0.75rem; color: #92400e; font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; }
.sponsored-notice::before { content: 'AD'; background: #f59e0b; color: white; padding: 0.1rem 0.35rem; border-radius: 3px; font-size: 0.65rem; font-weight: 800; }
.featured-label { display: inline-flex; align-items: center; gap: 0.3rem; background: rgba(232,114,42,0.1); border: 1px solid rgba(232,114,42,0.3); color: var(--sunset-orange-dark); padding: 0.25rem 0.65rem; border-radius: 100px; font-size: 0.72rem; font-weight: 700; }

/* ---- FOOTER ---- */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.8); }
.footer-main { padding: 4rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand-name { font-family: var(--font-heading); color: white; font-size: 1.2rem; margin-bottom: 0.25rem; }
.footer-brand-sub { color: var(--sunset-orange-light); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; }
.footer-col h5 { color: white; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1rem; font-family: var(--font-body); }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-col ul li a:hover { color: white; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 0; }
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; }
.footer-copyright { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal-links a { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer-legal-links a:hover { color: rgba(255,255,255,0.9); }

/* ---- Legal Disclaimer Block (Footer) ---- */
.footer-disclaimer {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.6); }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--text-muted); padding: 1rem 0; }
.breadcrumb a { color: var(--ocean-blue); }
.breadcrumb-sep { color: var(--gray-300); }

/* ---- Toast ---- */
.toast { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; background: var(--gray-900); color: white; padding: 1rem 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-xl); font-size: 0.9rem; max-width: 320px; transform: translateY(100px); opacity: 0; transition: all 0.35s ease; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--tropic-green); }
.toast.error { border-left: 4px solid #ef4444; }

/* ---- Back to Top ---- */
.back-to-top { position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 999; width: 44px; height: 44px; background: var(--ocean-blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: var(--shadow-lg); opacity: 0; transform: scale(0.8); transition: var(--transition); pointer-events: none; cursor: pointer; border: none; }
.back-to-top.visible { opacity: 1; transform: scale(1); pointer-events: auto; }
.back-to-top:hover { background: var(--ocean-blue-dark); transform: scale(1.1); }

/* ---- Page Hero (inner pages) ---- */
.page-hero { background: linear-gradient(135deg, var(--ocean-blue-dark), var(--ocean-blue)); color: white; padding: 3.5rem 0; text-align: center; }
.page-hero h1 { color: white; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ---- Value Prop Banner ---- */
.value-banner { background: var(--sand); border-top: 3px solid var(--sunset-orange); padding: 2rem 0; }
.value-banner-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; text-align: center; }
.value-item .vi-icon { font-size: 1.75rem; margin-bottom: 0.4rem; }
.value-item .vi-text { font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .audience-split { grid-template-columns: 1fr; }
  .audience-panel { padding: 3rem 1.75rem; }
  .obt-card { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .search-row { flex-direction: column; }
  .search-select { min-width: auto; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .stats-inner { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .listings-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
