@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --gold:       #cda434;
  --gold-dim:   rgba(205, 164, 52, 0.15);
  --black:      #080808;
  --card-bg:    rgba(255,255,255,0.04);
  --card-border:rgba(255,255,255,0.08);
  --white:      #ffffff;
  --text-dim:   rgba(255,255,255,0.5);
  --text-muted: rgba(255,255,255,0.28);
  --container:  1140px;
  font-family: 'Inter', system-ui, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ─────────────────────────────────────────── */
:root {
  scrollbar-width: thin;
  scrollbar-color: #cda434 #0f0f0f;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0f0f0f; }
::-webkit-scrollbar-thumb {
  background: #cda434;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: #e0b93c; }

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  min-width: 320px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Ambient background blobs ──────────────────────────── */
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  transform: translateZ(0);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.blob-1 {
  width: 65vw; height: 65vw;
  background: radial-gradient(circle, rgba(150,60,10,0.45), transparent 65%);
  bottom: -20vw; left: -15vw;
}

.blob-2 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(15,25,100,0.4), transparent 65%);
  top: -10vw; right: -10vw;
}

.blob-3 {
  width: 35vw; height: 35vw;
  background: radial-gradient(circle, rgba(120,45,8,0.22), transparent 65%);
  top: 40%; left: 35%;
}

/* ── Layout ────────────────────────────────────────────── */
.site-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.container {
  width: min(100% - 3rem, var(--container));
  margin: 0 auto;
}

/* ── Header – full width bar ──────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
  width: min(100% - 3rem, var(--container));
  margin: 0 auto;
}

.brand img { width: 100px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.main-nav a {
  color: var(--text-dim);
  transition: color 0.2s;
}

.main-nav a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { opacity: 0.88; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 6rem 0 5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-logo {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  opacity: 0.92;
  filter: drop-shadow(0 0 60px rgba(205,164,52,0.15));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  flex-shrink: 0;
}

h1 {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

.rotating-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.rotating-word { animation: fadeWord 0.45s ease; }

.rotating-wrap::after {
  content: '';
  width: 3px;
  height: 0.8em;
  background: var(--gold);
  margin-left: 0.2rem;
  animation: blink 0.9s step-end infinite;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ── Hamburger toggle ──────────────────────────────────── */
.nav-toggle {
  position: fixed;
  top: 1.4rem;
  right: 1.6rem;
  z-index: 500;
  width: 52px;
  height: 52px;
  background: rgba(205,164,52,0.1);
  border: 1px solid rgba(205,164,52,0.45);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.nav-toggle:hover {
  background: rgba(205,164,52,0.2);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(205,164,52,0.25);
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.35s ease, transform 0.35s ease;
}

.nav-toggle span:nth-child(1) { width: 22px; }
.nav-toggle span:nth-child(2) { width: 14px; }

.nav-toggle:hover span { width: 22px; }

.nav-toggle.is-open {
  background: rgba(205,164,52,0.15);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(205,164,52,0.3);
}

.nav-toggle.is-open span:nth-child(1) {
  width: 20px;
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  width: 20px;
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Nav overlay ───────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay__list {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.nav-overlay__link {
  display: block;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.2);
  padding: 0.3rem 0;
  line-height: 1.15;
  transition: color 0.25s ease;
  text-decoration: none;
}

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

.nav-overlay.is-open .nav-overlay__link {
  animation: menuItemIn 0.5s ease both;
}

.nav-overlay.is-open .nav-overlay__list li:nth-child(1) .nav-overlay__link { animation-delay: 0.05s; }
.nav-overlay.is-open .nav-overlay__list li:nth-child(2) .nav-overlay__link { animation-delay: 0.10s; }
.nav-overlay.is-open .nav-overlay__list li:nth-child(3) .nav-overlay__link { animation-delay: 0.15s; }
.nav-overlay.is-open .nav-overlay__list li:nth-child(4) .nav-overlay__link { animation-delay: 0.20s; }

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

.nav-overlay__footer {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

.nav-overlay__footer a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.nav-overlay__footer a:hover { color: var(--white); }

body.nav-open { overflow: hidden; }

/* ── Hero cover ────────────────────────────────────────── */
.hero-cover {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cover__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.hero-cover__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.72) 100%
  );
}

.hero-cover__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
  padding: 0 2rem;
}

