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

:root {
  --navy: #1a2744;
  --navy-light: #223060;
  --navy-deep: #111d36;
  --gold: #c8a96e;
  --gold-light: #dfc08a;
  --white: #ffffff;
  --off-white: #f4f4f2;
  --text-muted: #8a9bbf;
  --border: rgba(200, 169, 110, 0.2);
  --radius: 12px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 3.6vw, 3.4rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; text-wrap: balance; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

.gold { color: var(--gold); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== LOGO ===== */
.logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo .logo-line {
  color: var(--gold);
  letter-spacing: -0.02em;
}
.footer .logo { font-size: 1rem; }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.hero-anim-1 { animation-delay: 0.1s; }
.hero-anim-2 { animation-delay: 0.35s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 160px 24px 120px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  width: 100%;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 5rem);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .hero h1 { white-space: normal; font-size: clamp(1.8rem, 7vw, 2.6rem); }
}
.hero-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin: 0 auto 32px;
  max-width: 460px;
  position: relative;
  z-index: 5;
  padding-top: 20px;
  border-top: 1px solid rgba(200,169,110,0.25);
  justify-content: center;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stat-val {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  line-height: 1.4;
  max-width: 110px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; justify-content: center; }


/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.35);
}
.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-large { padding: 18px 40px; font-size: 1.05rem; }

