/* ============================================
   JOBSCROLLER — Static Site Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* --- Variables --- */
:root {
  --primary: #1a3a5c;
  --primary-light: #2563eb;
  --primary-lighter: #3b82f6;
  --primary-bg: #edf2fa;
  --accent: #c43a4b;
  --accent-hover: #a8303f;
  --dark: #0a1929;
  --text: #2a3a4e;
  --text-light: #5a6a7e;
  --text-lighter: #8a96a8;
  --bg: #f5f8fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --icon-color: #7a9cbe;
  --shadow-sm: 0 1px 3px rgba(10,25,41,0.06);
  --shadow-md: 0 4px 24px rgba(10,25,41,0.08);
  --shadow-lg: 0 8px 40px rgba(10,25,41,0.12);
  --shadow-xl: 0 20px 60px rgba(10,25,41,0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--primary); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; }
p { color: var(--text-light); font-size: 1.05rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,58,75,0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196,58,75,0.35);
}
.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 32px; width: auto; }

/* Desktop nav */
.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-mobile { display: none; }
.nav-desktop a {
  padding: 8px 18px;
  border-radius: 60px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.nav-desktop a:hover, .nav-desktop a.active {
  background: var(--primary-bg);
  color: var(--primary);
}
.nav-desktop .btn-nav-cta {
  background: var(--primary);
  color: var(--white);
  margin-left: 8px;
  padding: 10px 22px;
}
.nav-desktop .btn-nav-cta:hover { background: var(--dark); }

/* Mobile nav */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--primary); border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 960px) {
  .mobile-toggle { display: flex; }
  .nav-desktop { display: none; }

  /* Mobile slide menu — outside header, no backdrop-filter issues */
  .nav-mobile {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: #ffffff;
    box-shadow: 4px 0 30px rgba(10,25,41,0.15);
    z-index: 10000;
    transform: translateX(-100%);
    will-change: transform;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-mobile.open { transform: translateX(0); }
  .nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile-header img { height: 28px; }
  .nav-mobile-close {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
  }
  .nav-mobile-close:hover { background: var(--primary-bg); color: var(--primary); }
  .nav-mobile a {
    display: block;
    padding: 16px 24px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
  }
  .nav-mobile a:hover, .nav-mobile a.active { background: var(--primary-bg); color: var(--primary); }
  .nav-mobile .btn-nav-cta {
    margin: 24px;
    text-align: center;
    color: #ffffff;
    background: var(--primary);
    padding: 14px 24px;
    border-bottom: none;
    border-radius: var(--radius-md);
  }
  .nav-mobile .btn-nav-cta:hover { background: var(--dark); }
}

/* ============================================
   HERO — Lateral gradient, no white fade
   ============================================ */
.hero {
  position: relative;
  padding: 150px 0 100px;
  background: linear-gradient(90deg, #0a1929 0%, #0d2240 20%, #152e4d 40%, #1a3a5c 60%, #1e4d6e 80%, #1a3a5c 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(10,25,41,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 90% 30%, rgba(37,99,235,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 70% 70%, rgba(196,58,75,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px 7px 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 60px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(196,58,75,0.5);
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero h1 { color: var(--white); max-width: 680px; margin-bottom: 22px; font-weight: 800; }
.hero p { color: rgba(255,255,255,0.65); max-width: 520px; font-size: 1.12rem; margin-bottom: 40px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero sub-pages */
.hero-sub { padding: 130px 0 60px; text-align: center; }
.hero-sub h1 { max-width: 780px; margin: 0 auto 20px; }
.hero-sub p { margin: 0 auto 36px; text-align: center; }
.hero-sub .hero-actions { justify-content: center; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header p { margin-top: 12px; }
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ============================================
   AUDIENCE CARDS (Homepage)
   ============================================ */
.audience-section { padding: 80px 0; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  opacity: 0; transition: var(--transition);
}
.audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.audience-card:hover::before { opacity: 1; }
.audience-card-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  background: var(--primary-bg);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--icon-color);
}
.audience-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.audience-card p { font-size: 0.95rem; margin-bottom: 24px; }
.audience-card .btn { padding: 10px 24px; font-size: 0.85rem; }

/* ============================================
   FEATURES GRID
   ============================================ */
.features-section { padding: 80px 0; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 18px;
  background: var(--primary-bg);
  color: var(--icon-color);
}
.feature-card h4 { margin-bottom: 10px; color: var(--primary); }
.feature-card p { font-size: 0.92rem; line-height: 1.65; }

/* ============================================
   WHY / VALUE PROPS
   ============================================ */
.why-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #0a1929 0%, #0d2240 30%, #1a3a5c 60%, #152e4d 100%);
  color: var(--white);
}
.why-section .section-header h2 { color: var(--white); }
.why-section .section-header p { color: rgba(255,255,255,0.6); }
.why-section .section-label { color: rgba(255,255,255,0.4); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.why-card {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.why-icon {
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
}
.why-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }

/* ============================================
   CONTENT SECTION (sub-pages intro)
   ============================================ */
.content-intro { padding: 80px 0; }
.content-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.content-intro-text h2 { margin-bottom: 20px; }
.content-intro-text p { margin-bottom: 24px; line-height: 1.8; }
.content-intro-visual .visual-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-bg), #dbeafe);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--icon-color);
}

/* ============================================
   STEPS / PROCESS
   ============================================ */
.steps-section { padding: 80px 0; background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  opacity: 0.2;
}
.step-card { text-align: center; position: relative; }
.step-number {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 2px solid var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.3rem;
  color: var(--primary-light);
  position: relative; z-index: 2;
  transition: var(--transition);
}
.step-card:hover .step-number {
  background: var(--primary-light);
  color: var(--white);
  transform: scale(1.1);
}
.step-card h4 { margin-bottom: 10px; font-size: 0.95rem; }
.step-card p { font-size: 0.85rem; line-height: 1.6; color: var(--text-lighter); }

/* ============================================
   LOGOS / TRUST BAR
   ============================================ */
.logos-section { padding: 60px 0; background: var(--white); overflow: hidden; }
.logos-section .section-header { margin-bottom: 36px; }
.logos-row {
  display: flex;
  align-items: center;
  gap: 48px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}
.logos-row::-webkit-scrollbar { display: none; }
.logos-row img {
  height: 44px; width: auto;
  flex-shrink: 0;
  transition: var(--transition);
}
.logos-carousel-wrapper {
  position: relative;
}
.logos-carousel-wrapper .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  font-size: 18px;
  color: var(--text);
}
.logos-carousel-wrapper .carousel-btn:hover {
  background: var(--primary-bg);
  color: var(--primary);
}
.logos-carousel-wrapper .carousel-btn.prev { left: -20px; }
.logos-carousel-wrapper .carousel-btn.next { right: -20px; }
.logos-carousel-wrapper .carousel-btn.hidden { display: none; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
  padding: 120px 0 80px;
  background: var(--white);
}
.legal-section h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 16px;
}
.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 12px;
}
.legal-section p,
.legal-section li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 12px;
}
.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-section a {
  color: var(--primary-light);
  text-decoration: underline;
}
.legal-update {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 24px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}
.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 12px 16px;
  text-align: left;
}
.legal-table th {
  background: var(--primary-bg);
  font-weight: 600;
  color: var(--primary);
}
.legal-table td {
  color: var(--text);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-section { padding: 80px 0; background: var(--white); }
.page-form-section { padding: 80px 0; background: var(--bg); }

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-wrapper h2 { text-align: center; margin-bottom: 8px; }
.form-wrapper > p { text-align: center; margin-bottom: 36px; font-size: 0.95rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-group label .required { color: var(--accent); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { text-align: center; margin-top: 28px; }
.form-submit .btn { padding: 16px 48px; font-size: 1rem; }

/* ============================================
   FORM ALERTS
   ============================================ */
.form-alert {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 16px;
  animation: slideDown 0.4s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.form-alert-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 600px;
  width: 100%;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.95rem;
}
.form-alert-inner i {
  font-size: 28px;
  flex-shrink: 0;
}
.form-alert-inner p {
  margin: 0;
  line-height: 1.5;
}
.form-alert-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.6;
  flex-shrink: 0;
}
.form-alert-close:hover { opacity: 1; }
.form-alert-success .form-alert-inner {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.form-alert-success i { color: #10b981; }
.form-alert-error .form-alert-inner {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.form-alert-error i { color: #ef4444; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-brand a.footer-email { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.footer-brand a.footer-email:hover { color: var(--white); }

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .audience-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-intro-grid { grid-template-columns: 1fr; }
  .content-intro-visual { order: -1; }
}
@media (max-width: 768px) {
  .hero { padding: 130px 0 80px; }
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .form-wrapper { padding: 32px 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-sub .hero-actions { align-items: center; }
  .logos-row { gap: 28px; }
  .logos-row img { height: 32px; }
  .logos-carousel-wrapper .carousel-btn { width: 32px; height: 32px; font-size: 14px; }
  .logos-carousel-wrapper .carousel-btn.prev { left: -10px; }
  .logos-carousel-wrapper .carousel-btn.next { right: -10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