.hero-cover__logo {
  width: min(320px, 55vw);
  opacity: 0;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,0.5));
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-cover__divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  opacity: 0;
  animation: heroExpand 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards;
}

.hero-cover__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
  opacity: 0;
  animation: heroTitle 1.1s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

.hero-cover__sub {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0;
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}

.hero-cover__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: color 0.2s;
}

.hero-cover__scroll:hover { color: rgba(255,255,255,0.9); }
.hero-cover__scroll svg { width: 28px; height: 28px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Intro section ─────────────────────────────────────── */
.intro-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 9rem;
  gap: 2.2rem;
  background: #ffffff;
  overflow: hidden;
}

.intro-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(0,0,0,0.035);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.intro-logo {
  position: relative;
  width: min(240px, 48vw);
  height: auto;
  z-index: 1;
}

.intro-rule {
  width: 40px;
  height: 2px;
  background: #cda434;
  border-radius: 2px;
}

.intro-claim {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: rgba(0,0,0,0.55);
  max-width: 46ch;
  line-height: 1.6;
  letter-spacing: 0.01em;
  z-index: 1;
}

.intro-quote-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.intro-quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  color: #cda434;
  line-height: 0.6;
  display: block;
}

.intro-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.8rem);
  font-weight: 800;
  font-style: italic;
  color: #0a0a0a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  border: none;
  padding: 0;
  margin: 0;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.8rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0;
  border-radius: 0;
}

.btn-ghost:hover { opacity: 0.7; transform: none; }

.btn-outline {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 999px;
}

/* ── Marquee ───────────────────────────────────────────── */
.marquee {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  user-select: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee-item::after {
  content: '·';
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 0;
}

/* ── Section shared ────────────────────────────────────── */
.section {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-dim);
  text-align: center;
  max-width: 56ch;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

/* ── Bento card base ───────────────────────────────────── */
.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.bento-card:hover {
  border-color: rgba(255,255,255,0.16);
}

/* ── Stats section ─────────────────────────────────────── */
.stats-section {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: center;
}

.stats-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.stat-card:hover { border-color: rgba(205,164,52,0.25); }

.stat-card:last-child {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1rem;
}

.stat-number strong {
  color: var(--white);
  font-size: inherit;
  font-weight: inherit;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 36ch;
}

.stat-card:last-child .stat-label { margin-bottom: 0.4rem; }
.stat-card:last-child .stat-number { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 0; }

/* Decorative bar chart inside stat card */
.stat-chart {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 0 1.8rem 1.5rem 0;
  opacity: 0.6;
}

.stat-bar {
  width: 10px;
  background: linear-gradient(to top, var(--gold), rgba(205,164,52,0.2));
  border-radius: 3px 3px 0 0;
}

/* ── Services bento ────────────────────────────────────── */
.services-section {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: center;
}

.services-section .container {
  width: 1200px;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}

.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(205,164,52,0.2);
}

.service-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}

.service-card:hover .service-link { color: var(--gold); }

/* ── FAQ ───────────────────────────────────────────────── */
.footer-faq {
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-faq h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.faq-list { display: grid; gap: 0; }

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }

.faq-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  padding: 1.4rem 0;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-trigger:hover { color: var(--gold); }

.faq-sign {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-content p {
  overflow: hidden;
  padding-bottom: 1.4rem;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.92rem;
}

.faq-item.open .faq-content { grid-template-rows: 1fr; }

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: #080808;
  color: var(--white);
  width: 100%;
}

/* CTA band */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 6%;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}

.footer-cta__eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.footer-cta__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
}

.footer-cta__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #080808;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-cta__btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* Main grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-col {
  padding: 3.5rem 6% 3.5rem 0;
}

.footer-col--brand { padding-left: 6%; }
.footer-col:last-child { border-right: none; padding-right: 6%; }

