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

:root {
  --accent: #2563EB;
  --accent-light: #3B82F6;
  --accent-dark: #1D4ED8;
  --accent-pale: #DBEAFE;
  --bg-cream: #FAF7F2;
  --bg-warm: #F2EDE5;
  --bg-dark: #1A1714;
  --bg-darker: #0F0D0A;
  --text-primary: #1A1714;
  --text-secondary: #5C564D;
  --text-muted: #8A8279;
  --text-light: #FAF7F2;
  --text-light-muted: #C4BDB2;
  --border-light: rgba(26, 23, 20, 0.08);
  --border-accent: rgba(37, 99, 235, 0.2);
  --card-light: rgba(255, 255, 255, 0.7);
  --card-dark: rgba(26, 23, 20, 0.6);
  --ease-out-expo: cubic-bezier(0.32, 0.72, 0, 1);
  --duration: 700ms;
  --duration-long: 1000ms;
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  background: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--noise);
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Clash Display', sans-serif;
  font-weight: 500;
  line-height: 1.1;
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity var(--duration-long) var(--ease-out-expo),
              transform var(--duration-long) var(--ease-out-expo),
              filter var(--duration-long) var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ============================
   EYEBROW BADGE
   ============================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}
.eyebrow--light {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-pale);
  border-color: rgba(255, 255, 255, 0.1);
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================
   BUTTON SYSTEM
   ============================ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 28px; border-radius: 8px; border: none;
  cursor: pointer; position: relative; overflow: hidden;
  transition: all var(--duration) var(--ease-out-expo);
}
.btn__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  transition: transform var(--duration) var(--ease-out-expo);
}
.btn:hover .btn__icon { transform: translateX(3px); }
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn--primary .btn__icon { background: rgba(255,255,255,0.2); }
.btn--primary:hover {
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn--secondary {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--border-light); padding: 14px 26px;
}
.btn--secondary:hover { border-color: var(--accent); color: var(--accent-dark); transform: translateY(-2px); }
.btn--secondary-light {
  background: transparent; color: var(--text-light);
  border: 1.5px solid rgba(255,255,255,0.15); padding: 14px 26px;
}
.btn--secondary-light:hover { border-color: var(--accent-light); color: var(--accent-pale); transform: translateY(-2px); }
.arrow-svg { width: 14px; height: 14px; }

/* ============================
   DOUBLE-BEZEL CARD
   ============================ */
.doppelrand {
  position: relative; border-radius: 16px;
  background: var(--card-light); border: 1px solid var(--border-light);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); overflow: hidden;
}
.doppelrand::before {
  content: ''; position: absolute; inset: 5px; border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.07); pointer-events: none; z-index: 1;
}
.doppelrand--dark { background: var(--card-dark); border-color: rgba(255,255,255,0.06); }
.doppelrand--dark::before { border-color: rgba(255,255,255,0.04); }
.doppelrand--solid { background: #fff; backdrop-filter: none; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 1000; padding: 12px 24px; border-radius: 100px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(24px) saturate(1.8); -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  display: flex; align-items: center; gap: 32px;
  transition: all var(--duration) var(--ease-out-expo); max-width: 95vw;
}
.navbar__brand {
  font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 0.95rem;
  color: var(--text-primary); white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.navbar__brand-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.navbar__links { display: flex; align-items: center; gap: 24px; list-style: none; }
.navbar__links a {
  font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
  transition: color 300ms ease; white-space: nowrap;
}
.navbar__links a:hover { color: var(--accent-dark); }
.navbar__cta {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 100px; background: var(--accent);
  color: #fff; border: none; cursor: pointer; white-space: nowrap;
  transition: all 300ms var(--ease-out-expo);
}
.navbar__cta:hover { background: var(--accent-dark); transform: scale(1.03); }
.navbar__mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 24px; height: 24px; position: relative;
}
.navbar__mobile-toggle span {
  display: block; width: 20px; height: 2px; background: var(--text-primary);
  border-radius: 2px; position: absolute; left: 2px;
  transition: all 300ms var(--ease-out-expo);
}
.navbar__mobile-toggle span:nth-child(1) { top: 6px; }
.navbar__mobile-toggle span:nth-child(2) { top: 11px; }
.navbar__mobile-toggle span:nth-child(3) { top: 16px; }

/* ============================
   HERO
   ============================ */
