@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2540;
  --accent: #e8600a;
  --accent-light: #ff8533;
  --gold: #f0a500;
  --bg: #f7f5f0;
  --bg-white: #ffffff;
  --text: #1c1c1c;
  --text-muted: #6b7280;
  --border: #e5e2db;
  --success: #16a34a;
  --shadow: 0 4px 24px rgba(26, 58, 92, 0.12);
  --shadow-lg: 0 12px 48px rgba(26, 58, 92, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

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

img { max-width: 100%; }

/* ---- NAVBAR ---- */
nav {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: white;
  font-size: 18px;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.logo-text { color: white; }
.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.12);
}

.nav-links .btn-nav {
  background: var(--accent);
  color: white !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-links .btn-nav:hover { background: var(--accent-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-blob {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,96,10,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,96,10,0.15);
  border: 1px solid rgba(232,96,10,0.3);
  color: #ffaa6e;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-badge::before {
  content: '★';
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: white;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero h1 span { color: var(--accent-light); }

.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(232,96,10,0.35);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,96,10,0.45);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-number span { color: var(--accent-light); }
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 380px;
}

.hero-card h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.course-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
}
.course-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
}

.mkcl-badge-card {
  margin-top: 20px;
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f0c050;
  font-size: 13px;
  font-weight: 500;
}

/* ---- SECTIONS ---- */
section { padding: 80px 0; }

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

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.tag {
  display: inline-block;
  background: rgba(232,96,10,0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
}

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(26,58,92,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ---- COURSES ---- */
.courses-bg { background: white; }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.course-card {
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
  background: white;
}

.course-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.course-card-header {
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, var(--primary), #1e4d7b);
  position: relative;
}

.course-card-header.klic {
  background: linear-gradient(135deg, #1a4a2e, #2d7a4f);
}

.course-type-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.course-card-header h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.course-card-header p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 300;
}

.course-card-body { padding: 24px 28px 28px; }

.course-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.course-features {
  list-style: none;
  margin-bottom: 24px;
}

.course-features li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.course-features li:last-child { border-bottom: none; }
.course-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 8px;
}

/* ---- TESTIMONIALS ---- */
.testimonials-bg { background: var(--primary); }

.testimonials-bg .section-header h2 { color: white; }
.testimonials-bg .tag {
  background: rgba(232,96,10,0.2);
  color: var(--accent-light);
}
.testimonials-bg .section-header p { color: rgba(255,255,255,0.6); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }

.testi-text {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 300;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  background: var(--accent);
  color: white;
  flex-shrink: 0;
}

.testi-name {
  color: white;
  font-weight: 600;
  font-size: 14px;
}
.testi-course {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

/* ---- CTA ---- */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #c45000 100%);
  text-align: center;
  padding: 70px 24px;
}

.cta-section h2 {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 32px;
  font-weight: 300;
}

.btn-white {
  background: white;
  color: var(--accent);
  font-weight: 700;
}
.btn-white:hover { background: #fff8f5; transform: translateY(-2px); }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,58,92,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 3px;
}
.contact-detail span {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---- FORM ---- */
.form-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.08);
}

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

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

.btn-full { width: 100%; justify-content: center; }

/* ---- ABOUT PAGE ---- */
.about-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.about-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.about-hero p { color: rgba(255,255,255,0.7); font-size: 17px; font-weight: 300; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, #1e4d7b 100%);
  border-radius: 20px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: white;
  text-align: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='10'/%3E%3C/g%3E%3C/svg%3E");
}

.about-img-placeholder .big-icon {
  font-size: 64px;
  position: relative;
}
.about-img-placeholder h3 {
  font-size: 1.3rem;
  position: relative;
}
.about-img-placeholder p {
  font-size: 14px;
  opacity: 0.7;
  position: relative;
  font-weight: 300;
}

.about-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
}

.milestones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.milestone {
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border);
}

.milestone .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.milestone .lbl {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.team-avatar {
  height: 140px;
  background: linear-gradient(135deg, var(--primary), #1e4d7b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.team-info { padding: 24px; }

.team-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-info p { font-size: 13px; color: var(--text-muted); }

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.f-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 500;
}

.footer-col h4 {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom a { color: var(--accent-light); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 64px 0;
  text-align: center;
}

.page-hero h1 { color: white; font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 16px; font-weight: 300; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb strong { color: rgba(255,255,255,0.8); }

/* ---- KLiC SECTORS ---- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sector-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
}

.sector-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.sector-icon { font-size: 32px; margin-bottom: 12px; }

.sector-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* ---- ALERT ---- */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}
.alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.alert-hidden { display: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 72px 0 0; background: var(--primary-dark); flex-direction: column; align-items: flex-start; padding: 24px; gap: 4px; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .milestones { grid-template-columns: 1fr; }
}
