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

:root {
  --navy: #0a1628;
  --navy-light: #132240;
  --navy-mid: #1a2d50;
  --gold: #d4a843;
  --gold-light: #e8c472;
  --gold-pale: #f5e6c8;
  --cream: #faf6ee;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-light: #64748b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--navy);
}

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

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

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

/* ─── Geometric Background Shapes ─── */
.geo-shape {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
}

.geo-shape--circle {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--gold);
  top: -200px;
  right: -200px;
}

.geo-shape--triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 150px 260px 150px;
  border-color: transparent transparent var(--gold) transparent;
  bottom: 20%;
  left: -80px;
  opacity: 0.03;
}

.geo-shape--square {
  width: 300px;
  height: 300px;
  background: var(--navy);
  top: 40%;
  right: -100px;
  transform: rotate(45deg);
  opacity: 0.02;
}

.geo-shape--ring {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 60px solid var(--gold);
  top: 60%;
  left: -150px;
  opacity: 0.02;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  transition: var(--transition);
}

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

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

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

.logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

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

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

.nav__link {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--white);
  background: rgba(212, 168, 67, 0.12);
}

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

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

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__bar {
  display: block;
  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);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 168, 67, 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%;
}

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

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 168, 67, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(26, 45, 80, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero__headline--accent {
  color: var(--gold);
  position: relative;
}

.hero__headline--accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gold);
  opacity: 0.25;
  border-radius: 3px;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

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

/* ─── Stat Cards ─── */
.hero__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 440px;
}

.stat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 28px 24px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card--1 {
  background: linear-gradient(135deg, #1a3a6e 0%, #0d2240 100%);
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 340px;
}

.stat-card--2 {
  background: linear-gradient(135deg, var(--gold) 0%, #b8922e 100%);
  grid-column: 2;
  grid-row: 1;
}

.stat-card--3 {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
  grid-column: 2;
  grid-row: 2;
}

.stat-card--4 {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d50 100%);
  border: 1px solid rgba(212, 168, 67, 0.2);
  grid-column: 1;
  grid-row: 3;
  min-height: 140px;
}

.stat-card__content {
  position: relative;
  z-index: 1;
}

.stat-card__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card--1 .stat-card__number { color: var(--gold); }
.stat-card--2 .stat-card__number { color: var(--navy); }
.stat-card--3 .stat-card__number { color: var(--gold); }
.stat-card--4 .stat-card__number { color: var(--white); }

.stat-card__label {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

.stat-card--2 .stat-card__label { color: rgba(10, 22, 40, 0.7); }

.stat-card__bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: 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.4'%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 Wave ─── */
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ─── Section Shared ─── */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}

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

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

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

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

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

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

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

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(10, 22, 40, 0.06);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

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

.service-card--featured {
  background: var(--navy);
  border-color: transparent;
}

.service-card--featured::before {
  background: var(--gold);
  transform: scaleX(1);
}

.service-card--featured .service-card__title,
.service-card--featured .service-card__desc {
  color: var(--white);
}

.service-card--featured .service-card__desc {
  color: rgba(255, 255, 255, 0.6);
}

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 50px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.service-card--featured .service-card__icon {
  background: rgba(212, 168, 67, 0.15);
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

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

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

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

.about__image-wrap {
  position: relative;
}

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

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--gold);
  border-radius: var(--radius);
  opacity: 0.15;
  z-index: -1;
}

.about__floating-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about__floating-card svg {
  flex-shrink: 0;
}

.about__floating-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.about__floating-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.about__content .section-title {
  margin-bottom: 24px;
}

.about__text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.value-item__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

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

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(212, 168, 67, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(212, 168, 67, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.testimonials .section-header {
  position: relative;
  z-index: 1;
}

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

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.testimonial-card--gold {
  background: rgba(212, 168, 67, 0.08);
  border-color: rgba(212, 168, 67, 0.2);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(212, 168, 67, 0.3);
}

.testimonial-card__avatar img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.testimonial-card__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-card__role {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

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

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

.cta__circle {
  position: absolute;
  border-radius: 50%;
}

.cta__circle--1 {
  width: 500px;
  height: 500px;
  background: rgba(212, 168, 67, 0.06);
  top: -200px;
  right: -150px;
}

.cta__circle--2 {
  width: 300px;
  height: 300px;
  background: rgba(10, 22, 40, 0.04);
  bottom: -100px;
  left: -80px;
}

.cta__triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 80px 140px 80px;
  border-color: transparent transparent rgba(212, 168, 67, 0.08) transparent;
  top: 15%;
  left: 5%;
  transform: rotate(-15deg);
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cta__content .section-title {
  margin-bottom: 20px;
}

.cta__text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta__contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
}

.cta__contact-item:hover {
  color: var(--gold);
}

.cta__contact-item svg {
  flex-shrink: 0;
}

/* ─── Form ─── */
.cta__form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 22, 40, 0.06);
}

.cta__form-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
}

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 2px solid transparent;
  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, 168, 67, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #065f46;
}

.form-success svg {
  flex-shrink: 0;
}

/* ─── Footer ─── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer__tagline {
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

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

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer__contact a:hover {
  color: var(--gold);
}

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

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* ─── Scroll Animations ─── */
.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) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__cards {
    max-width: 360px;
    margin: 0 auto;
  }

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

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image img {
    height: 400px;
  }

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

  .cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .nav__list {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-120%);
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  }

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

  .nav__link {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
  }

  .hero {
    padding: 100px 0 80px;
    min-height: auto;
  }

  .hero__headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__cards {
    max-width: 100%;
  }

  .stat-card--1 {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 180px;
  }

  .stat-card--2,
  .stat-card--3 {
    grid-column: auto;
    grid-row: auto;
  }

  .stat-card--4 {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

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

  .about__floating-card {
    left: 10px;
    bottom: 10px;
  }

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

  .cta__form-wrap {
    padding: 28px 20px;
  }
}

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

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .stat-card {
    padding: 20px 18px;
    min-height: 130px;
  }

  .stat-card__number {
    font-size: 2rem;
  }

  .stat-card--1 {
    min-height: 150px;
  }
}
