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

:root {
  --navy: #0a1f3f;
  --navy-light: #132d54;
  --navy-dark: #061429;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-dark: #b8860b;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --gray-100: #f7f7f5;
  --gray-200: #e8e8e4;
  --gray-300: #d1d1cc;
  --gray-500: #6b6b66;
  --gray-700: #3a3a36;
  --gray-900: #1a1a18;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(10, 31, 63, 0.08);
  --shadow-md: 0 8px 30px rgba(10, 31, 63, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 31, 63, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ── Geometric Background Shapes ── */
.geo-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
  background: var(--navy);
}

.geo-circle--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
}

.geo-circle--2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: -100px;
  background: var(--gold);
}

.geo-square {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--gold);
  opacity: 0.02;
  top: 40%;
  right: 5%;
  transform: rotate(45deg);
}

.geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid var(--navy);
  opacity: 0.02;
  top: 60%;
  left: 3%;
  transform: rotate(-15deg);
}

.geo-diamond {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--gold);
  opacity: 0.025;
  bottom: 30%;
  right: 10%;
  transform: rotate(45deg);
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 31, 63, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo__mark {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transform: rotate(-3deg);
  transition: var(--transition);
}

.logo:hover .logo__mark {
  transform: rotate(0deg) scale(1.05);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__line1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo__line2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo--light .logo__line1 { color: var(--white); }
.logo--light .logo__line2 { color: var(--gold); }

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav__link--cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

/* Nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 20, 41, 0.92) 0%,
    rgba(10, 31, 63, 0.85) 40%,
    rgba(19, 45, 84, 0.7) 70%,
    rgba(10, 31, 63, 0.6) 100%
  );
}

.hero__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.geo-accent {
  position: absolute;
}

.geo-accent--gold {
  width: 300px;
  height: 300px;
  background: var(--gold);
  opacity: 0.08;
  border-radius: 50%;
  top: 10%;
  right: -50px;
}

.geo-accent--navy {
  width: 200px;
  height: 200px;
  background: var(--navy-light);
  opacity: 0.3;
  border-radius: var(--radius-lg);
  bottom: 15%;
  right: 15%;
  transform: rotate(30deg);
}

.geo-accent--stripe {
  width: 4px;
  height: 200px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.4;
  bottom: 20%;
  left: 8%;
  transform: rotate(15deg);
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 120px 0 80px;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

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

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

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title--accent {
  color: var(--gold);
  display: block;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.45);
}

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

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

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

/* Hero trust */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero__trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.hero__scroll span {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Section shared ── */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 160, 23, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-title--accent {
  color: var(--gold-dark);
}

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

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

.section-header .section-subtitle {
  margin: 0 auto;
}

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

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

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

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

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

.service-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  transform: rotate(-5deg) scale(1.05);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.service-card__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  transform: scaleX(0);
  transition: var(--transition);
}

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

.services__stripe {
  height: 8px;
  background: linear-gradient(90deg,
    var(--navy) 0%,
    var(--navy) 20%,
    var(--gold) 50%,
    var(--navy) 80%,
    var(--navy) 100%
  );
}

/* ── Why ── */
.why {
  position: relative;
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

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

.why__image-wrap {
  position: relative;
}

.why__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.why__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition);
}

.why__image:hover img {
  transform: scale(1.03);
}

.why__floating-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 3px solid var(--gold);
}

.why__floating-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.why__floating-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.why__content {
  position: relative;
  z-index: 2;
}

.why__points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

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

.why__point-mark {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-top: 2px;
}

.why__point-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.why__point-text {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.why__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo-orbit {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212, 160, 23, 0.08);
}

.geo-orbit--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -150px;
}

.geo-orbit--2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -80px;
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.about__card {
  position: relative;
  z-index: 2;
}

.about__geos {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about__geo-shape {
  position: absolute;
}

.about__geo-shape--1 {
  width: 200px;
  height: 200px;
  background: var(--gold);
  opacity: 0.05;
  border-radius: var(--radius-xl);
  top: -40px;
  right: 5%;
  transform: rotate(20deg);
}

.about__geo-shape--2 {
  width: 120px;
  height: 120px;
  background: var(--white);
  opacity: 0.03;
  border-radius: 50%;
  bottom: 10%;
  left: 8%;
}

.about__geo-line {
  position: absolute;
  width: 1px;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.2;
  top: 10%;
  left: 15%;
}

.about__content {
  max-width: 700px;
}

.about .section-tag {
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold);
}

.about .section-title {
  color: var(--white);
}

.about .section-title--accent {
  color: var(--gold);
}

.about__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ── Contact ── */
.contact {
  padding: 100px 0 0;
  background: var(--gray-100);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 0;
}

.contact__info .section-title {
  margin-bottom: 16px;
}

.contact__text {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact__detail-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact__detail-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.contact__detail-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

.contact__link:hover {
  color: var(--gold-dark);
}

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-300);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-sm);
  color: #16a34a;
  font-weight: 500;
  font-size: 0.9rem;
}

.form__success svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* Map */
.contact__map {
  margin-top: 0;
  border-top: 4px solid var(--gold);
}

.contact__map iframe {
  width: 100%;
  height: 320px;
  filter: saturate(0.7) contrast(1.1);
}

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
  position: relative;
  z-index: 2;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy-light), var(--gold));
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

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

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__phone,
.footer__email {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.footer__phone:hover,
.footer__email:hover {
  color: var(--gold);
}

.footer__address {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
}

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

/* ── Scroll Animations ── */
.geo-reveal {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__layout {
    gap: 48px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__list {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav__list.open {
    transform: translateX(0);
  }

  .nav__link {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
  }

  .hero__content {
    padding: 100px 0 60px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .hero__trust {
    gap: 20px;
  }

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

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

  .why__floating-card {
    right: 16px;
    bottom: -16px;
  }

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

  .contact__form-wrap {
    padding: 28px;
  }

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

  .about__stats {
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 28px 22px;
  }
}
