/* =========================================
   Reset & Variables
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --bg-elevated: #f5f5f7;
  --border: rgba(10, 10, 10, 0.08);
  --text: #0f0f12;
  --text-muted: #6b6b76;

  --purple: #7c3aed;
  --blue: #3b82f6;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container-width: 1200px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, nav {
  list-style: none;
}

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

section {
  padding: 110px 0;
  position: relative;
}

/* =========================================
   Scroll reveal animations
========================================= */
.reveal,
.stagger {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}

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

/* =========================================
   Buttons
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-white {
  background: var(--text);
  color: var(--bg);
}

.btn-white:hover {
  background: #2e2e35;
  box-shadow: 0 8px 28px rgba(15, 15, 18, 0.18);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(10, 10, 10, 0.18);
}

.btn-outline:hover {
  border-color: var(--text);
  background: rgba(10, 10, 10, 0.04);
}

/* Fey-style radial gradient pill with inset highlight border */
.btn-fey {
  background: radial-gradient(61% 50% at 49% 50%, rgba(124, 58, 237, 0.9) 0%, rgba(59, 130, 246, 0.75) 100%);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-fey:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 28px rgba(124, 58, 237, 0.55);
}

/* =========================================
   Section helpers
========================================= */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 720px;
  color: var(--text);
}

/* =========================================
   Navbar
========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 11px 24px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* =========================================
   Hero (full-screen video, no overlaid text)
========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08);
}

/* Keeps the video's own bright colours visible (no dark wash) and
   fades to the page background at the bottom for a seamless handoff */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0.85) 88%, #ffffff 100%);
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
}

.scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 8px auto 0;
  border-radius: 2px;
  background: #ffffff;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* =========================================
   Hero content (below the video, fades up on scroll)
========================================= */
.hero-content {
  position: relative;
  text-align: center;
  padding: 120px 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-inner h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 900px;
}

.hero-subtitle {
  margin-top: 24px;
  max-width: 560px;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================
   Video showcase (Voice to Quote System)
========================================= */
.video-showcase {
  background: #ffffff;
  text-align: center;
  padding: 140px 0;
}

.video-showcase-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-showcase-title {
  margin-top: 4px;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 820px;
  color: var(--text);
}

.video-showcase-subtitle {
  margin-top: 24px;
  max-width: 580px;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.video-player {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin-top: 56px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: 0 24px 64px rgba(10, 10, 10, 0.16);
}

.video-player-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 84px;
  height: 84px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.24);
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.video-play-btn svg {
  width: 30px;
  height: 30px;
  margin-left: 3px;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.3);
}

.video-play-btn.is-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}

/* Slow-rotating gradient mesh layered behind the glow orbs */
.hero-mesh {
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(124, 58, 237, 0.16), rgba(59, 130, 246, 0.16), rgba(124, 58, 237, 0.16));
  filter: blur(80px);
  opacity: 0.7;
  animation: meshRotate 50s linear infinite;
}

@keyframes meshRotate {
  to { transform: rotate(360deg); }
}

.orb-purple {
  width: 520px;
  height: 520px;
  background: var(--purple);
  top: -120px;
  left: -120px;
  animation: floatOrb 22s ease-in-out infinite;
}

.orb-blue {
  width: 460px;
  height: 460px;
  background: var(--blue);
  bottom: -140px;
  right: -100px;
  animation: floatOrb 26s ease-in-out infinite reverse;
}

.orb-purple-2 {
  width: 360px;
  height: 360px;
  background: var(--purple);
  top: 40%;
  right: 15%;
  opacity: 0.22;
  animation: floatOrb 18s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
}

/* =========================================
   Intro (below hero)
   Same purple/white gradient backdrop, font
   scale and spacing as the hero section.
========================================= */
.intro {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5eefd 100%);
}

.intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 820px;
}

.intro-subtitle {
  margin-top: 24px;
  max-width: 580px;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.intro-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================
   Stats bar
========================================= */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  background: linear-gradient(180deg, #f5eefd 0%, #f1e7fb 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number,
.stat-suffix {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-item p {
  margin-top: 10px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =========================================
   Services
========================================= */
.services {
  background: linear-gradient(180deg, #f1e7fb 0%, #ece0f9 100%);
}

.services-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 10, 10, 0.14);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.06);
}

/* Dim sibling cards when one is hovered, drawing focus to it */
.services-grid:hover .service-card:not(:hover) {
  opacity: 0.5;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 10, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--purple);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* =========================================
   How It Works
========================================= */
.how-it-works {
  background: linear-gradient(180deg, #ece0f9 0%, #e4d3f5 100%);
}

.steps {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  position: relative;
}

.step-number {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 10, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--purple);
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
}

/* =========================================
   Who We Serve
========================================= */
.who-we-serve {
  background: linear-gradient(180deg, #e4d3f5 0%, #d6bef0 100%);
}

.audience-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.audience-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: transform var(--transition), border-color var(--transition);
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 10, 10, 0.14);
}

.audience-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 10, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--purple);
}

.audience-icon svg {
  width: 24px;
  height: 24px;
}

.audience-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.audience-card p {
  color: var(--text-muted);
}

/* Decorative shuffle grid - periodically reshuffled gradient cells */
.shuffle-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(2, 70px);
  gap: 10px;
}

.shuffle-cell {
  border-radius: var(--radius-sm);
  transition: transform 1.2s ease, opacity 1.2s ease;
}

/* =========================================
   CTA
========================================= */
.cta {
  /* Bridges the lavender mid-section into the footer's pure black */
  --text: #ffffff;
  --text-muted: #d9c8f0;

  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #d6bef0 0%, #000000 100%);
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.cta-orb {
  top: -160px;
  left: 10%;
}

.cta-orb-2 {
  bottom: -180px;
  right: 5%;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-inner p {
  margin: 16px auto 36px;
  max-width: 480px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* =========================================
   Footer
========================================= */
.footer {
  /* Footer stays a dark "island" - all footer text is bright white */
  --text: #ffffff;
  --text-muted: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  background: #000000;
  display: flex;
  flex-direction: column;
}

.footer-content {
  padding-top: 64px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 0 24px;
}

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

.footer-col-right {
  align-items: flex-end;
  text-align: right;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-copyright-icon {
  height: 14px;
  width: auto;
}

.footer-back-to-top {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}

.footer-back-to-top:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition);
}

.footer-socials a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

/* Static colour block at the bottom of the footer — animation removed */
.wave-container {
  height: 200px;
  overflow: hidden;
  background: #d6bef0;
}

.wave-bar {
  display: none;
}

/* =========================================
   Contact Form (inside CTA section)
========================================= */
.contact-form-section {
  margin-top: 72px;
  padding-bottom: 40px;
}

.contact-form-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  backdrop-filter: blur(12px);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form select option {
  background: #1a0e2e;
  color: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(124, 58, 237, 0.7);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-success-msg,
.form-error-msg {
  display: none;
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.form-success-msg {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.form-error-msg {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

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

  .steps,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 76px 0;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .nav-links.open {
    max-height: 320px;
    padding: 16px 24px;
  }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

  .steps,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .shuffle-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 56px);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 28px;
  }

  .footer-col-right {
    align-items: flex-start;
    text-align: left;
  }

  .contact-form {
    padding: 32px 24px;
  }

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

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
