/* ============================================
   PAFUMI'S STATE INSPECTION — CUSTOM STYLES
   Colors: Midnight Blue (#0A2E5C) + Mint (#2DD4BF)
   Fonts: Space Grotesk + Inter
   ============================================ */

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

:root {
  --midnight: #0A2E5C;
  --midnight-dark: #061D3A;
  --midnight-light: #113A6E;
  --mint: #2DD4BF;
  --mint-light: #5EEAD4;
  --mint-dark: #14B8A6;
  --white: #FFFFFF;
  --off-white: #F0FDFA;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(10, 46, 92, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 46, 92, 0.1);
  --shadow-lg: 0 12px 40px rgba(10, 46, 92, 0.15);
  --shadow-xl: 0 20px 60px rgba(10, 46, 92, 0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--midnight);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

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

.text-mint {
  color: var(--mint);
}

/* ── Section Shared ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mint-dark);
  margin-bottom: 16px;
}

.label-line {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--mint);
  border-radius: 2px;
  flex-shrink: 0;
}

.label-line-light {
  background: var(--mint-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--mint);
  color: var(--midnight);
  box-shadow: 0 4px 16px rgba(45, 212, 191, 0.35);
}

.btn-primary:hover {
  background: var(--mint-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 212, 191, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--midnight);
  border: 2px solid rgba(10, 46, 92, 0.2);
}

.btn-outline-light:hover {
  border-color: var(--mint);
  color: var(--mint-dark);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 46, 92, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 212, 191, 0.15);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 46, 92, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-light .logo-text {
  color: var(--white);
}

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

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--mint);
  color: var(--midnight) !important;
  font-weight: 600;
  margin-left: 8px;
  border-radius: var(--radius-md);
  padding: 10px 20px;
}

.nav-cta:hover {
  background: var(--mint-light);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--midnight);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.geo-1 {
  width: 600px;
  height: 600px;
  background: var(--mint);
  top: -200px;
  right: -100px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite;
}

.geo-2 {
  width: 400px;
  height: 400px;
  background: var(--mint-light);
  bottom: -100px;
  left: -100px;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  animation: morph 10s ease-in-out infinite reverse;
}

.geo-3 {
  width: 200px;
  height: 200px;
  background: var(--mint);
  top: 30%;
  left: 45%;
  border-radius: 50%;
  opacity: 0.05;
}

.geo-4 {
  width: 120px;
  height: 120px;
  background: var(--mint-light);
  top: 20%;
  left: 15%;
  border-radius: 50%;
  opacity: 0.06;
}

.geo-5 {
  width: 80px;
  height: 80px;
  background: var(--white);
  bottom: 25%;
  right: 35%;
  border-radius: 50%;
  opacity: 0.04;
}

@keyframes morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.hero {
  position: relative;
}

.hero-content {
  flex: 1;
  padding: 60px 0 60px 60px;
  max-width: 640px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.25);
  color: var(--mint-light);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-image {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  margin-right: 60px;
}

.hero-image img {
  width: 560px;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.hero-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--mint);
  border-radius: var(--radius-xl);
  z-index: 0;
  opacity: 0.4;
}

/* ── SERVICES ── */
.services {
  position: relative;
  padding: 120px 0;
  background: var(--gray-50);
  overflow: hidden;
}

.services .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.services .section-sub {
  margin: 0 auto 60px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(45, 212, 191, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-dark);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--mint);
  color: var(--midnight);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--midnight);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-tag {
  display: inline-block;
  background: rgba(45, 212, 191, 0.12);
  color: var(--mint-dark);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.services-geo {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.05;
}

/* ── ABOUT ── */
.about {
  position: relative;
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--white);
}

.about-img-float img {
  width: 280px;
  height: 200px;
  object-fit: cover;
}

.float-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--midnight);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.float-badge-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--mint);
}

.float-badge-label {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
}

