:root {
  /* Visual System Colors */
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1B3461;
  --blue-accent: #2563EB;
  --blue-bright: #3B82F6;
  --gold: #C9A84C;
  --gold-light: #E2C06D;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --text: #1A202C;
  
  --grey-100: #EEF0F5;
  --grey-300: #C4C9D8;
  --grey-500: #8891A8;
  --grey-700: #4A5568;
  --border: rgba(196, 201, 216, 0.3);
  --shadow: 0 4px 32px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.18);
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Utilities */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-accent);
  background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2);
  padding: 5px 14px; border-radius: 99px; margin-bottom: 20px;
}
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-accent); }

h1, h2, h3, h4, .font-heading { font-family: var(--font-heading); }

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700; line-height: 1.15;
  color: var(--navy); margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--grey-500);
  line-height: 1.7; max-width: 560px;
}

/* Buttons and Links */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700; letter-spacing: .03em;
  padding: 14px 28px; border-radius: 6px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.btn-primary { background: var(--blue-accent); color: white; }
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.35); }
.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: var(--gold); }

/* Navigation */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; transition: all .3s ease;
}
nav.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); /* Glassmorphism */
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700;
  color: white; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}
.logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--blue-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: white; letter-spacing: -1px;
}
.logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,0.75); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-light); }

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

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37,99,235,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%);
}
.hero-grid {
  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;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1140px; margin: 0 auto; padding: 80px 24px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--gold);
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 800; line-height: 1.08;
  color: white; margin-bottom: 24px; letter-spacing: -1px;
}
.hero h1 em {
  font-style: normal; color: var(--gold-light); display: block;
}
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 40px; max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 12px 16px; margin-top: 40px;
}
.hero-badge-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.hero-badge-text { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.hero-badge-text strong { color: white; font-size: 13px; display: block; }

/* Visual Hero Elements */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.05); /* Glassmorphism */
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 32px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.metric-row { display: flex; gap: 16px; margin-bottom: 20px; }
.metric {
  flex: 1; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 16px; text-align: center;
}
.metric-num {
  font-family: var(--font-heading);
  font-size: 28px; font-weight: 700; color: white;
  line-height: 1; margin-bottom: 4px;
}
.metric-num span { color: var(--gold-light); }
.metric-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: .08em; }

.service-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.service-pill {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8);
  background: rgba(37,99,235,0.2); border: 1px solid rgba(37,99,235,0.3);
  padding: 6px 14px; border-radius: 99px;
}
.location-bar {
  display: flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px; padding: 12px 16px;
}
.location-bar svg { flex-shrink: 0; }
.location-bar-text { font-size: 12px; color: var(--gold-light); font-weight: 600; }
.location-bar-sub { font-size: 11px; color: rgba(201,168,76,0.6); }

/* Float Card Highlight */
.float-card {
  position: absolute; right: -20px; bottom: -20px;
  background: var(--blue-accent); border-radius: 12px;
  padding: 16px 20px; min-width: 180px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.4);
}
.float-card-label { font-size: 11px; color: rgba(255,255,255,0.7); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
.float-card-val { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: white; }

/* Trust Bar */
.trust-bar {
  background: var(--grey-100);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--navy-mid);
}
.trust-item svg { color: var(--blue-accent); }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.service-card {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 40px; background: white;
  transition: all .25s cubic-bezier(0.2, 0.8, 0.2, 1); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: var(--navy-mid); border-color: var(--navy-mid); }
.service-card.featured .service-title { color: white; }
.service-card.featured .service-desc { color: rgba(255,255,255,0.6); }
.service-card.featured .service-list li { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.1); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(37,99,235,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.service-card.featured .service-icon { background: rgba(255,255,255,0.1); }
.service-title {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
}
.service-desc { font-size: 14px; color: var(--grey-700); line-height: 1.65; margin-bottom: 18px; }
.service-list { list-style: none; }
.service-list li {
  font-size: 13px; color: var(--grey-700);
  padding: 5px 0; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '→'; color: var(--blue-accent); font-size: 11px; font-weight: bold; }
.service-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 3px 10px; border-radius: 99px; margin-bottom: 12px;
}

