/*
Theme Name: Faustianloop
Theme URI: https://faustianloop.com
Author: Faustianloop Corp.
Author URI: https://faustianloop.com
Description: Custom cybersecurity firm theme for Faustianloop Corp. - Penetration Testing, Red Teaming, GRC & Compliance, Security Transformation, Security Trainings, and Virtual CISO services across Canada.
Version: 1.0.0
License: Proprietary
Text Domain: faustianloop
*/

/* ==========================================================================
   FAUSTIANLOOP CORP - DESIGN SYSTEM
   Palette: Dynamic purple + blue + white (lighter, more vibrant than pure navy)
   ========================================================================== */

:root {
  /* Backgrounds - lifted lighter than v1, more breathing room, slight purple undertone */
  --bg:        #0E0C1A;
  --bg2:       #17142A;
  --bg3:       #201C38;
  --bg4:       #2C2748;

  /* Brand accents - purple/blue stays primary */
  --acc:       #8B6FF7;   /* primary purple */
  --acc2:      #5B97F7;   /* primary blue */
  --acc-light: #BCA8FF;   /* light purple, for glows/highlights - brightened */
  --white:     #FFFFFF;
  --off-white: #F5F3FF;   /* slight purple-tinted white for soft backgrounds */

  /* Meaning accents - used sparingly, not decoratively */
  --green:     #65D590;   /* compliance wins, results, success states */
  --green-lt:  #9CE8B8;
  --amber:     #F5B43C;   /* risk flags, urgency, deadlines */
  --amber-lt:  #FFD08A;
  --lime:      #C4F542;   /* hover accent on clickable card titles */

  /* Text */
  --txt:       #FFFFFF;
  --txt2:      #B6B2DC;   /* lavender-grey secondary text - lightened */
  --txt3:      #7C77A0;   /* tertiary / muted - lightened */

  /* Borders */
  --bdr:       #2F2A4E;
  --bdr2:      #423C72;

  /* Radii */
  --r:  14px;
  --r2: 9px;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--acc), var(--acc2));
  --grad-text:  linear-gradient(135deg, var(--acc-light), var(--acc2));
  --grad-soft:  linear-gradient(135deg, rgba(139,111,247,0.18), rgba(91,151,247,0.10));
  --grad-green: linear-gradient(135deg, var(--green), #4FBE7A);
  --grad-amber: linear-gradient(135deg, var(--amber), #E8983C);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--txt);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
a, a:hover, a:visited, a:active { text-decoration: none; }
.card, .card *, .btn-primary, .btn-primary *, .btn-ghost, .btn-ghost *, .btn-large, .btn-large * {
  text-decoration: none !important;
}
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,10,20,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bdr);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: flex; align-items: center; height: 100%; }
.logo-link img { height: 64px; width: auto; }

.nav-center { display: flex; align-items: center; gap: 4px; height: 100%; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }

.nav-btn {
  background: none; border: none; cursor: pointer;
  font-size: 14px; font-weight: 500; color: var(--txt2);
  padding: 0 16px; height: 100%;
  display: flex; align-items: center; gap: 5px;
  transition: color .15s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.nav-btn:hover, .nav-btn.is-active { color: var(--white); }
.nav-btn .arr { font-size: 12px; transition: transform .2s; }
.nav-item:hover .arr { transform: rotate(180deg); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.btn-primary {
  background: var(--grad-brand);
  color: var(--white) !important;
  font-size: 14px; font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--r2);
  border: none; cursor: pointer;
  transition: opacity .15s, transform .15s;
  font-family: 'Inter', sans-serif;
  display: inline-block;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); color: var(--white) !important; }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bdr2);
  color: var(--white) !important;
  font-size: 14px; font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--r2);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  font-family: 'Inter', sans-serif;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--acc); background: rgba(139,111,247,0.08); color: var(--white) !important; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 8px;
  min-width: 280px;
  z-index: 999;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.nav-item:hover .dropdown { display: block; }

.dd-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: var(--r2);
  cursor: pointer; transition: background .12s;
}
.dd-item:hover { background: var(--bg3); }
.dd-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--grad-soft);
  border: 1px solid rgba(139,111,247,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--acc-light); font-size: 17px; flex-shrink: 0;
}
.dd-text { font-size: 13.5px; font-weight: 600; color: var(--white); }
.dd-sub { font-size: 11.5px; color: var(--txt3); margin-top: 2px; }