.hero {
  padding: 160px 0 100px; position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37,99,235,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(37,99,235,0.04) 0%, transparent 60%);
}
.hero__content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero__text { max-width: 600px; }
.hero__eyebrow { margin-bottom: 28px; }
.hero__title {
  font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 500;
  line-height: 1.05; margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero__title span { color: var(--accent); }
.hero__subtitle {
  font-size: 1.1rem; line-height: 1.7; color: var(--text-secondary);
  margin-bottom: 40px; max-width: 500px;
}
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__image-wrapper { position: relative; display: flex; justify-content: flex-end; }
.hero__image-frame {
  position: relative; border-radius: 20px; overflow: hidden;
  max-width: 520px; width: 100%;
}
.hero__image-frame::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  border: 1px solid rgba(37,99,235,0.15); z-index: 2; pointer-events: none;
}
.hero__image-frame::after {
  content: ''; position: absolute; inset: 6px; border-radius: 16px;
  border: 1px solid rgba(37,99,235,0.08); z-index: 2; pointer-events: none;
}
.hero__image-frame img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 20px; aspect-ratio: 4/5;
}
.hero__stat {
  position: absolute; bottom: -20px; left: -30px; z-index: 3;
  padding: 20px 28px; border-radius: 16px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  animation: float-slow 4s ease-in-out infinite;
}
.hero__stat-number {
  font-family: 'Clash Display', sans-serif; font-size: 1.8rem;
  font-weight: 600; color: var(--accent-dark);
}
.hero__stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* ============================
   STATS
   ============================ */
.stats { padding: 100px 0 120px; }
.stats__inner { text-align: center; max-width: 800px; margin: 0 auto; }
.stats__title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 20px; letter-spacing: -0.02em; }
.stats__text { font-size: 1.15rem; line-height: 1.8; color: var(--text-secondary); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; }
.stats__card { padding: 36px 28px; text-align: center; }
.stats__value {
  font-family: 'Clash Display', sans-serif; font-size: 2.2rem;
  font-weight: 600; color: var(--accent-dark); margin-bottom: 8px;
}
.stats__desc { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }

/* ============================
   PROCESS (BENTO)
   ============================ */
.process { padding: 100px 0 120px; background: var(--bg-warm); position: relative; }
.process::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37,99,235,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.process__header { text-align: center; max-width: 700px; margin: 0 auto 64px; position: relative; z-index: 1; }
.process__title { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 16px; letter-spacing: -0.02em; }
.process__subtitle { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.step-card { padding: 32px 28px; transition: all var(--duration) var(--ease-out-expo); }
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 48px rgba(0,0,0,0.06); }
.step-card__num {
  font-family: 'Clash Display', sans-serif; font-size: 2rem;
  font-weight: 600; color: var(--accent); opacity: 0.3; margin-bottom: 16px;
}
.step-card__name { font-family: 'Clash Display', sans-serif; font-size: 1.15rem; font-weight: 500; margin-bottom: 10px; }
.step-card__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ============================
   SALARY (DARK)
   ============================ */
.salary {
  padding: 120px 0; background: var(--bg-dark); color: var(--text-light);
  position: relative; overflow: hidden;
}
.salary::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 20%, rgba(37,99,235,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.salary__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; position: relative; z-index: 1;
}
.salary__text h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); margin-bottom: 20px; letter-spacing: -0.02em; }
.salary__text h2 span { color: var(--accent-light); }
.salary__text p { font-size: 1.05rem; color: var(--text-light-muted); line-height: 1.8; margin-bottom: 32px; }
.salary__features { list-style: none; margin-bottom: 40px; }
.salary__features li {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  font-size: 0.95rem; color: var(--text-light-muted);
}
.salary__features li svg { width: 18px; height: 18px; color: var(--accent-light); flex-shrink: 0; }
.salary__cards { display: grid; gap: 16px; }
.salary-card {
  padding: 24px 28px; border-radius: 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  position: relative; transition: all var(--duration) var(--ease-out-expo);
}
.salary-card:hover {
  border-color: rgba(37,99,235,0.15); background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.salary-card__label { font-size: 0.95rem; font-weight: 600; }
.salary-card__sub { font-size: 0.78rem; color: var(--text-light-muted); margin-top: 2px; }
.salary-card__amount {
  font-family: 'Clash Display', sans-serif; font-size: 1.6rem;
  font-weight: 600; color: var(--accent-light);
}
.salary-card__amount small { font-size: 0.8rem; font-weight: 400; color: var(--text-light-muted); }

/* ============================
   INFO / QUOTE
   ============================ */
.info { padding: 120px 0; }
.info__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.info__image-frame { position: relative; border-radius: 20px; overflow: hidden; }
.info__image-frame::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  border: 1px solid var(--border-light); z-index: 2; pointer-events: none;
}
.info__image-frame::after {
  content: ''; position: absolute; inset: 6px; border-radius: 16px;
  border: 1px solid rgba(37,99,235,0.06); z-index: 2; pointer-events: none;
}
.info__image-frame img { width: 100%; aspect-ratio: 16/12; object-fit: cover; border-radius: 20px; }
.info__text h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 20px; letter-spacing: -0.02em; }
.info__text p { font-size: 1.05rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 16px; }