.footer-logo {
  width: 250px;
  opacity: 0.88;
  margin-bottom: 1.2rem;
}

.footer-tagline {
  font-size: 1.2rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  max-width: 28ch;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social__link {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s, border-color 0.2s;
}
.footer-social__link:hover { background: var(--gold-dim); border-color: rgba(205,164,52,0.4); }
.footer-social__link svg { width: 40px; height: 40px; fill: rgba(255,255,255,0.55); }
.footer-social__link:hover svg { fill: var(--gold); }

.footer-col__title {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.2rem;
  display: block;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul li,
.footer-col ul li a {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem 6%;
}

.footer-copy {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.18);
}

.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom__links a {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.18);
  transition: color 0.2s;
}
.footer-bottom__links a:hover { color: var(--gold); }

/* ── Social ────────────────────────────────────────────── */
.social-list { display: flex; gap: 0.5rem; margin-top: 1rem; }

.social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s, border-color 0.2s;
}

.social-link:hover { background: var(--gold-dim); border-color: rgba(205,164,52,0.3); }

.social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }
.social-link:hover svg { fill: var(--gold); }

/* ── WhatsApp ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 200;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float img { width: 70px; height: 70px; object-fit: contain; display: block; }

/* ── Cookie ────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 300;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  padding: 1.2rem 1.4rem;
  display: none;
  gap: 1rem;
  max-width: 640px;
  margin-inline: auto;
}

.cookie-banner p { margin: 0; font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ── Legal pages ───────────────────────────────────────── */
.legal-content { max-width: 720px; padding: 1rem 0 5rem; }
.legal-content h2 { font-size: 1.05rem; font-weight: 800; margin: 2rem 0 0.5rem; color: var(--white); }
.legal-content p { color: var(--text-dim); line-height: 1.75; font-size: 0.92rem; }
.legal-content a { color: var(--gold); }

/* ── Reveal ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.intro-section .reveal { transition-delay: 0.1s; }
.intro-section .reveal:nth-child(2) { transition-delay: 0.2s; }
.intro-section .reveal:nth-child(3) { transition-delay: 0.35s; }

/* ── Typewriter ────────────────────────────────────────── */
.typewriter-cursor::after {
  content: '';
  display: inline-block;
  width: 2px; height: 0.85em;
  margin-left: 0.1rem;
  background: var(--gold);
  vertical-align: -0.06em;
  animation: blink 0.8s step-end infinite;
}

/* ── Keyframes ─────────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroTitle {
  from { opacity: 0; transform: translateY(16px); letter-spacing: 0.06em; }
  to   { opacity: 1; transform: translateY(0);    letter-spacing: 0.18em; }
}

@keyframes heroExpand {
  from { opacity: 0; width: 0; }
  to   { opacity: 1; width: 48px; }
}

@keyframes fadeWord {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink  { 50% { opacity: 0; } }
@keyframes pulse  {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
  .stats-bento { grid-template-columns: 1fr; }
  .stat-card:last-child { grid-column: auto; flex-direction: column; align-items: flex-start; }
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; border-right: none; padding-right: 0; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 640px) {
  .nav { padding: 0.6rem 0.8rem 0.6rem 1.1rem; }
  .main-nav { gap: 1rem; font-size: 0.8rem; }
  .hero { padding: 4rem 0 3rem; min-height: auto; }
  .services-bento { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col { border-right: none; padding-right: 6%; }
  .footer-col--brand { grid-column: auto; }
  .stat-chart { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .hero-cover__logo,
  .hero-cover__divider,
  .hero-cover__title,
  .hero-cover__sub { opacity: 1; }
}

/* ── Light page theme ──────────────────────────────────── */
.page-light {
  background: #f5f4f0;
  color: #0a0a0a;
}

.page-light .page-hero {
  background: #ffffff;
  border-bottom-color: rgba(0,0,0,0.08);
}

