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

:root {
  --purple: #734090;
  --purple-dark: #532D65;
  --purple-light: #F1E8F5;
  --dark: #1A1A1A;
  --dark-mid: #2A2A2A;
  --gray: #3A3A3A;
  --gray-light: #5C5C5C;
  --gray-muted: #858585;
  --accent: #C96B20;
  --white: #FDFDFD;
  --soft-white: #F7F7F5;
  --warm-white: #F2F1EE;
  --off-white: #ECEAE6;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray);
  background: var(--soft-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

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

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

/* ===== Typography ===== */
h1, h2, h3 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 { font-size: 2.8rem; letter-spacing: -0.02em; }
h2 { font-size: 1.7rem; margin-bottom: 1rem; }
h3 { font-size: 1.15rem; }

/* ===== Layout ===== */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-intro {
  color: var(--gray-light);
  font-size: 0.95rem;
  max-width: 620px;
  line-height: 1.7;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  z-index: 100;
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar__logo img {
  height: 34px;
  width: auto;
}

.navbar__logo span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.3px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.navbar__links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: color 0.2s;
  position: relative;
  letter-spacing: 0.3px;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--dark);
}

.navbar__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--purple);
  border-radius: 1px;
}

.lang-switch {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--purple);
  border: 1.5px solid var(--purple);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar__links a.lang-switch:hover {
  background: var(--purple);
  color: #FFFFFF;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray);
  margin: 4px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 11rem 0 9rem;
  min-height: 88vh;
  display: grid;
  align-content: center;
  background:
    radial-gradient(ellipse at 18% 28%, rgba(115, 64, 144, 0.22), transparent 55%),
    radial-gradient(ellipse at 82% 72%, rgba(201, 107, 32, 0.10), transparent 55%),
    linear-gradient(135deg, #1A1A1A 0%, #242424 50%, #151515 100%);
  text-align: left;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 110px,
    rgba(255, 255, 255, 0.018) 110px 111px
  );
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 55%;
  height: 180%;
  background: linear-gradient(115deg, transparent 46%, rgba(255, 255, 255, 0.04) 50%, transparent 54%);
  transform: rotate(-10deg);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5fr 6fr;
  align-items: center;
  gap: 3.5rem;
}

.hero__left,
.hero__right {
  min-width: 0;
}

.hero__card {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFAFC 100%);
  padding: 2.5rem 2.25rem;
  border-radius: 4px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 10px 24px rgba(115, 64, 144, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.hero__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--purple) 0%, var(--accent) 100%);
}

.hero__card h1 {
  color: var(--dark);
  font-size: 1.75rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: none;
}

.hero__accent {
  color: var(--purple);
  white-space: nowrap;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.hero__subtitle {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 520px;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn--purple {
  background: var(--purple);
  color: #FFFFFF;
}

.btn--purple:hover {
  background: var(--purple-dark);
}

.btn--outline {
  background: transparent;
  color: var(--gray);
  border: 1.5px solid var(--off-white);
}

.btn--outline:hover {
  border-color: var(--gray);
  color: var(--dark);
}

.btn--outline-light {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline-light:hover {
  border-color: #FFFFFF;
}

.btn--white {
  background: #FFFFFF;
  color: var(--dark);
}

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

/* ===== Intro / Text Block ===== */
.text-block {
  background: var(--white);
}

.text-block__inner {
  max-width: 700px;
  margin: 0 auto;
}

.text-block__inner p {
  color: var(--gray-light);
  margin-bottom: 1rem;
}

.text-block__inner p:first-of-type {
  font-size: 1rem;
  color: var(--gray);
}

/* ===== Services Grid ===== */
.services-section {
  background: var(--soft-white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border-radius: 2px;
  transition: box-shadow 0.3s;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.service-card h3 {
  margin-bottom: 0.6rem;
  color: var(--purple);
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.65;
}

.services-link {
  margin-top: 1.5rem;
  text-align: center;
}

/* ===== Process / How We Work ===== */
.process-section {
  background: var(--warm-white);
}

.process-section .section-intro {
  margin-bottom: 2.5rem;
}

.process-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  padding: 1rem 1.5rem;
}

.process-step span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-muted);
  margin-bottom: 0.3rem;
}

.process-step strong {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
}

.process-arrow {
  color: var(--purple);
  font-size: 1.2rem;
  font-weight: 300;
  padding: 0 0.3rem;
}

/* ===== Ecosystem Cards ===== */
.ecosystem-section {
  background: var(--soft-white);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.eco-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border-radius: 2px;
  transition: box-shadow 0.3s;
}

.eco-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.eco-card h3 {
  color: var(--purple);
  margin-bottom: 0.6rem;
}

.eco-card p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.eco-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple);
  transition: gap 0.2s;
}

.eco-card__link:hover {
  gap: 0.7rem;
}

.eco-card__link svg {
  width: 14px;
  height: 14px;
}

.ecosystem-link {
  margin-top: 1.5rem;
  text-align: center;
}

/* ===== Leadership Preview ===== */
.leadership-section {
  background: var(--white);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.leader-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.leader-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  flex-shrink: 0;
  border: 2px solid var(--off-white);
}

.leader-card h3 {
  margin-bottom: 0.15rem;
}

