/* =========================================
   BLUE HAMMER — Main Stylesheet
   ========================================= */

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

/* --- Variables --- */
:root {
  --navy: #1B3A6B;
  --navy-dark: #142d55;
  --navy-light: #2a4f8c;
  --gold: #F5C842;
  --gold-dark: #d4a820;
  --gold-light: #f7d460;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --grey-bg: #F8F8F8;
  --grey-text: #666666;
  --grey-light: #E8E8E8;
  --border: #E0E0E0;
  --success: #22c55e;
  --error: #ef4444;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-navy: 0 8px 24px rgba(27,58,107,0.3);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;

  --container: 1200px;
  --container-sm: 820px;

  --header-height: 72px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font); font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
p { color: var(--grey-text); line-height: 1.7; }

.text-navy { color: var(--navy); }
.text-gold { color: var(--gold-dark); }
.text-white { color: var(--white) !important; }
.text-dark { color: var(--dark); }
.text-grey { color: var(--grey-text); }
.text-center { text-align: center; }

/* --- Layout --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: rgba(27,58,107,0.08);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.875rem;
}
.section-tag.gold { background: rgba(245,200,66,0.2); color: #8a6e0a; }
.section-tag.white { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-navy); }

.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,200,66,0.4); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--grey-bg); transform: translateY(-2px); }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* App Store Buttons */
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--dark);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
}
.app-btn:hover { background: #2a2a2a; transform: translateY(-2px); box-shadow: var(--shadow); }
.app-btn .app-icon { font-size: 1.6rem; line-height: 1; }
.app-btn .app-text { display: flex; flex-direction: column; line-height: 1.25; }
.app-btn .app-text small { font-size: 0.65rem; opacity: 0.75; }
.app-btn .app-text strong { font-size: 0.95rem; }
.app-store-group { display: flex; gap: 0.875rem; flex-wrap: wrap; }

/* --- Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--header-height);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; gap: 0.625rem; flex-shrink: 0; }
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 22px; height: 22px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main { font-size: 1.2rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.nav-logo-sub { font-size: 0.6rem; font-weight: 500; color: var(--grey-text); letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0.125rem; }
.nav-links a {
  padding: 0.5rem 0.7rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-text);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: rgba(27,58,107,0.07); }

.nav-ctas { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }
.nav-ctas .btn { padding: 0.6rem 1.1rem; font-size: 0.85rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition-fast); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  z-index: 999;
  animation: slideDown 0.2s ease;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.mobile-nav-links { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.25rem; }
.mobile-nav-links a {
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius);
  transition: var(--transition-fast);
  display: block;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active { background: rgba(27,58,107,0.07); color: var(--navy); }
.mobile-nav-ctas { display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-nav-ctas .btn { justify-content: center; }

/* --- Footer --- */
.site-footer { background: var(--navy); color: var(--white); padding-top: 4rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1rem; text-decoration: none; }
.footer-logo-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.12); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.footer-logo-main { font-size: 1.2rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.footer-logo-sub { font-size: 0.6rem; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }

.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 0.625rem; margin-bottom: 1.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition-fast);
  font-size: 0.9rem;
}
.footer-social a:hover { background: var(--gold); color: var(--dark); }

.footer-apps { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-apps .app-btn { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); padding: 0.625rem 1rem; }
.footer-apps .app-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-apps .app-btn:hover .app-text small,
.footer-apps .app-btn:hover .app-text strong { color: var(--dark); }

.footer-col h4 { color: var(--white); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: var(--transition-fast); }
.footer-col ul li a:hover { color: var(--gold); }

.footer-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  font-size: 0.7rem; font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-copyright { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.45); font-size: 0.8rem; transition: var(--transition-fast); }
.footer-legal-links a:hover { color: var(--gold); }

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #111;
  color: var(--white);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  display: none;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}
.cookie-banner.show { display: block; }
.cookie-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 0.875rem; color: rgba(255,255,255,0.8); min-width: 260px; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* --- Hero --- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -30%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,200,66,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -40%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-text h1 { color: var(--white); margin: 0.75rem 0 1rem; }
.hero-text h1 span { color: var(--gold); }
.hero-text > p { color: rgba(255,255,255,0.78); font-size: 1.15rem; margin-bottom: 2rem; }
.hero-cta { margin-bottom: 2.5rem; }
.hero-cta .btn-group { margin-bottom: 1.5rem; }

.location-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem; padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
}
.location-badge i { color: var(--gold); }

.hero-image { display: flex; justify-content: center; align-items: center; }