/* Hamburger / mobile menu */
.hamburger {
  display: none;
  background: none; border: 1px solid var(--bdr);
  border-radius: 7px; padding: 8px 10px;
  cursor: pointer; color: var(--txt2);
}
.mobile-menu {
  display: none;
  background: var(--bg2);
  border-top: 1px solid var(--bdr);
  padding: 16px;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu.is-open { display: flex; }
.mobile-link {
  background: none; border: none; color: var(--txt2);
  font-size: 14.5px; padding: 12px 14px; text-align: left;
  cursor: pointer; border-radius: var(--r2); width: 100%;
  transition: background .12s, color .12s;
  display: block;
}
.mobile-link:hover { background: var(--bg3); color: var(--white); }
.mobile-section {
  font-size: 10.5px; font-weight: 700; color: var(--txt3);
  letter-spacing: 1.5px; padding: 14px 14px 6px;
  text-transform: uppercase;
}
.mobile-sub { padding-left: 28px; font-size: 13.5px; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  padding: 100px 40px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -260px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(139,111,247,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; right: 10%;
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(91,151,247,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,111,247,0.12);
  border: 1px solid rgba(139,111,247,0.35);
  color: var(--acc-light);
  font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 22px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 26px;
  position: relative; z-index: 1;
}
.pulse-dot {
  width: 7px; height: 7px; background: var(--acc-light);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

.hero h1 {
  font-size: 56px; font-weight: 700; line-height: 1.06;
  margin-bottom: 22px; max-width: 780px; margin-left: auto; margin-right: auto;
  letter-spacing: -1.5px;
  position: relative; z-index: 1;
}
.hero-sub {
  font-size: 17px; color: var(--txt2);
  max-width: 560px; margin: 0 auto 38px; line-height: 1.75;
  position: relative; z-index: 1;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.btn-large { font-size: 15px; padding: 14px 30px; }

/* Stats bar */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
  background: var(--bg2);
}
.stat-cell {
  padding: 26px 16px; text-align: center;
  border-right: 1px solid var(--bdr);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700;
  background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 11.5px; color: var(--txt3); margin-top: 5px; line-height: 1.4; }

/* ==========================================================================
   SECTIONS / CARDS
   ========================================================================== */

.section { padding: 84px 40px; }
.section-label {
  font-size: 11px; font-weight: 700; color: var(--acc-light);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px;
}
.section h2 { font-size: 40px; font-weight: 700; margin-bottom: 12px; letter-spacing: -1px; }
.section .sub { font-size: 16px; color: var(--txt2); margin-bottom: 48px; max-width: 540px; line-height: 1.7; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.card {
  background: var(--bg2);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color .2s, transform .2s, background .2s;
  position: relative;
  overflow: hidden;
}
.card.is-clickable { cursor: pointer; }
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0; transition: opacity .2s;
  pointer-events: none;
}
.card:hover { border-color: rgba(139,111,247,0.55); transform: translateY(-4px); background: var(--bg3); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--grad-soft);
  border: 1px solid rgba(139,111,247,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--acc-light); font-size: 23px; margin-bottom: 18px;
}
.card h3 { font-size: 17.5px; font-weight: 600; margin-bottom: 9px; transition: color .15s; }
.card.is-clickable:hover h3 { color: var(--lime); }
.card p { font-size: 13.5px; color: var(--txt2); line-height: 1.65; margin-bottom: 15px; }
.card ul { padding-left: 0; margin-bottom: 15px; }
.card ul li {
  font-size: 12.5px; color: var(--txt2); margin-bottom: 6px; line-height: 1.55;
  padding-left: 16px; position: relative;
}
.card ul li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--grad-brand);
}

.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 10.5px; font-weight: 600; padding: 4px 10px;
  border-radius: 20px;
  background: rgba(139,111,247,0.14); color: var(--acc-light);
  border: 1px solid rgba(139,111,247,0.25);
}
.tag.green { background: rgba(101,213,144,0.14); color: var(--green-lt); border-color: rgba(101,213,144,0.3); }
.tag.amber { background: rgba(245,180,60,0.14); color: var(--amber-lt); border-color: rgba(245,180,60,0.3); }

/* Card variants - meaning colors used sparingly */
.card.is-green:hover { border-color: rgba(101,213,144,0.55); }
.card.is-green .card-icon { background: linear-gradient(135deg, rgba(101,213,144,0.2), rgba(101,213,144,0.08)); border-color: rgba(101,213,144,0.3); color: var(--green-lt); }
.card.is-amber:hover { border-color: rgba(245,180,60,0.55); }
.card.is-amber .card-icon { background: linear-gradient(135deg, rgba(245,180,60,0.2), rgba(245,180,60,0.08)); border-color: rgba(245,180,60,0.3); color: var(--amber-lt); }

