/* ============================================================
   Lucror Resources — Main Stylesheet
   All pages share this file. Edit here to change site-wide styles.
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Merriweather:wght@400;700&display=swap');

/* ---- CSS Variables (easy color theming) ---- */
:root {
  --navy:       #1a3a5c;   /* primary dark navy */
  --navy-dark:  #102540;   /* darker navy for hover/footer */
  --blue:       #2d7dd2;   /* accent blue */
  --blue-light: #e8f2fb;   /* very light blue for backgrounds */
  --gold:       #c8a84b;   /* subtle gold accent */
  --text:       #333333;
  --text-muted: #666666;
  --border:     #dddddd;
  --bg-light:   #f7f9fc;
  --white:      #ffffff;
  --shadow:     0 2px 10px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --radius:     4px;
  --max-width:  1080px;
  --transition: 0.25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.5em;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--text-muted); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section { padding: 70px 0; }
.section-alt { background: var(--bg-light); }
.section-navy { background: var(--navy); }
.section-navy h2, .section-navy h3, .section-navy p { color: var(--white); }

.section-title {
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Divider line under section titles */
.title-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 20px;
  border-radius: 2px;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b0922e;
  border-color: #b0922e;
  color: var(--white);
}

.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; }
.logo-img { height: 48px; width: auto; display: block; }
.logo-name {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  max-width: 175px;
}
.logo-tagline {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Nav links */
.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

/* Dropdown */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: 0.7rem;
  opacity: 0.7;
  line-height: 1;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 210px;
  z-index: 200;
  overflow: hidden;
}
.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  color: var(--text) !important;
  font-size: 0.85rem;
  background: transparent !important;
  border-bottom: 1px solid #f0f0f0;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--blue-light) !important; color: var(--navy) !important; }
.nav-dropdown:hover .dropdown-menu { display: block; }

/* Header CTA button */
.header-cta {
  margin-left: 10px;
  white-space: nowrap;
  text-align: center;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1d4e7a 100%);
  color: var(--white);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Decorative geometric shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 1; max-width: 680px; }

.hero-badge {
  display: inline-block;
  background: rgba(200, 168, 75, 0.25);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons { 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,0.15);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}

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

.card-icon {
  width: 54px;
  height: 54px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.card h3 { margin-bottom: 10px; font-size: 1.15rem; }

/* Service card accent border */
.card-service { border-top: 3px solid var(--blue); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 12px 0 26px;
}
.page-hero .container { text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 8px; font-size: 2.1rem; }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-dark);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-icon { font-size: 1rem; color: var(--gold); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.8); margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-col p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); }

.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item .icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45, 125, 210, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

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

/* Confirmation / alert messages */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: none;
}
.alert-success {
  background: #e6f9f0;
  border: 1px solid #5cb85c;
  color: #2d6e2d;
}
.alert-error {
  background: #fdecea;
  border: 1px solid #e74c3c;
  color: #8b1a1a;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-study {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}
.case-study-header {
  background: var(--navy);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.case-study-num {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
}
.case-study-header h3 { color: var(--white); margin: 0; font-size: 1.05rem; }
.case-study-body { padding: 28px; }
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cs-block h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 6px;
}
.cs-block p { font-size: 0.9rem; margin: 0; }

/* ============================================================
   INSIGHTS / ARTICLES
   ============================================================ */
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.article-card-body { padding: 24px; }
.article-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.article-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.article-card p  { font-size: 0.88rem; }
.article-meta {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 10px;
}

/* ============================================================
   RESOURCE LINKS
   ============================================================ */
.resource-group { margin-bottom: 40px; }
.resource-group h3 { margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--blue-light); }

.resource-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: box-shadow var(--transition);
}
.resource-link-item:hover { box-shadow: var(--shadow); }
.resource-link-info { display: flex; align-items: center; gap: 14px; }
.resource-link-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.resource-link-text strong { display: block; font-size: 0.9rem; color: var(--navy); }
.resource-link-text span { font-size: 0.8rem; color: var(--text-muted); }
.placeholder-badge {
  font-size: 0.7rem;
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

/* ============================================================
   DASHBOARD / AUTH PAGES
   ============================================================ */
.auth-page {
  min-height: 100vh;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 44px 40px;
  width: 100%;
  max-width: 440px;
}
.auth-card .logo { justify-content: center; margin-bottom: 28px; }
.auth-card h2 { text-align: center; margin-bottom: 6px; }
.auth-card .sub { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }

.dev-note {
  background: #fff8e1;
  border: 1px dashed #ffc107;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: #7d6005;
  margin-bottom: 20px;
  font-family: monospace;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 72px);
}
.dashboard-sidebar {
  background: var(--navy);
  padding: 30px 0;
}
.dashboard-sidebar .sidebar-logo {
  padding: 0 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-left: 3px solid var(--gold);
}
.dashboard-main { background: var(--bg-light); padding: 40px; }
.dashboard-greeting h2 { margin-bottom: 4px; }
.dashboard-greeting p { margin-bottom: 30px; }

.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
}
.stat-card .sc-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 6px; }
.stat-card .sc-value { font-size: 1.7rem; font-weight: 700; color: var(--navy); font-family: 'Merriweather', serif; }

/* ============================================================
   SERVICES LIST (detail pages)
   ============================================================ */
.service-detail-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.93rem;
  color: var(--text-muted);
}
.service-detail-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* Sidebar info box */
.sidebar-box {
  background: var(--blue-light);
  border: 1px solid #c3dcf5;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-box h4 { color: var(--navy); margin-bottom: 12px; }
.sidebar-box p  { font-size: 0.88rem; margin-bottom: 14px; }

/* ============================================================
   TABLE
   ============================================================ */
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--bg-light); }

/* ============================================================
   MISCELLANEOUS
   ============================================================ */
.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.text-blue    { color: var(--blue); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.d-flex { display: flex; }
.gap-2 { gap: 16px; }
.align-center { align-items: center; }

.tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

hr { border: none; border-top: 1px solid var(--border); margin: 30px 0; }

/* ============================================================
   SERVICE MODALS
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 620px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 44px 40px 36px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-light);
  padding: 4px 8px;
}
.modal-close:hover { color: var(--navy); }
.modal-box h2 { margin: 10px 0 14px; }
.modal-box h4 { color: var(--navy); margin: 20px 0 8px; }
.modal-box p { margin-bottom: 14px; }
.modal-box ul { margin: 0 0 8px 20px; }
.modal-box ul li { margin-bottom: 7px; font-size: 0.92rem; line-height: 1.5; }
.service-card-icon { font-size: 2.2rem; margin-bottom: 10px; display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 70px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }

  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 16px;
    z-index: 999;
    gap: 2px;
  }
  .main-nav.open a { width: 100%; }
  .hamburger { display: block; }
  .header-cta { display: none; }

  .dropdown-menu { position: static; box-shadow: none; border: none; background: rgba(255,255,255,0.08); }
  .dropdown-menu a { color: rgba(255,255,255,0.75) !important; border-bottom-color: rgba(255,255,255,0.1); }
  .dropdown-menu a:hover { background: rgba(255,255,255,0.12) !important; color: var(--white) !important; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .case-study-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .trust-items { gap: 20px; }
  .stat-cards { grid-template-columns: 1fr; }
  .auth-card { padding: 30px 24px; }
  .section { padding: 50px 0; }
}