/* Phone Mockup */
.phone-mockup {
  width: 260px; height: 500px;
  background: #0f2548;
  border-radius: 40px;
  border: 8px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-notch {
  width: 90px; height: 28px;
  background: #0f2548;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative; z-index: 2;
  flex-shrink: 0;
}
.phone-screen {
  flex: 1;
  background: var(--grey-bg);
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  margin-top: -8px;
  padding: 1rem 0.75rem;
}
.phone-app-bar {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 0.625rem 0.75rem;
  margin-bottom: 0.625rem;
  display: flex; align-items: center; justify-content: space-between;
}
.phone-app-bar-title { color: var(--white); font-size: 0.7rem; font-weight: 700; }
.phone-app-bar-badge { background: var(--gold); color: var(--dark); font-size: 0.55rem; font-weight: 800; padding: 0.15rem 0.4rem; border-radius: 4px; }

.phone-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.625rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  display: flex; align-items: center; gap: 0.5rem;
}
.phone-card-ico {
  width: 30px; height: 30px;
  background: rgba(27,58,107,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.phone-card-info { flex: 1; }
.phone-card-name { font-size: 0.65rem; font-weight: 700; color: var(--dark); }
.phone-card-stars { display: flex; gap: 1px; }
.phone-card-stars i { color: var(--gold-dark); font-size: 0.55rem; }

.phone-cta-bar {
  background: var(--gold);
  border-radius: var(--radius);
  padding: 0.625rem 0.75rem;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 0.25rem;
}

/* Page Hero (non-home) */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -50%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,200,66,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero h1 span { color: var(--gold); }
.page-hero > .container > p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600;
  color: var(--dark); white-space: nowrap;
}
.trust-item i { color: var(--navy); font-size: 1rem; }

/* --- How It Works (3 step) --- */
.steps-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  position: relative;
}
.steps-3::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
}
.step-3 { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800;
  margin: 0 auto 1.25rem;
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(27,58,107,0.3);
}
.step-3 h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.step-3 p { font-size: 0.9rem; }

/* Steps 6 */
.steps-6 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}
.step-card:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--navy); color: var(--white);
  border-radius: 50%; font-size: 0.8rem; font-weight: 800;
  margin-bottom: 1rem;
}
.step-badge.gold { background: var(--gold); color: var(--dark); }
.step-card h4 { margin-bottom: 0.375rem; }
.step-card p { font-size: 0.875rem; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-icon {
  width: 56px; height: 56px;
  background: rgba(27,58,107,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--navy);
}
.card-icon.gold { background: rgba(245,200,66,0.18); color: var(--gold-dark); }

/* --- Service Grid --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.875rem;
}
.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 0.875rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--dark);
  display: block;
}
.service-card:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-navy);
}
.service-card:hover .service-icon { background: rgba(255,255,255,0.12); }
.service-card:hover p { color: rgba(255,255,255,0.75); }
.service-icon {
  width: 50px; height: 50px;
  background: rgba(27,58,107,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 0.75rem;
  transition: var(--transition);
}
.service-card h4 { font-size: 0.825rem; font-weight: 700; margin-bottom: 0.2rem; }
.service-card p { font-size: 0.72rem; color: var(--grey-text); transition: var(--transition); }

/* Service detail (services.html) */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.service-detail-card:hover { border-color: var(--navy); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-detail-card .service-icon { margin: 0 0 1rem; }
.service-detail-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.service-detail-card ul { margin-bottom: 1.25rem; }
.service-detail-card ul li {
  font-size: 0.875rem; color: var(--grey-text);
  padding: 0.25rem 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.service-detail-card ul li::before { content: '→'; color: var(--navy); font-weight: 700; flex-shrink: 0; }

/* --- Split Section --- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; }
.split-panel { padding: 80px 56px; }
.split-panel.navy { background: var(--navy); }
.split-panel.gold { background: var(--gold); }
.split-panel h2 { margin-bottom: 1rem; }
.split-panel.navy h2 { color: var(--white); }
.split-panel.navy p { color: rgba(255,255,255,0.72); }
.split-panel.navy .split-tag { color: rgba(255,255,255,0.6); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 0.75rem; }
.split-panel.gold .split-tag { color: rgba(0,0,0,0.55); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 0.75rem; }

.split-benefits { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.split-benefit { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; }
.split-benefit i { margin-top: 0.2rem; flex-shrink: 0; }
.split-panel.navy .split-benefit { color: rgba(255,255,255,0.85); }
.split-panel.navy .split-benefit i { color: var(--gold); }
.split-panel.gold .split-benefit i { color: var(--navy); }

/* --- Forms --- */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 0.45rem; }

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
}
.form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,107,0.1); }
.form-control.error { border-color: var(--error); box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.error-msg { font-size: 0.78rem; color: var(--error); margin-top: 0.3rem; display: none; }
.error-msg.show { display: block; }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-check { display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 1.25rem; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; border: 2px solid var(--border); border-radius: 4px; flex-shrink: 0; margin-top: 0.1rem; accent-color: var(--navy); cursor: pointer; }
.form-check label { font-size: 0.85rem; color: var(--grey-text); cursor: pointer; }
.form-check label a { color: var(--navy); text-decoration: underline; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success { display: none; text-align: center; padding: 2.5rem 1.5rem; }
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; color: var(--success); margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.5rem; }

/* Waitlist section */
.waitlist-section { background: var(--navy); padding: 80px 0; }
.waitlist-section h2 { color: var(--white); margin-bottom: 0.875rem; }
.waitlist-section > .container > p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 2rem; }
.waitlist-form-wrap { max-width: 600px; margin: 0 auto; }