/* ============================
   SERVICES
   ============================ */
.services { padding: 120px 0; background: var(--bg-warm); }
.services__header { text-align: center; max-width: 650px; margin: 0 auto 64px; }
.services__title { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 16px; letter-spacing: -0.02em; }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 960px; margin: 0 auto; }
.service-card { padding: 48px 40px; text-align: center; transition: all var(--duration) var(--ease-out-expo); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 56px rgba(0,0,0,0.06); }
.service-card__badge {
  display: inline-flex; width: 56px; height: 56px; border-radius: 16px;
  align-items: center; justify-content: center; margin-bottom: 24px;
}
.service-card__badge--accent { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%); }
.service-card__badge--dark { background: var(--bg-dark); }
.service-card__badge svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; }
.service-card__title { font-family: 'Clash Display', sans-serif; font-size: 1.5rem; font-weight: 500; margin-bottom: 12px; }
.service-card__desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.service-card__features { list-style: none; text-align: left; margin-bottom: 36px; }
.service-card__features li {
  display: flex; align-items: center; gap: 10px; padding: 8px 0;
  font-size: 0.88rem; color: var(--text-secondary);
}
.service-card__features li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ============================
   FAQ (DARK)
   ============================ */
.faq {
  padding: 120px 0; background: var(--bg-dark); color: var(--text-light);
  position: relative; overflow: hidden;
}
.faq::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 30%, rgba(37,99,235,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.faq__header { text-align: center; max-width: 700px; margin: 0 auto 64px; position: relative; z-index: 1; }
.faq__title { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 16px; letter-spacing: -0.02em; }
.faq__subtitle { font-size: 1.05rem; color: var(--text-light-muted); line-height: 1.7; }
.faq__grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.faq-item {
  border-radius: 16px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06); overflow: hidden;
  transition: all 300ms var(--ease-out-expo);
}
.faq-item:hover { border-color: rgba(37,99,235,0.15); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; gap: 16px;
}
.faq-question h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 600; }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(37,99,235,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 300ms var(--ease-out-expo);
}
.faq-toggle svg { width: 14px; height: 14px; color: var(--accent-light); }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 400ms var(--ease-out-expo); }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-light-muted); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 400px; }

/* ============================
   FORM
   ============================ */
.form-section { padding: 120px 0; }
.form-section__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: start; }
.form-section__text h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 16px; letter-spacing: -0.02em; }
.form-section__text p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; }
.form-benefits { list-style: none; }
.form-benefits li {
  display: flex; align-items: center; gap: 12px; padding: 8px 0;
  font-size: 0.9rem; color: var(--text-secondary);
}
.form-benefits li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.form-embed {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--border-light);
  background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,0.04); min-height: 600px;
}
.form-embed iframe { width: 100%; min-height: 700px; border: none; }

/* ============================
   FOOTER
   ============================ */
.footer { padding: 80px 0 40px; background: var(--bg-darker); color: var(--text-light); }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer__brand {
  font-family: 'Clash Display', sans-serif; font-size: 1.1rem; font-weight: 600;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.footer__brand-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.footer__desc { font-size: 0.9rem; color: var(--text-light-muted); line-height: 1.7; max-width: 320px; }
.footer__col-title {
  font-family: 'Clash Display', sans-serif; font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 0.88rem; color: var(--text-light-muted); transition: color 300ms ease; }
.footer__links a:hover { color: var(--accent-light); }
.footer__bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer__copyright { font-size: 0.8rem; color: var(--text-light-muted); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.8rem; color: var(--text-light-muted); transition: color 300ms ease; }
.footer__legal a:hover { color: var(--accent-light); }
.section-divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); margin: 0 auto 24px; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 960px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__mobile-toggle { display: block; }
  .navbar { gap: 16px; }
  .hero__content { grid-template-columns: 1fr; gap: 48px; }
  .hero__image-wrapper { justify-content: center; order: -1; }
  .hero__image-frame { max-width: 400px; }
  .hero { padding: 140px 0 80px; min-height: auto; }
  .hero__stat { bottom: -10px; left: 10px; }
  .salary__inner { grid-template-columns: 1fr; gap: 48px; }
  .info__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-section__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 700px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .process__grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