.badge-outcome {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(101,213,144,0.12); border: 1px solid rgba(101,213,144,0.3);
  color: var(--green-lt); font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
}
.badge-urgent {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,180,60,0.12); border: 1px solid rgba(245,180,60,0.3);
  color: var(--amber-lt); font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
}

/* USP banner */
.usp-banner {
  background: linear-gradient(135deg, rgba(139,111,247,0.16), rgba(101,213,144,0.07));
  border: 1px solid rgba(139,111,247,0.3);
  border-radius: var(--r);
  padding: 32px 36px;
  margin-bottom: 20px;
}
.usp-banner h3 { font-size: 18px; margin-bottom: 10px; }
.usp-banner p { font-size: 14.5px; color: var(--txt2); line-height: 1.75; }
.usp-banner strong { color: var(--white); }

/* Process timeline with number badges in brand gradient */
.process-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-brand); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}

/* Framework grid */
.fw-cell {
  background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: var(--r2); padding: 16px; text-align: center;
  transition: border-color .15s;
}
.fw-cell:hover { border-color: rgba(139,111,247,0.45); }
.fw-name { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; color: var(--white); }
.fw-type { font-size: 10.5px; color: var(--txt3); margin-top: 4px; }

/* Hero image block (for image sections) */
.image-block {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--bdr);
  position: relative;
}
.image-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-block .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,10,20,0.85) 100%);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, rgba(139,111,247,0.18), rgba(91,151,247,0.10));
  border: 1px solid rgba(139,111,247,0.3);
  border-radius: 18px;
  padding: 60px 40px;
  text-align: center;
  margin: 0 40px 70px;
}
.cta-band h2 { font-size: 34px; margin-bottom: 14px; letter-spacing: -1px; }
.cta-band p { color: var(--txt2); font-size: 16px; margin-bottom: 30px; line-height: 1.65; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Page header (used on inner pages) */
.page-hero {
  padding: 64px 40px 44px;
  border-bottom: 1px solid var(--bdr);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: -120px; right: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(ellipse, rgba(139,111,247,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-label { font-size: 11px; font-weight: 700; color: var(--acc-light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.page-hero h1 { font-size: 40px; font-weight: 700; margin-bottom: 12px; letter-spacing: -1px; }
.page-hero p { font-size: 16px; color: var(--txt2); max-width: 620px; line-height: 1.75; }

/* Methodology steps */
.method-step {
  background: var(--bg2); border: 1px solid var(--bdr);
  border-radius: var(--r); padding: 24px 26px; margin-bottom: 14px;
  display: flex; gap: 22px; transition: border-color .2s;
}
.method-step:hover { border-color: rgba(139,111,247,0.4); }
.method-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 34px; font-weight: 700;
  color: var(--bdr2); min-width: 52px; line-height: 1;
}
.method-num.is-active { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.method-step h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.method-step p { font-size: 13px; color: var(--txt2); line-height: 1.6; margin-bottom: 10px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { font-size: 10.5px; background: var(--bg3); color: var(--txt2); padding: 3px 9px; border-radius: 5px; }

/* Footer */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--bdr);
  padding: 56px 40px 26px;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px;
  margin-bottom: 44px;
}
.footer-col h4 { font-size: 12.5px; font-weight: 600; color: var(--white); margin-bottom: 18px; letter-spacing: .3px; }
.footer-col p { font-size: 12.5px; color: var(--txt3); line-height: 1.75; }
.footer-col a { display: block; font-size: 12.5px; color: var(--txt3); margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--acc-light); }
.footer-logo { height: 30px; margin-bottom: 16px; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid var(--bdr); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 11.5px; color: var(--txt3); }

/* Skill bars (about page) */
.skill-row { display: flex; align-items: center; gap: 14px; margin-bottom: 13px; }
.skill-name { font-size: 12.5px; color: var(--white); font-weight: 500; min-width: 140px; }
.skill-track { flex: 1; height: 5px; background: var(--bg4); border-radius: 3px; overflow: hidden; }
.skill-fill { height: 100%; border-radius: 3px; background: var(--grad-brand); }
.skill-pct { font-size: 11.5px; color: var(--txt3); min-width: 32px; text-align: right; }

/* Contact form */
.contact-wrap { padding: 50px 40px; display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; max-width: 1280px; margin: 0 auto; }
.contact-info h3 { font-size: 21px; font-weight: 600; margin-bottom: 22px; }
.contact-row { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--grad-soft); border: 1px solid rgba(139,111,247,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--acc-light); font-size: 18px; flex-shrink: 0;
}
.contact-text strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.contact-text span { font-size: 12.5px; color: var(--txt2); }
.contact-text a { color: var(--txt2); }
.contact-text a:hover { color: var(--acc-light); }

.contact-form-box { background: var(--bg2); border: 1px solid var(--bdr); border-radius: var(--r); padding: 34px; }
.form-group { margin-bottom: 17px; }
.form-group label { display: block; font-size: 10.5px; font-weight: 700; color: var(--txt3); margin-bottom: 7px; letter-spacing: .8px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--bg3); border: 1px solid var(--bdr);
  color: var(--white); font-size: 13.5px; padding: 11px 15px;
  border-radius: var(--r2); font-family: 'Inter', sans-serif; outline: none;
  transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--acc); }
.form-group textarea { resize: none; height: 96px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.btn-submit {
  width: 100%; background: var(--grad-brand); color: var(--white);
  font-weight: 600; font-size: 14.5px; padding: 14px;
  border-radius: var(--r2); border: none; cursor: pointer;
  transition: opacity .15s; font-family: 'Inter', sans-serif;
}
.btn-submit:hover { opacity: .88; }

/* Generic WP editor content styling (Privacy Policy, Terms, etc.) */
#primary .entry-content,
#primary > .section > div[style*="max-width:760px"] {
  color: var(--txt2);
}
.entry-content h2, #primary > .section > div[style*="max-width:760px"] h2 { font-size: 26px; margin: 32px 0 14px; }
.entry-content h3, #primary > .section > div[style*="max-width:760px"] h3 { font-size: 19px; margin: 24px 0 10px; }
.entry-content p, #primary > .section > div[style*="max-width:760px"] p { margin-bottom: 16px; line-height: 1.8; }
.entry-content ul, .entry-content ol,
#primary > .section > div[style*="max-width:760px"] ul,
#primary > .section > div[style*="max-width:760px"] ol { margin: 0 0 16px 20px; }
.entry-content li, #primary > .section > div[style*="max-width:760px"] li { margin-bottom: 8px; line-height: 1.7; list-style: disc; }
.entry-content ol li, #primary > .section > div[style*="max-width:760px"] ol li { list-style: decimal; }
.entry-content a, #primary > .section > div[style*="max-width:760px"] a { color: var(--acc-light); text-decoration: underline; }

/* Cookie consent banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg2);
  border-top: 1px solid var(--bdr2);
  padding: 20px 40px;
  z-index: 2000;
  display: none;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
}
.cookie-banner.is-visible { display: block; }
.cookie-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 240px; }
.cookie-text p { font-size: 13px; color: var(--txt2); line-height: 1.6; margin: 0; }
.cookie-text a { color: var(--acc-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--grad-brand); color: var(--white);
  font-size: 13px; font-weight: 600; padding: 10px 20px;
  border-radius: var(--r2); border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-cookie-decline {
  background: transparent; color: var(--txt2);
  font-size: 13px; font-weight: 500; padding: 10px 20px;
  border-radius: var(--r2); border: 1px solid var(--bdr2); cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-cookie-decline:hover { color: var(--white); border-color: var(--acc); }

@media (max-width: 968px) {
  .cookie-banner { padding: 16px 20px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 968px) {
  .nav-wrap { padding: 0 20px; height: 60px; }
  .nav-center, .nav-right .btn-ghost { display: none; }
  .hamburger { display: block; }
  .container { padding: 0 20px; }

  .hero { padding: 60px 20px 50px; }
  .hero h1 { font-size: 34px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 15px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }

  .section { padding: 50px 20px; }
  .section h2 { font-size: 27px; }
  .page-hero { padding: 44px 20px 30px; }
  .page-hero h1 { font-size: 28px; }

  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .cta-band { margin: 0 20px 44px; padding: 40px 24px; }
  .cta-band h2 { font-size: 24px; }

  .contact-wrap { grid-template-columns: 1fr; padding: 30px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 28px; }
  .site-footer { padding: 44px 0 22px; }
  .footer-bottom { padding: 0 20px 0; flex-direction: column; text-align: center; }

  .dropdown { left: -20px; min-width: 260px; }
}

@media (min-width: 969px) {
  .mobile-menu { display: none !important; }
}