.waitlist-tabs {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 2rem;
  gap: 4px;
}
.waitlist-tab {
  flex: 1; padding: 0.625rem;
  text-align: center; font-size: 0.9rem; font-weight: 600;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer; transition: var(--transition-fast);
  color: rgba(255,255,255,0.65);
  border: none; background: none;
}
.waitlist-tab.active { background: var(--white); color: var(--navy); }

.waitlist-form-wrap .form-group label { color: rgba(255,255,255,0.85); }
.waitlist-form-wrap .form-control { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: var(--white); }
.waitlist-form-wrap .form-control::placeholder { color: rgba(255,255,255,0.45); }
.waitlist-form-wrap .form-control:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); box-shadow: 0 0 0 3px rgba(245,200,66,0.2); }
.waitlist-form-wrap select.form-control option { background: var(--navy); color: var(--white); }
.waitlist-form-wrap .form-check label { color: rgba(255,255,255,0.6); }
.waitlist-form-wrap .form-check label a { color: var(--gold); }

/* --- FAQ Accordion --- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left;
  padding: 1.25rem 0;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: 1rem; font-weight: 600; color: var(--dark);
  transition: var(--transition-fast);
}
.faq-question:hover { color: var(--navy); }
.faq-icon {
  width: 26px; height: 26px;
  background: var(--grey-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.85rem;
  color: var(--navy);
  transition: var(--transition-fast);
}
.faq-item.open .faq-icon { background: var(--navy); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding-bottom: 1.25rem; font-size: 0.95rem; }

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 0.875rem; }
.testimonial-stars i { color: var(--gold-dark); font-size: 0.9rem; }
.testimonial-text { font-size: 0.95rem; color: var(--dark); font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--white); font-weight: 800; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testimonial-loc { font-size: 0.8rem; color: var(--grey-text); }

/* --- Earnings Calculator --- */
.calculator {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 680px; margin: 0 auto;
}
.calc-sliders { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 2rem; }
.calc-slider-group label { display: flex; justify-content: space-between; align-items: center; font-weight: 600; margin-bottom: 0.75rem; font-size: 0.95rem; }
.calc-slider-group label .calc-val { font-size: 1.1rem; font-weight: 800; color: var(--navy); }

input[type="range"] {
  width: 100%; height: 6px;
  border-radius: 3px; background: var(--grey-light);
  outline: none; appearance: none; -webkit-appearance: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--navy); border-radius: 50%;
  cursor: pointer; box-shadow: 0 2px 8px rgba(27,58,107,0.3);
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--navy); border-radius: 50%;
  cursor: pointer; border: none; box-shadow: 0 2px 8px rgba(27,58,107,0.3);
}

.calc-results {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.calc-result {
  text-align: center; padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--grey-bg);
}
.calc-result.highlight { background: var(--navy); }
.calc-result-value { font-size: 1.75rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 0.375rem; }
.calc-result.highlight .calc-result-value { color: var(--gold); }
.calc-result-label { font-size: 0.75rem; color: var(--grey-text); font-weight: 500; }
.calc-result.highlight .calc-result-label { color: rgba(255,255,255,0.65); }
.calc-disclaimer { text-align: center; font-size: 0.8rem; color: var(--grey-text); margin-top: 1rem; }

/* --- Contact --- */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 4rem; }
.contact-card { text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.5rem; transition: var(--transition); }
.contact-card:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.contact-card .card-icon { margin: 0 auto 1.25rem; }
.contact-card h3 { margin-bottom: 0.375rem; font-size: 1.05rem; }
.contact-card a.email-link { color: var(--navy); font-weight: 600; font-size: 0.9rem; word-break: break-all; }
.contact-card a.email-link:hover { text-decoration: underline; }

