/* ============================================================
   BRAND REACH PARTNERS — SHARED STYLESHEET
   Blue-grey-white tech palette
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=DM+Serif+Display&display=swap');

:root {
  --navy:   #0B1F3A;
  --blue:   #1A56DB;
  --blue-lt:#3B82F6;
  --sky:    #EFF6FF;
  --slate:  #64748B;
  --mist:   #F1F5F9;
  --white:  #FFFFFF;
  --border: #CBD5E1;
  --text:   #1E293B;
  --danger: #DC2626;
  --success:#16A34A;

  --ff-display: 'DM Serif Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --radius: 10px;
  --shadow: 0 4px 24px rgba(11,31,58,.10);
  --shadow-lg: 0 12px 48px rgba(11,31,58,.16);
  --transition: 0.22s ease;

  --max-w: 1180px;
  --section-py: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── DISCLOSURE BAR ── */
.disclosure-bar {
  background: #FFF7ED;
  border-top: 3px solid #F59E0B;
  padding: 14px 24px;
  font-size: 12.5px;
  color: #78350F;
  text-align: center;
  line-height: 1.55;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
#cookie-banner p { flex: 1; min-width: 220px; font-size: 13.5px; line-height: 1.5; }
#cookie-banner a { color: var(--blue-lt); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btns button {
  padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 600;
  cursor: pointer; border: none; transition: opacity var(--transition);
}
.cookie-btns button:hover { opacity: .85; }
#btn-accept { background: var(--blue); color: #fff; }
#btn-reject { background: #334155; color: #fff; }
#btn-customize { background: transparent; border: 1.5px solid #475569 !important; color: #94A3B8; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 70px;
  display: flex; align-items: center;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; color: var(--navy);
  letter-spacing: -.3px;
}
.logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, #1E40AF 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 15px; letter-spacing: -.5px;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px; border-radius: 7px;
  font-size: 14px; font-weight: 500; color: var(--slate);
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active { background: var(--sky); color: var(--blue); }
.nav-cta {
  padding: 9px 20px; border-radius: 8px;
  background: var(--blue); color: #fff !important;
  font-size: 13.5px; font-weight: 700;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: #1644B8 !important; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 9px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  border: none; transition: all var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #1644B8; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,86,219,.35); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--sky); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--sky); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--blue); background: var(--sky); padding: 5px 14px; border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--slate); max-width: 580px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── SECTION ── */
section { padding: var(--section-py) 0; }
.section-mist { background: var(--mist); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy .section-title { color: var(--white); }
.section-navy .section-sub { color: #94A3B8; }
.section-sky { background: var(--sky); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #162D56 60%, #1E3A6E 100%);
  color: var(--white);
  padding: 100px 0 80px;
  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='%231A56DB' fill-opacity='0.07'%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");
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: #93C5FD; background: rgba(26,86,219,.25); padding: 6px 16px; border-radius: 999px;
  border: 1px solid rgba(147,197,253,.2); margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.1; margin-bottom: 22px;
  color: var(--white);
}
.hero h1 em { font-style: normal; color: #93C5FD; }
.hero-sub { font-size: 18px; color: #CBD5E1; max-width: 560px; margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12); flex-wrap: wrap;
}
.stat-item {}
.stat-number { font-size: 32px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 13px; color: #94A3B8; margin-top: 2px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #162D56 100%);
  padding: 64px 0 56px;
  color: var(--white);
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 50px);
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero p { font-size: 18px; color: #94A3B8; max-width: 600px; }
.breadcrumb { font-size: 13px; color: #64748B; margin-bottom: 16px; }
.breadcrumb a { color: #93C5FD; }
.breadcrumb span { margin: 0 6px; }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
input, textarea, select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--ff-body); font-size: 14.5px; color: var(--text);
  background: var(--white); transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
textarea { min-height: 130px; resize: vertical; }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.checkbox-group input[type="checkbox"] {
  width: 17px; height: 17px; min-width: 17px; margin-top: 2px; cursor: pointer;
  border-radius: 4px; accent-color: var(--blue);
}
.checkbox-group label { font-size: 13px; color: var(--slate); font-weight: 400; cursor: pointer; }
.form-note { font-size: 12px; color: var(--slate); margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── SERVICE ICON ── */
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--sky); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 24px;
}

/* ── STEP PROCESS ── */
.process-step { display: flex; gap: 24px; align-items: flex-start; }
.step-num {
  min-width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.step-body h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-body p { font-size: 14.5px; color: var(--slate); }

/* ── TEAM CARD ── */
.team-card { text-align: center; }
.team-photo {
  width: 100px; height: 100px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px; background: var(--sky);
}
.team-name { font-size: 16px; font-weight: 700; color: var(--navy); }
.team-title { font-size: 13px; color: var(--blue); font-weight: 500; margin-bottom: 10px; }
.team-bio { font-size: 13.5px; color: var(--slate); line-height: 1.6; }

/* ── TESTIMONIAL ── */
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.stars { color: #F59E0B; font-size: 16px; margin-bottom: 12px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { font-weight: 700; font-size: 14px; color: var(--navy); }
.testimonial-co { font-size: 12px; color: var(--slate); }

/* ── TRUST BADGES ── */
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--slate);
}
.trust-badge svg { width: 20px; height: 20px; color: var(--blue); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: #94A3B8;
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin: 16px 0 20px; color: #94A3B8; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: #94A3B8; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-contact { font-size: 14px; margin-bottom: 8px; }
.footer-contact a { color: #93C5FD; }
.footer-bottom {
  border-top: 1px solid #1E3A5F;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12.5px;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: #64748B; transition: color var(--transition); }
.footer-bottom-links a:hover { color: #94A3B8; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 0; }
.footer-logo .logo-mark { width: 32px; height: 32px; font-size: 13px; }
.footer-logo span { font-size: 16px; font-weight: 800; color: var(--white); }

/* ── FAQ ── */
details { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
details summary {
  padding: 18px 22px; font-weight: 600; font-size: 15px;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  color: var(--navy);
}
details summary::after { content: '+'; font-size: 20px; color: var(--blue); font-weight: 300; }
details[open] summary::after { content: '−'; }
details p { padding: 0 22px 18px; font-size: 14.5px; color: var(--slate); line-height: 1.7; }

/* ── BADGE ── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700; }
.badge-blue { background: var(--sky); color: var(--blue); }
.badge-green { background: #DCFCE7; color: #166534; }
.badge-slate { background: #F1F5F9; color: var(--slate); }

/* ── ALERT BOXES ── */
.alert { padding: 14px 18px; border-radius: 8px; font-size: 13.5px; line-height: 1.6; margin-bottom: 16px; }
.alert-info { background: var(--sky); color: #1E40AF; border-left: 4px solid var(--blue); }
.alert-warning { background: #FFF7ED; color: #92400E; border-left: 4px solid #F59E0B; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
  .main-nav.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-strip { gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
