:root {
  --bg-primary: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --bg-nav: rgba(15, 15, 15, 0.85);
  --bg-pill: #1a1a1a;
  --bg-cta-section: #0d0d0d;
  --accent: #c8f135;
  --accent-dark: #a8d020;
  --accent-glow: rgba(200, 241, 53, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #555555;
  --text-on-accent: #0a0a0a;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(200, 241, 53, 0.3);
  --font-heading: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;
  --space-11: 120px;
  --space-12: 160px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 8px 40px rgba(200, 241, 53, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
  --frame-max: 1220px;
  --frame-pad: 64px;
  --section-space: 112px;
  --heading-gap: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body[data-theme="light"] {
  --bg-primary: #f6f6f4;
  --bg-card: #ffffff;
  --bg-card-hover: #f2f2ee;
  --bg-nav: rgba(255, 255, 255, 0.92);
  --bg-pill: #ecece8;
  --bg-cta-section: #efefea;
  --accent: #b8e22e;
  --accent-dark: #a6cf24;
  --accent-glow: rgba(184, 226, 46, 0.2);
  --text-primary: #111111;
  --text-secondary: #4f4f4f;
  --text-muted: #7b7b7b;
  --text-on-accent: #0a0a0a;
  --border: rgba(0, 0, 0, 0.1);
  --border-hover: rgba(0, 0, 0, 0.2);
  --border-accent: rgba(184, 226, 46, 0.35);
}

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

a {
  color: inherit;
}

::selection {
  background: var(--accent);
  color: var(--text-on-accent);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

.container {
  width: min(var(--frame-max), calc(100% - (2 * var(--frame-pad))));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-compact {
  padding-top: var(--space-8);
}

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  width: min(780px, calc(100% - 48px));
  padding: 10px 12px 10px 20px;
}

.nav-brand {
  font-family: var(--font-heading);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--text-on-accent);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle {
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--bg-pill);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
  border-color: var(--border-hover);
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
}

.btn-primary {
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  box-shadow: 0 0 0 0 rgba(200, 241, 53, 0);
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 0 28px rgba(200, 241, 53, 0.3);
}

.hero {
  padding-top: calc(var(--space-9) + 20px);
}

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

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.hero-icons.marquee-wrapper,
.logo-ticker.marquee-wrapper {
  overflow: visible;
  mask-image: none;
  -webkit-mask-image: none;
  display: flex;
  justify-content: center;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

.marquee-item {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marquee-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.75;
}

.hero-icons + .hero-icons {
  margin-top: 10px;
}

.hero-icons .marquee-track,
.logo-ticker-track {
  width: 100%;
  justify-content: center;
  animation: none;
}

.eyebrow,
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-label {
  margin-top: var(--space-4);
  animation: fade-up 0.6s ease both;
  text-align: center;
}

.hero-title {
  margin-top: var(--space-5);
  font-family: var(--font-body);
  font-size: clamp(22px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 980px;
  text-align: center;
  animation: fade-up 0.7s ease both;
  animation-delay: 0.2s;
}

.accent-word {
  color: var(--accent);
  display: block;
}

.accent-word img {
  width: 32px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.hero-sub {
  margin-top: 18px;
  max-width: 680px;
  text-align: center;
  color: var(--text-secondary);
  font-size: clamp(15px, 2vw, 18px);
  animation: fade-up 0.6s ease both;
  animation-delay: 0.35s;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
  animation: fade-up 0.6s ease both;
  animation-delay: 0.5s;
}

.hero-works-wrap {
  width: 100%;
  margin-top: 28px;
}

.hero-works-grid {
  margin-top: 0;
}

.showreel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.showreel-btn:hover {
  color: var(--text-primary);
}

.play-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.showreel-btn:hover .play-circle {
  background: var(--accent);
  color: #0a0a0a;
  transform: scale(1.08);
}

.hero-video {
  margin-top: var(--space-8);
  width: min(100%, 980px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  animation: fade-up 0.8s ease both;
  animation-delay: 0.6s;
}

.hero-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.logo-ticker {
  margin-top: var(--space-6);
  width: 100%;
}

.logo-ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.logo-ticker-track img {
  height: 28px;
  opacity: 0.45;
  filter: grayscale(100%);
}

.section-label {
  margin-bottom: 16px;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--heading-gap);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.card-step {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--text-secondary);
  margin-top: 10px;
}

.card-image {
  margin-top: 20px;
  border-radius: var(--radius-md);
  width: 100%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.process-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-grid .card-image {
  margin-top: auto;
  padding-top: 20px;
}

.works-grid {
  margin-top: 0;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
  touch-action: pan-x;
  cursor: grab;
}

.works-grid.auto-scrolling {
  scroll-snap-type: none;
}

.works-grid::-webkit-scrollbar {
  display: none;
}

.works-grid:active {
  cursor: grabbing;
}

.video-card {
  flex: 0 0 220px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.video-card {
  cursor: pointer;
}

.video-card-handle {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.video-card-quote {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.4;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(8px);
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal__content {
  width: min(92vw, 560px);
  position: relative;
}

.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.video-modal video {
  width: 100%;
  max-height: 85vh;
  border-radius: 14px;
  background: #000;
}

.about-copy {
  max-width: 920px;
  color: var(--text-secondary);
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 28px;
}

.stats-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: stretch;
}

.stat-item {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #0d0d0d;
  height: 100%;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.stat-label {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.4;
}

.services-wrap {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-pill);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.service-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.03);
}

.tag-arrow {
  opacity: 0.55;
  transition: opacity 0.2s, transform 0.2s;
}

.service-tag:hover .tag-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.services-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  align-items: start;
}

.services-image {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
}

.feature-item img {
  width: 26px;
  height: 26px;
  margin-top: 2px;
}

.feature-item h3 {
  font-size: 20px;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.feature-item p {
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 14px;
}

.testimonial-track {
  margin-top: 0;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
  cursor: grab;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 380px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-handle {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-followers {
  font-size: 12px;
  color: var(--text-secondary);
}

.testimonial-quote {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.testimonial-stats {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
}

.testimonial-stat-label {
  font-size: 11px;
  color: var(--text-secondary);
}

.testimonial-screenshot {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}

.pricing-toggle {
  display: inline-flex;
  background: var(--bg-pill);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 4px;
  margin-top: 0;
  margin-bottom: 36px;
}

.toggle-option {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
}

.toggle-option.active {
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--text-primary);
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #111 0%, #141a08 100%);
  color: #f4f6ef;
}

.pricing-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-badge {
  color: rgba(244, 246, 239, 0.72);
}

.pricing-plan-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}

.pricing-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.pricing-card.featured .pricing-tagline,
.pricing-card.featured .pricing-price-period {
  color: rgba(244, 246, 239, 0.82);
}

.pricing-price {
  margin: 24px 0 8px;
}

.pricing-price-old {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 8px;
}

.pricing-card.featured .pricing-price-old {
  color: rgba(244, 246, 239, 0.55);
}

.pricing-price-new {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 700;
  line-height: 1;
}

.pricing-price-period {
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
}

.pricing-card.featured .pricing-features li {
  color: rgba(244, 246, 239, 0.9);
}

.pricing-features li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

#faq .section-label,
#faq h2 {
  text-align: center;
}

.faq-list {
  margin-top: 24px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  gap: 16px;
  user-select: none;
  background: transparent;
  border: none;
  text-align: left;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-pill);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  font-size: 18px;
  color: var(--text-secondary);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 16px;
}

.cta-section {
  background: var(--bg-cta-section);
  border-radius: 32px;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(200, 241, 53, 0.22), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(200, 241, 53, 0.12), transparent 42%);
  opacity: 0.45;
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(36px, 5vw, 56px);
}

.cta-section p {
  margin: 14px auto 32px;
  max-width: 560px;
  color: var(--text-secondary);
}

.fullwidth-icon-strip {
  width: 100%;
  padding: 30px 0 42px;
  background: var(--bg-primary);
  overflow: hidden;
  position: relative;
}

.fullwidth-icon-strip__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: nowrap;
  animation: marquee-scroll 26s linear infinite;
  will-change: transform;
  padding-inline: 20px;
}

.fullwidth-icon-strip__track img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.28;
  filter: grayscale(100%);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 28px;
}

.footer-note {
  margin-top: 10px;
  color: var(--text-secondary);
  max-width: 300px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.reveal-stagger > *:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-stagger > *:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-stagger > *:nth-child(3) {
  transition-delay: 0.19s;
}

.reveal-stagger > *:nth-child(4) {
  transition-delay: 0.26s;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  :root {
    --frame-pad: 40px;
    --section-space: 92px;
  }

  .process-grid,
  .pricing-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --frame-pad: 24px;
    --section-space: 80px;
  }

  .navbar {
    top: 12px;
    width: calc(100% - 32px);
    border-radius: 16px;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
  }

  .nav-links {
    display: none;
  }

  .theme-toggle {
    padding: 9px 12px;
  }

  .hero-buttons {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  .hero-works-wrap {
    margin-top: 22px;
  }

  .hero-label,
  .hero-title,
  .hero-sub {
    text-align: left;
    width: 100%;
  }

  .faq-wrap {
    padding-inline: 12px;
  }

  .hero .container {
    align-items: flex-start;
  }

  .hero-video {
    width: 100%;
  }

  .hero {
    padding-top: calc(var(--space-8) + 22px);
  }

  .process-grid,
  .pricing-grid,
  .stats-grid,
  .services-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: 320px;
  }

  .video-card {
    flex-basis: 180px;
  }

  .cta-section {
    border-radius: 20px;
    padding: 48px 24px;
  }

  .fullwidth-icon-strip {
    padding: 24px 0 30px;
  }

  .fullwidth-icon-strip__track {
    gap: 22px;
    animation-duration: 22s;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .carousel-controls {
    margin-top: 18px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .testimonial-card {
    flex-basis: 300px;
  }
}