/* --- Stats row --- */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
  background: var(--navy); border-radius: var(--radius-xl); padding: 3rem 2rem;
}
.stat-box h3 { color: var(--gold); font-size: 2.5rem; margin-bottom: 0.25rem; }
.stat-box p { color: rgba(255,255,255,0.65); font-size: 0.875rem; }

/* --- Pain Points --- */
.pain-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.pain-card { display: flex; gap: 1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.pain-icon { width: 42px; height: 42px; background: #fff1f0; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #ef4444; flex-shrink: 0; }
.pain-card h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.pain-card p { font-size: 0.85rem; }

/* --- Why Blue Hammer --- */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.why-item { text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.why-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.why-icon { width: 64px; height: 64px; background: rgba(27,58,107,0.08); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 1.25rem; color: var(--navy); }
.why-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }

/* Verification timeline */
.verify-steps { display: flex; flex-direction: column; }
.verify-step { display: flex; gap: 1.5rem; align-items: flex-start; position: relative; }
.verify-step:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 48px; bottom: -1rem; width: 2px; background: var(--border); }
.verify-num { width: 40px; height: 40px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; font-size: 0.875rem; position: relative; z-index: 1; }
.verify-body { padding-bottom: 2rem; flex: 1; }
.verify-body h4 { margin-bottom: 0.25rem; }
.verify-body p { font-size: 0.875rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.team-card { text-align: center; }
.team-avatar { width: 100%; aspect-ratio: 1; max-width: 140px; background: var(--grey-bg); border-radius: var(--radius-xl); margin: 0 auto 0.875rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--grey-text); }
.team-card h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.team-card p { font-size: 0.825rem; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.value-card { display: flex; gap: 1.25rem; background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.value-icon { width: 50px; height: 50px; background: rgba(27,58,107,0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--navy); flex-shrink: 0; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.375rem; }
.value-card p { font-size: 0.875rem; }

/* Press */
.press-bar { padding: 2.5rem 0; background: var(--grey-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.press-bar-label { text-align: center; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--grey-text); margin-bottom: 1.5rem; }
.press-logos { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.press-logo { width: 110px; height: 38px; background: var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: var(--grey-text); opacity: 0.5; }

/* App download section */
.app-download { background: var(--navy); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.app-download::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(245,200,66,0.07) 0%, transparent 65%); pointer-events: none; }
.app-download .container { position: relative; z-index: 1; }
.app-download h2 { color: var(--white); margin-bottom: 1rem; }
.app-download p { color: rgba(255,255,255,0.72); margin-bottom: 2rem; font-size: 1.05rem; }
.app-download .app-store-group { justify-content: center; }
.app-download .app-btn { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
.app-download .app-btn:hover { background: var(--white); color: var(--dark); }

/* Payment explainer */
.payment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.payment-step { text-align: center; padding: 2rem; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.payment-step-num { width: 48px; height: 48px; background: var(--gold); color: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 800; margin: 0 auto 1rem; }
.payment-step h4 { margin-bottom: 0.5rem; }
.payment-step p { font-size: 0.875rem; }

/* Utility */
.bg-grey { background: var(--grey-bg); }
.bg-navy { background: var(--navy); }
.bg-gold { background: var(--gold); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.pt-0 { padding-top: 0 !important; }

/* Highlight box */
.highlight-box { background: rgba(27,58,107,0.06); border-left: 4px solid var(--navy); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.highlight-box p { color: var(--dark); font-size: 0.95rem; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
  .hero-text .btn-group, .hero-text .app-store-group { justify-content: center; }
  .hero-text .location-badge { margin: 0 auto; }

  .split-section { grid-template-columns: 1fr; }
  .split-panel { padding: 60px 40px; }

  .stats-row { grid-template-columns: repeat(2,1fr); padding: 2rem; }
  .stat-box h3 { font-size: 2rem; }

  .why-grid { grid-template-columns: repeat(2,1fr); }
  .steps-6 { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; }

  .phone-mockup { width: 210px; height: 400px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .hero { padding: 64px 0 48px; }
  .page-hero { padding: 56px 0 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .steps-3 { grid-template-columns: 1fr; }
  .steps-3::before { display: none; }
  .steps-6 { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; }
  .calculator { padding: 1.5rem; }
  .split-panel { padding: 48px 24px; }

  .trust-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; justify-items: start; }

  .cookie-inner { flex-direction: column; }
  .cookie-actions { flex-direction: column; width: 100%; }
  .cookie-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: flex-start; }
  .hero-text .btn-group { align-items: center; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: 1fr; }
  .trust-items { grid-template-columns: 1fr; }
}
