/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --navy:       #1B5E2A;
  --navy-dark:  #0f3d1a;
  --navy-light: #2D7A45;
  --gold:       #C8972A;
  --gold-light: #dba83a;
  --gray-100:   #F4F6F9;
  --gray-200:   #E8ECF2;
  --gray-400:   #B0BAC8;
  --gray-600:   #7A8799;
  --body-text:  #3D4A5C;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.16);
  --radius:     8px;
  --radius-lg:  14px;
  --transition: 0.2s ease;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-serif: 'Merriweather', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-family: var(--font-serif); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

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

ul { list-style: none; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--alt { background: var(--gray-100); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-top: 0.75rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.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-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,151,42,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

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

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.card p { color: var(--gray-600); font-size: 0.95rem; }

/* ============================================================
   Navigation
   ============================================================ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow 0.3s;
}

#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
}

.logo-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.logo-img--footer {
  height: 48px;
  border-radius: 8px;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }

.nav-link.contact-btn {
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  margin-left: 0.5rem;
}
.nav-link.contact-btn::after { display: none; }
.nav-link.contact-btn:hover { background: var(--gold-light); }
.nav-link.contact-btn.active { background: var(--gold-light); }

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

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 1.5rem 3rem;
}

.footer-logo { display: flex; align-items: center; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

footer ul li { margin-bottom: 0.6rem; }
footer ul a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
footer ul a:hover { color: var(--gold); }

footer p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; }
footer p a { transition: color var(--transition); }
footer p a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }

/* ============================================================
   Section Fade-in Animation
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Staggered children */
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,151,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(37,58,98,0.5) 0%, transparent 50%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,151,42,0.15);
  border: 1px solid rgba(200,151,42,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-family: var(--font-serif);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Value Prop Strip */
.value-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.value-strip .grid-3 { max-width: 900px; margin: 0 auto; }

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 1rem;
}

.value-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.value-item h4 { margin-bottom: 0.35rem; color: var(--navy); }
.value-item p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

/* Services Teaser */
.service-teaser-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-teaser-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.service-teaser-card .card-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.service-teaser-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-teaser-card p { font-size: 0.9rem; color: var(--gray-600); flex: 1; }

.service-teaser-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.service-teaser-card a:hover { gap: 0.6rem; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,151,42,0.12) 0%, transparent 70%);
}

.cta-banner-inner { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 0 4rem;
  text-align: center;
}

.services-hero h1 { color: var(--white); font-family: var(--font-serif); }
.services-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; margin: 1rem auto 0; }

.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.service-full-card:hover { box-shadow: var(--shadow-md); }

.service-full-card .card-icon { width: 64px; height: 64px; font-size: 1.75rem; border-radius: 14px; }
.service-full-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-full-card > p { color: var(--gray-600); margin-bottom: 1.5rem; }

.service-deliverables {
  list-style: none;
  border-top: 1px solid var(--gray-200);
  padding-top: 1.25rem;
}

.service-deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--body-text);
  margin-bottom: 0.6rem;
}

.service-deliverables li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Process Section */
.process-section { background: var(--navy); padding: 5rem 0; }
.process-section .section-header { color: var(--white); }
.process-section .section-header h2 { color: var(--white); }
.process-section .section-header p { color: rgba(255,255,255,0.6); }
.process-section .section-eyebrow { color: var(--gold); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(200,151,42,0.3));
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.process-step h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin: 0; }

/* ============================================================
   COMPANY PAGE
   ============================================================ */
.company-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 0 4rem;
  text-align: center;
}
.company-hero h1 { color: var(--white); font-family: var(--font-serif); }
.company-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; margin: 1rem auto 0; }

.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--gray-600); margin-bottom: 1rem; }
.about-text p:last-of-type { margin-bottom: 1.5rem; }

.about-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.about-stat .stat-value { font-size: 2rem; color: var(--gold); font-weight: 700; }
.about-stat .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.3rem; }

.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.mvv-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mvv-card h3 { margin-bottom: 0.75rem; }
.mvv-card p { color: var(--gray-600); font-size: 0.95rem; }

.why-list {
  list-style: none;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.why-item:hover { box-shadow: var(--shadow-md); }

.why-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.why-item h4 { margin-bottom: 0.35rem; }
.why-item p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 0 4rem;
  text-align: center;
}
.contact-hero h1 { color: var(--white); font-family: var(--font-serif); }
.contact-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; margin: 1rem auto 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-card h4 { margin-bottom: 0.3rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-600); }
.contact-info-card p { margin: 0; font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-info-card a { color: var(--gold); }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form-card h3 { margin-bottom: 0.5rem; }
.contact-form-card > p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 2rem; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--body-text);
  background: var(--gray-100);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,151,42,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
  background: #fff5f5;
}

.form-group .error-msg {
  font-size: 0.78rem;
  color: #e53e3e;
  display: none;
}

.form-group .error-msg.show { display: block; }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select { appearance: none; cursor: pointer; }

.form-submit {
  margin-top: 1.75rem;
  width: 100%;
}

.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 { margin-bottom: 0.75rem; }
.form-success p { color: var(--gray-600); }

/* Map placeholder */
.map-placeholder {
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(var(--gray-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
  background-size: 40px 40px;
  background-color: var(--gray-100);
}

.map-pin {
  position: relative;
  z-index: 1;
  text-align: center;
}

.map-pin-icon {
  font-size: 2.5rem;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.map-pin p { font-size: 0.85rem; color: var(--navy); font-weight: 600; margin-top: 0.5rem; }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 0 4rem;
  text-align: center;
}
.privacy-hero h1 { color: var(--white); font-family: var(--font-serif); }
.privacy-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; margin: 1rem auto 0; }

.privacy-content {
  max-width: 820px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--navy);
}

.privacy-content h2:first-child { margin-top: 0; }

.privacy-content p,
.privacy-content li {
  color: var(--gray-600);
  font-size: 0.97rem;
  line-height: 1.75;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-content ul li { margin-bottom: 0.4rem; }

.privacy-content a { color: var(--navy-light); text-decoration: underline; }
.privacy-content a:hover { color: var(--gold); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-col:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .hamburger { display: flex; }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { max-height: 400px; }

  .nav-link {
    padding: 0.9rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-link::after { display: none; }

  .nav-link.contact-btn {
    margin: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
  }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .hero { min-height: auto; padding: 4rem 0; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 140px; }

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

  .contact-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer-col:first-child { grid-column: auto; }

  .about-visual { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .logo-name { display: none; }

  .hero-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: 1fr; }
  .stat-card { min-width: unset; }
}