/* Why Us Section */
.why-section { background: var(--navy); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content .section-title { color: white; }
.why-content .section-sub { color: rgba(255,255,255,0.65); }
.why-list { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-num {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(37,99,235,0.25); border: 1px solid rgba(37,99,235,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700; color: var(--blue-bright);
}
.why-text-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; font-family: var(--font-heading); }
.why-text-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 24px;
}
.why-stat-num {
  font-family: var(--font-heading);
  font-size: 36px; font-weight: 700; color: white; line-height: 1;
  margin-bottom: 6px;
}
.why-stat-num span { color: var(--gold-light); }
.why-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; font-weight: 600; }
.why-stat.accent { background: var(--blue-accent); border-color: transparent; }
.why-stat.accent .why-stat-num { color: white; }
.why-stat.accent .why-stat-label { color: rgba(255,255,255,0.9); }

/* Process */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 32px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-accent), var(--blue-accent), transparent);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.process-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: white; border: 2px solid var(--blue-accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700; color: var(--blue-accent);
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px rgba(37,99,235,0.1);
}
.process-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-family: var(--font-heading); }
.process-desc { font-size: 13px; color: var(--grey-700); line-height: 1.6; }

/* Testimonials */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.testi-card {
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px;
  transition: box-shadow .3s;
}
.testi-card:hover { box-shadow: var(--shadow); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: var(--gold); font-size: 16px; }
.testi-text { font-size: 14px; color: var(--grey-700); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: white; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy); font-family: var(--font-heading); }
.testi-role { font-size: 12px; color: var(--grey-500); }

/* Audit Form CTA */
.audit-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.audit-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(37,99,235,0.2) 0%, transparent 60%);
}
.audit-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.audit-title {
  font-size: clamp(28px,4vw,42px);
  font-weight: 700; color: white; line-height: 1.2; margin-bottom: 16px;
}
.audit-title span { color: var(--gold-light); }
.audit-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px; }
.audit-items { display: flex; flex-direction: column; gap: 14px; }
.audit-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.9); font-weight: 500;
}
.audit-item::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(37,99,235,0.3); border: 1px solid rgba(37,99,235,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--blue-bright); flex-shrink: 0; font-weight: bold;
}
.audit-form {
  background: rgba(255,255,255,0.05); /* Glassmorphism */
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 36px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.form-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 6px; font-family: var(--font-heading); }
.form-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); display: block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; color: white; font-family: var(--font-body);
  font-size: 14px; outline: none; transition: border-color .2s;
  -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-accent); background: rgba(255,255,255,0.1); }
.form-group select option { background: var(--navy-mid); color: white; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--blue-accent); color: white;
  border: none; border-radius: 8px; font-family: var(--font-body);
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all .25s; margin-top: 8px;
}
.form-submit:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); border: 1px solid var(--blue-bright); }

/* Locations */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.loc-card {
  border: 1.5px solid var(--border); border-radius: 14px; padding: 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all .25s cubic-bezier(0.2, 0.8, 0.2, 1); background: white;
}
.loc-card:hover { border-color: var(--blue-accent); box-shadow: var(--shadow); }
.loc-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.loc-icon.india { background: rgba(37,99,235,0.1); }
.loc-icon.malappuram { background: rgba(37,99,235,0.1); color: var(--blue-accent); }
.loc-name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; font-family: var(--font-heading); }
.loc-address { font-size: 13px; color: var(--grey-700); line-height: 1.6; margin-bottom: 10px; }
.loc-status {
  display: inline-block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 10px; border-radius: 99px;
}
.loc-status.active { background: rgba(37,99,235,0.1); color: var(--blue-accent); }
.loc-status.coming { background: rgba(201,168,76,0.12); color: var(--navy-mid); }

/* Footer */
footer { background: var(--navy-mid); padding: 64px 0 32px; border-top: 3px solid var(--gold); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold); margin-bottom: 16px; font-family: var(--font-heading);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.8); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact-item strong { color: white; display:block; margin-bottom: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.8);
  text-decoration: none; transition: all .2s; font-weight: 700;
}
.social-btn:hover { background: var(--blue-accent); border-color: var(--blue-accent); color: white; }

/* Whatsapp Float */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform .2s;
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.75); }
}
.wa-float svg { width: 28px; height: 28px; }

/* Animations */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .audit-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
}