.leader-card .role {
  font-size: 0.75rem;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.leader-card p {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.leadership-link {
  margin-top: 1.5rem;
  text-align: center;
}

/* ===== Trust Block ===== */
.trust-section {
  background: var(--warm-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.trust-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.trust-item span {
  font-size: 0.78rem;
  color: var(--gray-muted);
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--dark);
  color: #FFFFFF;
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 0.8rem;
}

.cta-section p {
  color: var(--gray-muted);
  max-width: 580px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

.cta-section .hero__buttons {
  justify-content: center;
}

/* ===== Page Header ===== */
.page-header {
  background: var(--dark);
  padding: 7rem 0 3.5rem;
  text-align: center;
}

.page-header h1 {
  color: #FFFFFF;
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.page-header p {
  color: var(--gray-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== About Page Content ===== */
.about-section {
  background: var(--white);
}

.about-section--alt {
  background: var(--soft-white);
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-content h2 {
  margin-bottom: 0.8rem;
}

.about-content p {
  color: var(--gray-light);
  margin-bottom: 1rem;
  font-size: 0.93rem;
}

.about-list {
  list-style: none;
  margin: 1rem 0;
}

.about-list li {
  font-size: 0.9rem;
  color: var(--gray);
  padding: 0.35rem 0 0.35rem 1.2rem;
  position: relative;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--purple);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ===== Services Page — Full Descriptions ===== */
.service-full {
  background: var(--white);
}

.service-full--alt {
  background: var(--soft-white);
}

.service-full__inner {
  max-width: 700px;
  margin: 0 auto;
}

.service-full__inner h2 {
  color: var(--purple);
  margin-bottom: 0.8rem;
}

.service-full__inner p {
  color: var(--gray-light);
  margin-bottom: 1rem;
  font-size: 0.93rem;
}

/* ===== Ecosystem Page — Full Cards ===== */
.eco-full-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.eco-full-card h2 {
  color: var(--purple);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.eco-full-card p {
  color: var(--gray-light);
  font-size: 0.93rem;
  margin-bottom: 1rem;
}

/* ===== Leadership Page — Full Profiles ===== */
.profile-section {
  background: var(--white);
}

.profile-section--alt {
  background: var(--soft-white);
}

.profile {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 760px;
  margin: 0 auto;
}

.profile img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  flex-shrink: 0;
  border: 3px solid var(--off-white);
}

.profile__text h2 {
  margin-bottom: 0.15rem;
}

.profile__text .role {
  font-size: 0.78rem;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile__text p {
  color: var(--gray-light);
  font-size: 0.93rem;
  margin-bottom: 0.8rem;
}

/* ===== Contact Section ===== */
.contact {
  background: var(--soft-white);
  padding: 5rem 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact__info h2 {
  margin-bottom: 0.6rem;
}

.contact__intro {
  color: var(--gray-light);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact__detail-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--purple-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
}

.contact__detail-icon svg {
  width: 16px;
  height: 16px;
}

.contact__detail-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-muted);
  margin-bottom: 0.1rem;
}

.contact__detail-value {
  font-size: 0.88rem;
  color: var(--dark);
  font-weight: 500;
}

a.contact__detail-value:hover {
  color: var(--purple);
}

/* Contact Form */
.contact__form-wrap {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}

.contact__form-wrap h3 {
  margin-bottom: 0.3rem;
}

.contact__form-intro {
  font-size: 0.88rem;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.3px;
}

.form-group .optional {
  font-weight: 400;
  color: var(--gray-muted);
  font-size: 0.72rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--off-white);
  border-radius: 2px;
  background: var(--soft-white);
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  width: 100%;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(115, 64, 144, 0.1);
}

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

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 3.5rem 0 2rem;
  font-size: 0.82rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__about p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.6rem;
}

.footer h4 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.4rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer a:hover {
  color: #FFFFFF;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

/* ===== Responsive ===== */

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile img {
    width: 140px;
    height: 140px;
  }

  /* Hero stacks early so the long H1 does not get cramped */
  .hero {
    padding: 8rem 0 5rem;
    min-height: auto;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__card h1 {
    font-size: 1.6rem;
  }

  .hero__subtitle {
    max-width: none;
  }

  /* Tighten navbar gap to avoid overflow at ~800-960px */
  .navbar__links {
    gap: 1.1rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1rem; }
  section { padding: 3rem 0; }

  .container {
    padding: 0 1.25rem;
  }

  /* Navbar */
  .menu-toggle {
    display: block;
  }

  .navbar .container {
    height: 56px;
  }

  .navbar__logo img {
    height: 28px;
  }

  .navbar__logo span {
    font-size: 0.92rem;
  }

  .navbar__links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }

  .navbar__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar__links li {
    width: 100%;
  }

  .navbar__links a {
    display: block;
    padding: 0.85rem 0.4rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .navbar__links li:last-child a {
    border-bottom: none;
  }

  .navbar__links a.active::after {
    display: none;
  }

  .navbar__links a.active {
    color: var(--purple);
  }

  .navbar__links a.lang-switch {
    display: inline-block;
    width: auto;
    margin-top: 0.5rem;
    padding: 0.35rem 0.7rem;
    border-bottom: 1.5px solid var(--purple);
  }

  /* Hero */
  .hero {
    padding: 7rem 0 4.5rem;
    min-height: auto;
  }

  .hero__card {
    padding: 1.75rem 1.5rem;
  }

  .hero__card h1 {
    font-size: 1.5rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__buttons {
    justify-content: flex-start;
  }

  /* Process */
  .process-line {
    flex-direction: column;
    gap: 0;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding: 0.2rem 0;
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Leader cards on home */
  .leader-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .leader-card img {
    width: 90px;
    height: 90px;
  }

  /* Page header */
  .page-header {
    padding: 5.5rem 0 2.5rem;
  }

  .page-header h1 {
    font-size: 1.7rem;
  }

  /* Eco full cards */
  .eco-full-card {
    padding: 1.5rem;
  }

  /* Contact form */
  .contact__form-wrap {
    padding: 1.5rem;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  /* CTA */
  .cta-section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 400px) {
  h1 { font-size: 1.6rem; }

  .container {
    padding: 0 1rem;
  }

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

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__buttons .btn {
    text-align: center;
  }
}