.page-light .page-hero__title { color: #0a0a0a; }
.page-light .page-hero__sub   { color: rgba(0,0,0,0.5); }
.page-light .page-hero__deco  { color: rgba(0,0,0,0.04); }

.page-light .page-hero__title_white { color: white; }

.page-light .email-page { background: #f5f4f0; }

.page-light .email-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
}

.page-light .email-card:hover { border-color: rgba(0,0,0,0.16); }

.page-light .email-card--accent {
  background: rgba(205,164,52,0.06);
  border-color: rgba(205,164,52,0.3);
}

.page-light .email-card--accent:hover { border-color: rgba(205,164,52,0.55); }

.page-light .email-card__label { color: rgba(0,0,0,0.35); }
.page-light .email-card__server { color: #0a0a0a; }
.page-light .email-card__port  { color: rgba(0,0,0,0.5); }
.page-light .email-card__port strong { color: #0a0a0a; }

.page-light .email-credentials {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
}

.page-light .email-cred-item { border-bottom-color: rgba(0,0,0,0.06); }
.page-light .email-cred-item__key { color: rgba(0,0,0,0.35); }
.page-light .email-cred-item__val { color: rgba(0,0,0,0.6); }

.page-light .email-note {
  color: rgba(0,0,0,0.45);
  border-left-color: rgba(205,164,52,0.5);
}

.page-light .email-warning {
  background: rgba(205,164,52,0.07);
  border-color: rgba(205,164,52,0.25);
}

.page-light .email-warning strong { color: #0a0a0a; }
.page-light .email-warning p      { color: rgba(0,0,0,0.55); }

.page-light .email-webmail {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
}

.page-light .email-webmail:hover { border-color: rgba(0,0,0,0.16); }
.page-light .email-webmail__title { color: #0a0a0a; }
.page-light .email-webmail__desc  { color: rgba(0,0,0,0.55); }

.page-light .email-cta { border-top-color: rgba(0,0,0,0.08); }
.page-light .email-cta p { color: rgba(0,0,0,0.5); }

.page-light .section-eyebrow { color: var(--gold); }

/* ── Page hero (inner pages) ───────────────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 6% 6rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

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

.page-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  margin: 0.6rem 0 1.2rem;
}

.page-hero__sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 50ch;
}

.page-hero__deco {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ── Email page content ────────────────────────────────── */
.email-page {
  padding: 5rem 0 7rem;
}

.email-settings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.email-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.3s;
}

.email-card:hover { border-color: rgba(255,255,255,0.14); }

.email-card--accent {
  border-color: rgba(205,164,52,0.25);
  background: rgba(205,164,52,0.04);
}

.email-card--accent:hover { border-color: rgba(205,164,52,0.45); }

.email-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.email-card__icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
}

.email-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.email-card__server {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  font-family: 'Inter', monospace;
}

.email-card__port {
  font-size: 0.9rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.email-card__port strong { color: var(--white); }

.email-card__tls {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(205,164,52,0.15);
  color: var(--gold);
  text-transform: uppercase;
}

.email-credentials {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.email-cred-item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.email-cred-item:last-child { border-bottom: none; }

.email-cred-item__key {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  min-width: 130px;
}

.email-cred-item__val {
  font-size: 0.92rem;
  color: var(--text-dim);
  font-family: 'Inter', monospace;
}

.email-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 1rem 1.5rem;
  border-left: 2px solid rgba(205,164,52,0.3);
  margin-bottom: 3rem;
}

.email-warnings {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

.email-warning {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  background: rgba(205,164,52,0.05);
  border: 1px solid rgba(205,164,52,0.18);
  border-radius: 16px;
  padding: 1.6rem 2rem;
}

.email-warning__badge {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(205,164,52,0.15);
  border: 1px solid rgba(205,164,52,0.4);
  color: var(--gold);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.email-warning strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.email-warning p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

.email-webmail {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 4rem;
  transition: border-color 0.3s;
}

.email-webmail:hover { border-color: rgba(255,255,255,0.14); }

.email-webmail__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-webmail__icon svg { width: 22px; height: 22px; stroke: var(--gold); }

.email-webmail__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.email-webmail__desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.email-webmail__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  transition: opacity 0.2s;
}

.email-webmail__link:hover { opacity: 0.75; }

.email-cta {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.email-cta p {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 1.4rem;
}

@media (max-width: 768px) {
  .email-settings { grid-template-columns: 1fr; }
  .page-hero__deco { display: none; }
  .page-hero { padding: 5rem 1.5rem 4rem; }
  .email-page { padding: 3rem 0 5rem; }
  .email-cred-item { flex-direction: column; gap: 0.3rem; }
  .email-cred-item__key { min-width: auto; }
  .email-warning { gap: 1rem; }
}

/* ── Contact page ──────────────────────────────────────── */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.contact-info {
  background: #ffffff;
  padding: 7rem 5% 6rem 6%;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0,0,0,0.07);
}

.contact-info__intro {
  font-size: 1rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.75;
  max-width: 42ch;
  margin-bottom: 3rem;
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-info-item__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(205,164,52,0.1);
  border: 1px solid rgba(205,164,52,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item__icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
}

.contact-info-item__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  margin-bottom: 0.25rem;
}

.contact-info-item__val {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.6;
  display: block;
  transition: color 0.2s;
}

a.contact-info-item__val:hover { color: var(--gold); }

.contact-social {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 2rem;
}

.contact-social__link {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.1);
  transition: background 0.2s, border-color 0.2s;
}

.contact-social__link:hover {
  background: rgba(205,164,52,0.1);
  border-color: rgba(205,164,52,0.4);
}

.contact-social__link svg {
  width: 36px; height: 36px;
  fill: rgba(0,0,0,0.4);
}

.contact-social__link:hover svg { fill: var(--gold); }

.contact-form-wrap {
  background: #080808;
  padding: 7rem 6% 6rem 5%;
  display: flex;
  align-items: center;
}

/* ── Shared form styles ────────────────────────────────── */
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.form-input {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font: inherit;
  font-size: 0.95rem;
  color: #0a0a0a;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input::placeholder { color: rgba(0,0,0,0.28); }

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(205,164,52,0.12);
}

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

.form-file {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  border: 1.5px dashed rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.form-file:hover {
  border-color: var(--gold);
  background: rgba(205,164,52,0.04);
}

.form-file svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.form-file__text {
  font-size: 0.88rem;
  color: rgba(0,0,0,0.4);
}

.form-field--check { margin-top: 0.2rem; }

.form-check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 16px; height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-check span {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.45);
  line-height: 1.6;
}

.form-check span a { color: var(--gold); text-decoration: underline; }

.form-privacy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);;
  line-height: 1.6;
}

.form-privacy a { color: var(--gold); text-decoration: underline; }

.form-submit {
  align-self: flex-start;
  margin-top: 0.4rem;
  padding: 0.9rem 2.4rem;
  font-size: 0.9rem;
}

/* ── Jobs page ─────────────────────────────────────────── */
.page-hero--jobs { background: #ffffff; }

.jobs-values {
  background: #f5f4f0;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.jobs-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.jobs-value-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s;
}

.jobs-value-card:hover { border-color: rgba(205,164,52,0.35); }

.jobs-value-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(205,164,52,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jobs-value-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
}

.jobs-value-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.jobs-value-card p {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
}

.jobs-form-section {
  background: #f5f4f0;
  padding: 5rem 0 7rem;
}

.jobs-form-wrap {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  padding: 3rem 3.5rem;
}

.jobs-form-header {
  margin-bottom: 2.5rem;
}

.jobs-form-header__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  margin-bottom: 0.6rem;
}

.jobs-form-header__sub {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.45);
  line-height: 1.7;
}

/* ── Responsive contact + jobs ─────────────────────────── */
@media (max-width: 900px) {
  .contact-page { grid-template-columns: 1fr; }
  .contact-info { padding: 5rem 6% 3rem; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); }
  .contact-social { margin-top: 2rem; }
  .contact-form-wrap { padding: 3rem 6% 5rem; }
  .jobs-values__grid { grid-template-columns: 1fr; }
  .jobs-form-wrap { padding: 2rem 1.5rem; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
