/* ============================================
   SPADE AGENCY — Redesign (Morningside-inspired)
   ============================================ */

/* --- Font Faces --- */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SpaceGrotesk';
  src: url('../fonts/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --accent: #0CC481;
  --accent-dim: #0aa36d;
  --accent-glow: rgba(12, 196, 129, 0.15);
  --accent-glow-strong: rgba(12, 196, 129, 0.3);
  --white: #ffffff;
  --white-dim: #e0e0e0;
  --white-muted: #b0b0b0;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'SpaceGrotesk', sans-serif;
  --container: 1200px;
  --nav-height: 80px;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  width: 100%;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--bg-primary);
  color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}

#page {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section--dark {
  background: var(--bg-secondary);
}

.text-accent { color: var(--accent); }
.text-muted { color: var(--white-dim); }

.section__header {
  text-align: center;
  margin-bottom: 72px;
}

.section__desc {
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: normal;
}

h1 {
  font-size: clamp(1.5rem, 5.5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.25rem, 4vw, 3rem);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 12px;
}

p {
  color: var(--white-dim);
  max-width: 100%;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn--primary:hover {
  background: #10d98f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow-strong);
}

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

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

.btn--small {
  padding: 12px 24px;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-dim);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--white);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

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

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

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* --- Mobile Nav --- */
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav__menu.open {
    visibility: visible;
    opacity: 1;
  }

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

  .nav__link {
    font-size: 1.3rem;
  }
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent),
    radial-gradient(ellipse 60% 40% at 50% 120%, rgba(12, 196, 129, 0.06), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 24px auto 40px;
  max-width: 600px;
  color: var(--white-dim);
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Stats --- */
.stats {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stats__number {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stats__plus {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stats__label {
  font-size: 0.85rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  border: 1px solid rgba(12, 196, 129, 0.15);
}

.service-card h3 {
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card__tags span {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 30px;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(12, 196, 129, 0.1);
}

/* --- Process Steps (Morningside-style) --- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

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

.process-step__number {
  font-family: var(--font-accent);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 700;
  color: var(--accent);
  opacity: 0;
  line-height: 0.85;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.process-step.visible .process-step__number {
  opacity: 0.2;
  transform: translateY(0);
}

.process-step__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: center;
  transition: var(--transition);
}

.process-step__card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.process-step__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__visual svg {
  width: 160px;
  height: 160px;
}

.process-step__content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.process-step__content p {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.8;
  max-width: 100%;
}

/* --- About Split --- */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-split__content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.values-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

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

.value-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 2px;
}

.value-item span {
  font-size: 0.85rem;
  color: var(--white-dim);
}

/* About Visual Cards */
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-visual__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.about-visual__card--accent {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-card), rgba(12, 196, 129, 0.08));
  border-color: rgba(12, 196, 129, 0.15);
}

.about-visual__stat {
  display: block;
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.about-visual__label {
  font-size: 0.8rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- FAQ --- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.faq__question:hover {
  color: var(--accent);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--white-dim);
}

.faq__item.open .faq__chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.8;
  max-width: 100%;
}

/* --- Contact Split --- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.contact-split__info {
  min-width: 0;
}

.contact-split__info p {
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.contact-checklist__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white-dim);
}

.contact-checklist__item svg {
  color: var(--accent);
  flex-shrink: 0;
}

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

.contact-details__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-dim);
  transition: var(--transition);
}

.contact-details__item:hover {
  color: var(--accent);
}

.contact-details__item svg {
  flex-shrink: 0;
}

/* --- Form --- */
.form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form__input,
.form__textarea,
.form__select {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--white-dim);
}

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

/* --- Footer --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

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

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

.footer__logo img {
  height: 36px;
}

.footer__logo-text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer__desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  max-width: 320px;
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  color: var(--white-dim);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--white-dim);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: var(--white-dim);
  transition: var(--transition);
}

.footer__social a:hover {
  color: var(--accent);
}

/* --- Page Header (subpages) --- */
.page-header {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent),
    radial-gradient(ellipse 60% 40% at 50% 120%, rgba(12, 196, 129, 0.06), transparent);
  pointer-events: none;
}

.page-header__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-header__subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 20px auto 0;
  max-width: 560px;
  color: var(--white-dim);
}

/* --- Contact Method Cards --- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-method-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: var(--transition);
  display: block;
}

.contact-method-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-method-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  border: 1px solid rgba(12, 196, 129, 0.15);
}

.contact-method-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-method-card p {
  font-size: 0.9rem;
  color: var(--white-dim);
  margin: 0 auto;
}

/* --- Contact Trust Items --- */
.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.contact-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-dim);
}

.contact-trust__item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* --- Active Nav Link --- */
.nav__link--active {
  color: var(--accent) !important;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 50px 1fr;
  }

  .process-step__number {
    font-size: 4rem;
  }

  .process-step__card {
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 36px 32px;
  }

  .process-step__visual svg {
    width: 120px;
    height: 120px;
  }

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

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

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

  .contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 32px);
    min-height: auto;
    padding-bottom: 60px;
  }

  .process-step {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    max-width: 100%;
    overflow: hidden;
  }

  .process-step__number {
    font-size: 3rem;
  }

  .process-step__card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 20px;
    max-width: 100%;
  }

  .process-step__visual svg {
    width: 100px;
    height: 100px;
  }

  .process-step__content h3 {
    font-size: 1.3rem;
  }

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

  .form {
    padding: 28px 20px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-visual__card--accent {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

  h2 {
    font-size: clamp(1.1rem, 5vw, 1.3rem);
    margin-bottom: 16px;
  }

  .contact-split__info h2 {
    font-size: clamp(2.3rem, 9.8vw, 3rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
  }

  .section-label {
    letter-spacing: 0.08em;
    font-size: 0.7rem;
  }

  .nav__logo-text {
    font-size: 0.95rem;
  }

  .contact-split {
    gap: 24px;
  }

  .contact-checklist__item {
    gap: 10px;
    font-size: 0.85rem;
  }

  .contact-trust__item {
    gap: 8px;
    font-size: 0.8rem;
  }

  .page-header {
    padding: calc(var(--nav-height) + 40px) 0 48px;
  }

  .page-header__subtitle {
    font-size: 0.95rem;
  }

  .contact-method-card {
    padding: 28px 24px;
  }
}

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

  .form {
    padding: 20px 16px;
  }

  .form__input,
  .form__textarea,
  .form__select {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
}