/* ===== POSITIONING BAR ===== */
.positioning-bar {
  background: var(--navy);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.pos-item {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 32px;
}
.pos-icon { font-size: 1rem; }
.pos-divider {
  width: 1px;
  height: 24px;
  background: rgba(200,169,110,0.3);
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-dark {
  background: var(--navy-deep);
  color: var(--white);
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.light h2 { color: var(--white); }
.section-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section-sub {
  color: #666;
  margin-top: 12px;
  font-size: 1.05rem;
}
.section-dark .section-sub { color: var(--text-muted); }

/* ===== TRAINING FLOW ===== */
.training-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 48px 0 56px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px;
  flex-wrap: wrap;
}
.tflow-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1;
  min-width: 200px;
}
.tflow-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tflow-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tflow-text strong {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
}
.tflow-text span {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.5;
}
.tflow-arrow {
  color: var(--gold);
  opacity: 0.4;
  font-size: 1.2rem;
  padding: 8px 16px;
  align-self: center;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .training-flow {
    flex-direction: column;
    padding: 24px 20px;
    gap: 0;
  }
  .tflow-step {
    min-width: unset;
    width: 100%;
  }
  .tflow-arrow {
    display: none;
  }
}

.topics-header {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.topics-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.topics-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* ===== USE CASES ===== */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.usecase-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.usecase-icon {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}
.usecase-card h3 { color: var(--navy); margin-bottom: 8px; }
.usecase-card p { color: #555; font-size: 0.9rem; line-height: 1.65; }

/* ===== FOR WHOM ===== */
.problems-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
.problem-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
}
.problem-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.problem-x {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== PROBLEMS DARK ===== */
.problems-dark-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.problem-dark-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: background var(--transition);
}
.problem-dark-card:hover { background: rgba(255,255,255,0.07); }
.pdark-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 10px;
}
.problem-dark-card h3 { color: white; margin-bottom: 8px; font-size: 1.05rem; }
.problem-dark-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.problem-dark-highlight {
  border-color: rgba(200,169,110,0.3);
  background: rgba(200,169,110,0.06);
}
.problem-dark-highlight h3 { color: var(--gold-light); }
.problem-dark-highlight p { color: rgba(255,255,255,0.6); }

/* ===== CTA OBJECTIONS ===== */
.cta-objections {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-objections span {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ===== SERVICES ===== */
.section-light-alt { background: white; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.service-card-highlight {
  background: var(--navy-deep);
  border-color: var(--border);
}
.service-card-highlight h3 { color: var(--gold); }
.service-card-highlight p { color: rgba(255,255,255,0.7); }
.service-card-highlight .service-list li { color: rgba(255,255,255,0.6); }
.service-card-highlight .service-list li::before { color: var(--gold); }
.service-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 10px;
}
.service-card-highlight .service-num { opacity: 0.35; }
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p { color: #555; font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-list li {
  font-size: 0.85rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '✕';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===== PROBLEMS ===== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.problem-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.problem-icon { font-size: 1.8rem; margin-bottom: 14px; }
.problem-card h3 { margin-bottom: 8px; color: var(--navy); }
.problem-card p { color: #555; font-size: 0.92rem; line-height: 1.6; }
.highlight-card {
  background: var(--navy);
  border-color: var(--navy);
}
.highlight-card h3, .highlight-card p { color: white; }
.highlight-card p { color: rgba(255,255,255,0.75); }

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.benefit-item { text-align: center; padding: 24px; }
.benefit-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.benefit-item h3 { color: white; margin-bottom: 10px; }
.benefit-item p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ===== PROCESS ===== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 24px;
  align-items: stretch;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.process-step.visible { opacity: 1; transform: translateY(0); }
.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-line {
  flex: 1;
  width: 0;
  min-height: 24px;
  border-left: 2px dashed var(--gold);
  opacity: 0.35;
  margin-top: 6px;
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex: 1;
  margin-bottom: 0;
}
.step-body h3 { color: var(--navy); margin-bottom: 6px; }
.step-body p { color: #555; font-size: 0.92rem; line-height: 1.6; }

/* ===== ABOUT ===== */
.about-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}
.about-photo-col {
  flex-shrink: 0;
}
.about-photo {
  width: 100%;
  border-radius: 12px;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text .section-label { display: block; margin-bottom: 12px; }
.about-text h2 { color: white; margin-bottom: 24px; }
.about-desc { color: rgba(255,255,255,0.7); font-size: 1.02rem; line-height: 1.7; margin-bottom: 28px; }
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
  line-height: 1.5;
}
.about-list li strong { color: var(--gold); }
.check {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-philosophy {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.about-projects {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 12px 32px;
  flex-wrap: wrap;
}
.about-projects-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.about-projects-label {
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.about-projects a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
  opacity: 0.75;
}
.about-projects a em {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  font-style: normal;
}
.about-projects a:hover { opacity: 1; color: var(--gold-light); }
.about-projects a:hover em { color: rgba(200,169,110,0.6); }
.about-x {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  font-style: normal;
  flex-shrink: 0;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: background var(--transition);
}
.about-card:hover { background: rgba(200,169,110,0.08); }
.about-card-icon { font-size: 1.5rem; margin-bottom: 10px; }
.about-card h4 { color: white; margin-bottom: 6px; }
.about-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 48px;
  box-sizing: border-box;
}
.testimonial-text {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
}
.testimonial-author span {
  color: #888;
  font-size: 0.82rem;
  font-weight: 600;
}
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.testimonial-btn {
  background: white;
  border: 1px solid var(--border);
  color: var(--navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-btn:hover {
  background: rgba(255,255,255,0.12);
  color: var(--gold);
}
.testimonial-dots {
  display: flex;
  gap: 8px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background var(--transition);
}
.testimonial-dot.active {
  background: var(--gold);
}

/* ===== CTA ===== */
.cta-section { background: var(--off-white); }
.cta-box {
  background: var(--navy-deep);
  border-radius: 20px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-x-pattern {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 320px;
  height: 240px;
  opacity: 0.12;
}
.cta-content { position: relative; z-index: 2; }
.cta-box h2 { color: white; margin-bottom: 20px; }
.cta-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ===== CONTACT FORM ===== */
.contact-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}
.form-optional {
  font-weight: 400;
  color: rgba(255,255,255,0.35);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 13px 16px;
  color: white;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.contact-form .btn {
  align-self: flex-start;
  margin-top: 4px;
}
.field-error, .form-global-error {
  color: #e07070;
  font-size: 0.78rem;
  margin-top: 2px;
}
.form-global-error { margin-bottom: 12px; }
.contact-confirm {
  text-align: center;
  padding: 60px 20px;
}
.confirm-logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: white;
  margin-bottom: 28px;
}
.contact-confirm h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.contact-confirm p {
  color: var(--text-muted);
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form .btn { align-self: stretch; text-align: center; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-tagline { color: var(--text-muted); font-size: 0.88rem; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-link { color: rgba(255,255,255,0.4); text-decoration: none; transition: color var(--transition); }
.footer-link:hover { color: var(--gold); }
.footer-li { display: inline-flex; align-items: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding-top: 100px; }
  .hero-content { max-width: 100%; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-top { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 220px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-deep);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
    font-size: 1.2rem;
  }
  .burger { display: flex; z-index: 100; }
  .pos-divider { display: none; }
  .pos-item { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .cta-box { padding: 48px 24px; }
  .about-cards { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
}
