:root {
  --primary: #0a0a23;
  --secondary: #f5f5f7;
  --accent: #f5b921;
  --text: #fff;
  --gray: #e5e5e5;
  --font-main: 'Inter', Arial, sans-serif;
  
  /* Mobile-first responsive variables */
  --container-padding: 1rem;
  --section-spacing: 2rem;
  --card-padding: 1.5rem;
  --button-padding: 0.8rem 1.5rem;
  --font-size-base: 1rem;
  --font-size-heading: 2rem;
  --font-size-large: 1.5rem;
  --border-radius: 16px;
  --touch-target: 44px;
}

/* Mobile-first breakpoints */
/* Base styles are for mobile (320px+) */
/* Small tablets: 768px+ */
/* Large tablets: 900px+ */
/* Desktop: 1200px+ */

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

body {
  font-family: var(--font-main);
  background: var(--primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Mobile-first header */
.header {
  background: var(--primary);
  color: var(--text);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 101;
}

.logo-img {
  height: 32px;
  max-width: 140px;
  display: block;
  object-fit: contain;
  vertical-align: middle;
}

/* Mobile hamburger menu button */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile-first navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 35, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 2rem;
}

.nav.nav-open {
  opacity: 1;
  visibility: visible;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  transition: color 0.2s;
  text-transform: uppercase;
  padding: 1rem 2rem;
  min-height: var(--touch-target);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(245, 185, 33, 0.1);
}

/* CTA button positioning */
.cta-btn, .gold-btn {
  background: var(--accent);
  color: var(--primary);
  padding: var(--button-padding);
  border: none;
  border-radius: 30px;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-transform: uppercase;
  min-height: var(--touch-target);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  z-index: 101;
}

.cta-btn:hover, .gold-btn:hover {
  background: #fff;
  color: var(--primary);
}

/* Prevent body scroll when menu is open */
body.nav-open {
  overflow: hidden;
}

/* Mobile-first hero section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: url('assets/img/backgroundag.jpg') center center / cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,35,0.1);
  z-index: 1;
}

.hero-columns {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  padding: 2rem 1rem 3rem 1rem;
  min-height: 80vh;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.hero-headline {
  font-size: 2.5rem;
  font-weight: 900;
  color: #f5b921;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  width: 100%;
  word-break: break-word;
  text-shadow: 0 0 12px rgba(245, 185, 33, 0.35), 0 2px 8px rgba(0,0,0,0.10);
}

.hero-subheadline {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-support {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #f5b921 0%, #ffe066 100%) !important;
  color: #0a0a23 !important;
  font-weight: 900;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: none;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 1px;
  align-self: center !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: auto !important;
  min-height: var(--touch-target);
}

.hero-cta:hover {
  background: #fff !important;
  color: #0a0a23 !important;
}

.hero-limited {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-metrics {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.metrics-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}

.metric-item {
  background: transparent;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  width: 100%;
  max-width: 200px;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  transition: border 0.2s;
}

.metric-icon {
  font-size: 1rem;
  color: #f5b921;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}

.metric-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: #f5b921;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  margin-right: 0.3rem;
}

.metric-label {
  font-size: 0.7rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}

.hero-video-box {
  background: rgba(245, 185, 33, 0.04);
  border: 2px solid #f5b921;
  border-radius: 18px;
  width: 100%;
  max-width: 400px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

.hero-play-btn {
  width: 60px;
  height: 60px;
  background: #f5b921;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: background 0.2s;
  min-height: var(--touch-target);
  min-width: var(--touch-target);
}

.hero-play-btn span {
  color: #0a0a23;
  font-size: 2rem;
  font-weight: bold;
  margin-left: 4px;
}

.hero-play-btn:hover {
  background: #ffe066;
}

.hero-video-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

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

.gold-btn {
  background: var(--accent) !important;
  color: var(--primary) !important;
}

.trusted {
  background: var(--gray);
  padding: 2.5rem 0;
  text-align: center;
}

.trusted-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.trusted-logos img {
  height: 40px;
  opacity: 0.7;
  filter: grayscale(1);
}

/* Mobile-first section dividers */
.section-divider {
  width: 80px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(245,185,33,0.18) 0%, rgba(255,255,255,0.10) 100%);
  border: none;
  margin: 2rem auto;
  opacity: 0.85;
  border-radius: 2px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile-first features section */
.features {
  padding: 0;
  margin: 2rem 0;
}

.features-title {
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
}

.features-subtitle {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.features-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.feature-card {
  background: #181828;
  border: 2px solid #f5b921;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  padding: 1.5rem 1.2rem 1.3rem 1.2rem;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
}

.feature-icon {
  font-size: 2rem;
  color: #f5b921;
  margin-bottom: 1rem;
}

.feature-heading {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.feature-desc {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 400;
}

/* Mobile-first process section */
.process {
  margin: 2rem 0;
}

.process-title {
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  position: relative;
}

.process-step {
  background: #181828;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 1.2rem 1rem 1rem 1rem;
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-icon {
  font-size: 1.8rem;
  color: #f5b921;
  margin-bottom: 0.7rem;
}

.process-label {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.process-desc {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 30px;
  position: relative;
  z-index: 1;
}

.process-line {
  width: 3px;
  height: 100%;
  min-height: 30px;
  background: linear-gradient(180deg, #f5b921 0%, #ffe066 100%);
  border-radius: 2px;
  opacity: 0.7;
  animation: growLine 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes growLine {
  from { width: 0; opacity: 0; }
  to { width: 100%; opacity: 0.7; }
}

/* Mobile-first clients section */
.clients {
  margin: 2rem 0;
}

.clients-agency-label {
  text-align: center;
  width: 100%;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #f5b921;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.clients-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clients-track {
  display: flex !important;
  transition: transform 0.5s ease-in-out;
  gap: 1.5rem;
  flex-direction: row !important;
  align-items: center;
  width: calc(100% - 2rem) !important;
  max-width: 100% !important;
  margin: 1rem auto;
}

.client-card {
  background: #181828;
  border: 2px solid #444;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  padding: 1.5rem 1.2rem 1.3rem 1.2rem;
  width: 300px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.client-card.active {
  border-color: #888;
  opacity: 1;
  transform: scale(1);
}

.client-card.main-active {
  border-color: #fff;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 4px 24px rgba(245,185,33,0.1);
}

.client-logo {
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #22223a;
  padding: 0.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.client-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
}

.client-niche {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
}

.client-quote {
  color: #fff;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
}

.carousel-btn {
  background: #f5b921;
  color: #0a0a23;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-target);
  min-width: var(--touch-target);
}

.carousel-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #f5b921;
  transform: scale(1.2);
}

.dot.mobile-only {
  display: none;
}

/* Mobile-first testimonials section */
.testimonials {
  margin: 2rem 0;
  padding: 2rem 0;
  background: #0a0a23;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  margin-top: 1.5rem;
}

.testimonial-card {
  background: #181828;
  border: 2px solid #f5b921;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  padding: 1.5rem 1.2rem 1.3rem 1.2rem;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
}

.testimonial-card p {
  color: #fff;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1rem;
}

.testimonial-card span {
  color: #f5b921;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Mobile-first contact section */
.contact {
  margin: 2rem 0;
  padding: 2rem 0;
  background: #0a0a23;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.contact-content h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #f5b921;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-content .cta-btn {
  margin-bottom: 2rem;
}

.form-box {
  background: rgba(24,24,40,0.98);
  border-radius: 28px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.18);
  border: 1.5px solid #2d2d44;
  width: 100%;
  max-width: 500px;
  min-height: 200px;
  margin: 0 auto;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-label {
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.2rem;
  display: block;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-align: center;
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  width: 100%;
  justify-content: center;
  align-items: stretch;
}

.form-option {
  background: linear-gradient(90deg, #f5b921 0%, #ffe066 100%);
  color: #0a0a23;
  font-weight: 800;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 0;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  outline: none;
  width: 100%;
  text-align: center;
  min-height: var(--touch-target);
}

.form-option:hover, .form-option.selected {
  background: #fff;
  color: #0a0a23;
  box-shadow: 0 4px 16px rgba(245,185,33,0.18);
}

.form-step {
  min-height: inherit;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0;
}

.form-step-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  justify-content: center;
  align-items: stretch;
}

.form-step-col {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.form-step-col label {
  width: 100%;
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-step-col input,
.form-step-col textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1.5px solid #2d2d44;
  font-size: 1rem;
  background: #22223a;
  color: #fff;
  outline: none;
  box-sizing: border-box;
  min-height: var(--touch-target);
}

.form-step-col textarea {
  min-height: 80px;
  resize: vertical;
}

.form-step button[type="submit"] {
  display: block;
  margin: 1rem auto 0 auto;
  min-height: var(--touch-target);
}

.form-confirmation {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 1.5rem;
}

/* Mobile-first footer section */
.footer {
  background: #0a0a23;
  color: #f5b921;
  text-align: center;
  padding: 2rem 0 1.5rem 0;
  font-size: 1rem;
  margin-top: 2rem;
  width: 100%;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #f5b921;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
  min-height: var(--touch-target);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-links a:hover {
  color: #fff;
}

.footer-divider {
  display: none; /* Hide divider on mobile */
}

.footer-desc {
  color: #fff;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.8;
  max-width: 100%;
  line-height: 1.5;
  text-align: center;
}

.footer-disclaimer {
  display: block;
  margin-top: 1rem;
  color: #b0b0b0;
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.4;
  text-align: center;
}

.footer-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

.footer-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.footer-email {
  margin-top: 0.5rem;
}

.footer-email a {
  color: #fff;
  font-size: 0.95rem;
  text-decoration: underline;
  opacity: 0.85;
  min-height: var(--touch-target);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copyright {
  color: #f5b921;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-align: center;
}

.footer-cta-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 2px solid #f5b921;
  background: transparent;
  color: #f5b921;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  min-height: var(--touch-target);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-cta-btn:hover {
  background: #f5b921;
  color: #0a0a23;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Small tablets and large phones (768px+) */
@media (min-width: 768px) {
  .container {
    width: calc(100% - 3rem);
    padding: 0 1.5rem;
  }
  
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  
  .nav {
    position: static;
    background: transparent;
    backdrop-filter: none;
    flex-direction: row;
    gap: 1.5rem;
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
  
  .nav a {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
  }
  
  .nav a:hover {
    background: transparent;
    border-color: transparent;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero-headline {
    font-size: 3rem;
  }
  
  .hero-subheadline {
    font-size: 1.3rem;
  }
  
  .hero-support {
    font-size: 1.05rem;
  }
  
  .hero-video-box {
    max-width: 450px;
    height: 280px;
  }
  
  .metrics-list {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .metric-item {
    width: auto;
    max-width: none;
    min-width: 120px;
  }
  
  .features-title {
    font-size: 2rem;
  }
  
  .process-title {
    font-size: 2rem;
  }
  
  .section-divider {
    width: 100px;
    margin: 2.5rem auto;
  }
  
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .footer-left {
    align-items: flex-start;
    text-align: left;
  }
  
  .footer-right {
    align-items: flex-end;
    text-align: right;
  }
  
  .footer-links {
    flex-direction: row;
    gap: 1.2rem;
    align-items: center;
  }
  
  .footer-links a {
    justify-content: flex-start;
  }
  
  .footer-desc {
    text-align: left;
  }
  
  .footer-disclaimer {
    text-align: left;
  }
  
  .footer-copyright {
    text-align: right;
  }
  
  .footer-email a {
    justify-content: flex-end;
  }
  
  .footer-cta-btn {
    align-self: flex-end;
  }
  
  .footer-divider {
    display: inline;
  }
}

/* Large tablets (900px+) */
@media (min-width: 900px) {
  .hero-columns {
    flex-direction: row;
    gap: 3rem;
    padding: 2rem 2rem 4rem 2rem;
    text-align: left;
    align-items: center;
  }
  
  .hero-left {
    align-items: flex-start;
    text-align: left;
  }
  
  .hero-right {
    height: 100%;
  }
  
  .hero-video-box {
    width: 480px;
    height: 300px;
  }
  
  .hero-headline {
    font-size: 3.5rem;
    line-height: 1.05;
    margin-bottom: 2rem;
  }
  
  .hero-subheadline {
    font-size: 1.4rem;
    margin-bottom: 1.7rem;
  }
  
  .hero-support {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-cta {
    align-self: flex-start !important;
    font-size: 1.2rem;
    padding: 1.1rem 2.8rem;
    margin-bottom: 1.7rem;
  }
  
  .hero-metrics {
    justify-content: flex-start;
  }
  
  .metrics-list {
    justify-content: flex-start;
  }
  
  .features-cards {
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .feature-card {
    flex: 1 1 300px;
    min-width: 280px;
    max-width: 340px;
    padding: 2rem 1.5rem 1.8rem 1.5rem;
  }
  
  .process-steps {
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .process-step {
    flex: 1 1 160px;
    min-width: 160px;
    max-width: 200px;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  }
  
  .process-connector {
    width: 40px;
    height: 40px;
  }
  
  .process-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f5b921 0%, #ffe066 100%);
  }
  
  .clients-carousel {
    max-width: calc((350px * 5) + (2.2rem * 4) + 80px);
    padding: 0 40px;
  }
  
  .clients-track {
    flex-direction: row;
    gap: 2.2rem;
    align-items: stretch;
  }
  
  .client-card {
    width: 350px;
    flex-shrink: 0;
    opacity: 0.5;
    transform: scale(0.9);
    margin-bottom: 0;
  }
  
  .client-card.active {
    opacity: 0.8;
    transform: scale(0.95);
  }
  
  .client-card.main-active {
    opacity: 1;
    transform: scale(1);
  }
  
  .client-logo {
    width: 100px;
    height: 100px;
  }
  
  .testimonials-list {
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .testimonial-card {
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 380px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
  
  .form-box {
    max-width: 700px;
    padding: 2rem 2rem 1.8rem 2rem;
  }
  
  .form-options {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .form-option {
    width: 200px;
    min-width: 180px;
  }
  
  .form-step-row {
    flex-direction: row;
    gap: 2rem;
  }
  
  .section-divider {
    width: 120px;
    margin: 3rem auto;
  }
  
  .features {
    margin: 3rem 0;
  }
  
  .process {
    margin: 3rem 0;
  }
  
  .clients {
    margin: 3rem 0;
  }
  
  .testimonials {
    margin: 3rem 0;
    padding: 3rem 0;
  }
  
  .contact {
    margin: 3rem 0;
    padding: 3rem 0;
  }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
  .container {
    width: 90%;
    padding: 0 2rem;
  }
  
  .hero-headline {
    font-size: 4.2rem;
    margin-bottom: 2.2rem;
  }
  
  .hero-video-box {
    width: 520px;
    height: 320px;
  }
  
  .features-title {
    font-size: 2.3rem;
  }
  
  .process-title {
    font-size: 2.1rem;
  }
  
  .section-divider {
    margin: 4rem auto;
  }
  
  .features {
    margin: 4rem 0;
  }
  
  .process {
    margin: 4rem 0;
  }
  
  .clients {
    margin: 4rem 0;
  }
  
  .testimonials {
    margin: 4rem 0;
    padding: 4rem 0;
  }
  
  .contact {
    margin: 4rem 0;
    padding: 4rem 0;
  }
  
  .form-box {
    max-width: 900px;
    padding: 2.5rem 2.5rem 2.2rem 2.5rem;
  }
}

/* Large desktop (1400px+) */
@media (min-width: 1400px) {
  .hero-columns {
    max-width: 1400px;
    gap: 4rem;
  }
  
  .hero-headline {
    font-size: 4.5rem;
  }
  
  .hero-video-box {
    width: 580px;
    height: 360px;
  }
} 