.about-geo-accent {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.about-content .section-title {
  margin-top: 8px;
}

.about-body {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--midnight);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  background: var(--gray-200);
  align-self: stretch;
}

.about-geo {
  position: absolute;
  top: 60px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.04;
}

/* ── WHY US ── */
.why-us {
  position: relative;
  padding: 120px 0;
  background: var(--midnight);
  overflow: hidden;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-us-content .section-label {
  color: var(--mint-light);
}

.title-light {
  color: var(--white) !important;
}

.reasons {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.reason {
  display: flex;
  gap: 24px;
  align-items: start;
}

.reason-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--mint);
  line-height: 1;
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.reason h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}

.reason p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.why-us-visual {
  position: relative;
  padding-top: 40px;
}

.visual-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.visual-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.visual-card-alt {
  position: absolute;
  bottom: -30px;
  left: -30px;
  z-index: 2;
}

.visual-card-alt img {
  height: 260px;
}

.visual-quote {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--mint);
  color: var(--midnight);
  padding: 24px;
  border-radius: var(--radius-lg);
  max-width: 260px;
  z-index: 3;
  box-shadow: var(--shadow-lg);
}

.visual-quote blockquote {
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.6;
  margin-top: 8px;
}

.visual-quote p {
  margin: 0;
}

.why-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.geo-8 {
  width: 400px;
  height: 400px;
  background: var(--mint-light);
  top: -100px;
  right: -100px;
}

.geo-9 {
  width: 200px;
  height: 200px;
  background: var(--mint);
  bottom: -50px;
  left: 30%;
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: var(--mint);
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-geo {
  position: absolute;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.12;
}

.cta-geo-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -80px;
}

.cta-geo-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: 10%;
}

.cta-geo-3 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 30%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--midnight);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-text p {
  font-size: 1.05rem;
  color: rgba(10, 46, 92, 0.7);
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact {
  position: relative;
  padding: 120px 0;
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title {
  margin-top: 8px;
}

.contact-sub {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 100%;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

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

.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(45, 212, 191, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-dark);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: var(--midnight);
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--mint-dark);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ── CONTACT FORM ── */
.contact-form-wrap {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.form-decor-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--midnight), var(--mint), var(--midnight));
}

.form-decor-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.06;
  transform: translate(30%, 30%);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: var(--midnight);
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.form-group label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  margin: 0 auto 16px;
  width: 80px;
  height: 80px;
  background: rgba(45, 212, 191, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h4 {
  font-size: 1.4rem;
  color: var(--midnight);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── FOOTER ── */
.footer {
  position: relative;
  background: var(--midnight-dark);
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--mint);
  padding-left: 6px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

.footer-geo {
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.04;
}

/* ── SCROLL ANIMATIONS ── */
[data-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content {
    padding: 40px 0 40px 40px;
  }

  .hero-image {
    margin-right: 40px;
  }

  .hero-image img {
    width: 440px;
    height: 480px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 60px;
  }

  .why-us-inner {
    gap: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 0 24px 40px;
    text-align: center;
    max-width: 100%;
  }

  .hero-headline {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image {
    margin: 0 24px 0;
    margin-right: 24px;
  }

  .hero-image img {
    width: 100%;
    max-width: 480px;
    height: 400px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    max-width: 520px;
    margin: 0 auto;
  }

  .why-us-inner {
    grid-template-columns: 1fr;
  }

  .why-us-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--midnight-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav.open {
    right: 0;
  }

  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    justify-content: center;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

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

  .about-img-float {
    right: -10px;
    bottom: -20px;
  }

  .about-img-float img {
    width: 200px;
    height: 150px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .visual-card-alt {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 16px;
  }

  .visual-quote {
    position: relative;
    right: 0;
    top: 0;
    margin-top: 16px;
    max-width: 100%;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-image {
    margin: 0 16px;
  }

  .hero-image img {
    height: 300px;
  }

  .hero-image-accent {
    display: none;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav-overlay.show {
  display: block;
}
