@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', 'Poppins', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #181818 0%, #232526 100%);
  color: #fff;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

/* ==================== SCROLL ANIMATIONS ==================== */

/* Hide elements initially */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in.animate-in {
  opacity: 1;
}

/* Slide up animation */
.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Slide in from left */
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Slide in from right */
.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up animation */
.scale-up {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-up.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animations for child elements */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-children.animate-in > *:nth-child(1) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.animate-in > *:nth-child(2) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.animate-in > *:nth-child(3) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.animate-in > *:nth-child(4) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.animate-in > *:nth-child(5) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.animate-in > *:nth-child(6) {
  transition-delay: 0.6s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.animate-in > *:nth-child(7) {
  transition-delay: 0.7s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.animate-in > *:nth-child(8) {
  transition-delay: 0.8s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.animate-in > *:nth-child(9) {
  transition-delay: 0.9s;
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.animate-in > *:nth-child(10) {
  transition-delay: 1s;
  opacity: 1;
  transform: translateY(0);
}

/* Rotate in animation */
.rotate-in {
  opacity: 0;
  transform: rotate(-5deg) scale(0.95);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.rotate-in.animate-in {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* ==================== END SCROLL ANIMATIONS ==================== */

main {
  margin-top: 0;
}
.site-header {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 1.1rem 0;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid #222;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.3);
}

.site-footer {
  background: #000;
  color: #fff;
  padding: 1.1rem 0;
  border-bottom: 1px solid #222;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
}
.site-footer {
  background: linear-gradient(120deg, #0a0a0a 80%, #181818 100%) !important;
  color: #fff;
  padding: 3.5rem 0 2.2rem 0;
  border-top: 3px solid #FF6A00;
  box-shadow: 0 -8px 48px 0 rgba(255,106,0,0.13), 0 -2px 24px 0 rgba(0,0,0,0.18);
  position: relative;
  z-index: 2;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.8rem;
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0 1.5rem;
}
.site-footer span {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(255,106,0,0.10);
  background: linear-gradient(90deg, #fff 60%, #FF6A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  gap: 1.2rem;
  min-height: 48px;
  flex-wrap: nowrap;
  overflow-x: visible;
}
.logo-placeholder {
  height: 64px;
  min-width: 100px;
  display: flex;
  align-items: center;
}
nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex: 1;
  min-height: 40px;
  overflow-x: visible;
  white-space: normal;
}
.nav-btn, nav .cta {
  color: #fff;
  background: none;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  height: 40px;
  line-height: 40px;
  padding: 0 1.2rem;
  text-decoration: none;
  transition: color 0.18s, background 0.18s, box-shadow 0.18s, border 0.18s, transform 0.15s;
  box-shadow: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
  margin: 0;
  white-space: nowrap;
}
.nav-btn {
  background: rgba(24,24,24,0.18);
}
.nav-btn:hover, .nav-btn:focus {
  color: #FF6A00;
  background: rgba(255,106,0,0.10);
}
nav .cta {
  background: linear-gradient(90deg, #FF6A00 60%, #FFB450 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(255,106,0,0.10);
  margin-left: 0.7rem;
}
nav .cta:hover, nav .cta:focus {
  background: #fff;
  color: #FF6A00;
  box-shadow: 0 6px 32px 0 rgba(255,106,0,0.13);
  transform: translateY(-2px) scale(1.05);
}
.logo-img {
  height: 64px;
  max-width: 200px;
  object-fit: contain;
  vertical-align: middle;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}
.hero {
  text-align: center;
  padding: 2.5rem 1rem 3rem 1rem;
  background: #18191b !important;
  margin-top: 0;
}
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero-col {
  background: rgba(24,24,24,0.85);
  border-radius: 16px;
  padding: 2.2rem 1.7rem;
  flex: 1 1 320px;
  min-width: 300px;
  max-width: 400px;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
  border: 1px solid #232526;
  transition: box-shadow 0.2s, border 0.2s;
}
.hero-col:hover, .hero-col:focus-within {
  box-shadow: 0 8px 32px 0 rgba(255,106,0,0.10);
  border: 1.5px solid #FF6A00;
}
.hero-col h1, .hero-col h2 {
  font-size: 2.1rem;
  margin-bottom: 1.1rem;
  line-height: 1.1;
}
.hero-col.story {
  background: rgba(24,24,24,0.92);
  max-width: 500px;
}
.hero-col .cta.primary {
  margin-top: 1.2rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: auto;
  min-width: 0;
  max-width: 220px;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-align: center;
}
.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.subhead {
  font-size: 1.18rem;
  color: #ccc;
  margin-bottom: 2.2rem;
}
.value-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
}
.value-bullets li {
  margin: 0.7rem 0;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}
.cta, .cta.primary {
  display: inline-block;
  background: #FF6A00;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.85rem 2.2rem;
  font-weight: 700;
  font-size: 1.08rem;
  cursor: pointer;
  text-decoration: none;
  margin-top: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(255,106,0,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.cta.primary:hover, .cta.primary:focus, .cta:hover, .cta:focus {
  background: #fff;
  color: #FF6A00;
  box-shadow: 0 4px 24px 0 rgba(255,106,0,0.18);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}
.why-partner {
  background: linear-gradient(135deg, #181818 60%, #232526 100%);
  padding: 3.5rem 1rem;
  text-align: center;
  border-radius: 18px;
  margin: 2.5rem auto;
  width: 96%;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.10);
}
.pillars {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin: 2.2rem 0;
}
.pillar {
  background: rgba(24,24,24,0.92);
  border-radius: 12px;
  padding: 2.2rem 1.2rem;
  flex: 1;
  box-shadow: 0 2px 12px 0 rgba(255,106,0,0.07);
  border: 1px solid #232526;
  transition: box-shadow 0.2s, border 0.2s;
}
.pillar:hover, .pillar:focus-within {
  box-shadow: 0 4px 24px 0 rgba(255,106,0,0.13);
  border: 1.5px solid #FF6A00;
}
.pillar .icon {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
  color: #FF6A00;
}
.contact {
  width: 100vw;
  left: 0;
  right: 0;
  position: relative;
  z-index: 100;
  background: #000 !important;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40vh;
  box-shadow: none !important;
  overflow: hidden;
}

.contact-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.4) contrast(1.1);
  z-index: 0;
}

.contact-content {
  background: linear-gradient(145deg, rgba(30,30,32,0.92) 0%, rgba(20,20,22,0.95) 100%);
  border-radius: 20px;
  box-shadow: 0 12px 40px 0 rgba(0,0,0,0.5), 0 0 1px rgba(255,106,0,0.2);
  padding: 2.5rem 2.5rem 2.2rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.1);
  margin: 0 auto;
  overflow: hidden;
}

.contact-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FF6A00, transparent);
  border-radius: 0 0 4px 4px;
}

.contact-content::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,106,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: contactGlow 8s ease-in-out infinite;
}

@keyframes contactGlow {
  0%, 100% { opacity: 0.3; transform: translate(0, 0) scale(1); }
  50% { opacity: 0.6; transform: translate(-10%, -10%) scale(1.1); }
}

.contact-headline {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -1.2px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.contact-headline::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #FF6A00;
  border-radius: 2px;
}

.contact-subtext {
  color: #d1d5db;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF6A00 0%, #FF8533 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 10px;
  padding: 1rem 2.5rem;
  text-decoration: none;
  box-shadow: 0 8px 24px 0 rgba(255,106,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-cta:hover, .contact-cta:focus {
  background: linear-gradient(135deg, #FF8533 0%, #FFB450 100%);
  box-shadow: 0 12px 40px 0 rgba(255,106,0,0.5), 0 4px 16px rgba(255,106,0,0.3);
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255,255,255,0.1);
}

.contact-cta:hover::before {
  opacity: 1;
}

.contact-cta:active {
  transform: translateY(-1px) scale(0.98);
}
@media (max-width: 900px) {
  .contact {
    padding: 2.5rem 0;
    min-height: 35vh;
  }
  
  .contact-content {
    padding: 2rem 1.5rem 1.8rem 1.5rem;
    max-width: 90%;
  }
  
  .contact-headline {
    font-size: 1.7rem;
    letter-spacing: -0.8px;
    margin-bottom: 0.8rem;
  }
  
  .contact-headline::after {
    width: 45px;
  }
  
  .contact-subtext {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    margin-top: 1.2rem;
  }
  
  .contact-cta {
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
    width: 100%;
    max-width: 260px;
  }
}
#contact-form {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: linear-gradient(135deg, rgba(24,24,24,0.98) 80%, rgba(255,106,0,0.08) 100%);
  border-radius: 14px;
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  box-shadow: 0 4px 24px 0 rgba(255,106,0,0.10);
  border: 1.5px solid #232526;
  backdrop-filter: blur(4px);
  align-items: stretch;
}
#contact-form input, #contact-form textarea {
  padding: 1rem;
  border-radius: 8px;
  border: 1.5px solid #222;
  background: #181818cc;
  color: #fff;
  font-size: 1.08rem;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 1px 4px 0 rgba(255,106,0,0.04);
}
#contact-form input:focus, #contact-form textarea:focus {
  outline: none;
  border: 1.5px solid #FF6A00;
  box-shadow: 0 2px 12px 0 rgba(255,106,0,0.13);
  background: #232526cc;
}
#contact-form button {
  margin-top: 1rem;
  background: linear-gradient(90deg, #FF6A00 60%, #FFB450 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.13rem;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  box-shadow: 0 2px 12px 0 rgba(255,106,0,0.13);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
  cursor: pointer;
  letter-spacing: 0.01em;
}
#contact-form button:hover, #contact-form button:focus {
  background: #fff;
  color: #FF6A00;
  box-shadow: 0 6px 32px 0 rgba(255,106,0,0.18);
  transform: translateY(-2px) scale(1.05);
}
#contact-form textarea {
  min-height: 80px;
  resize: vertical;
}
#contact-form input[type="text"][name="_honeypot"] {
  display: none !important;
}
#contact-form .form-status {
  margin-top: 0.7rem;
  min-height: 1.5em;
  color: #FF6A00;
  font-weight: 600;
  text-align: center;
}
::-webkit-input-placeholder { color: #bbb; }
::-moz-placeholder { color: #bbb; }
:-ms-input-placeholder { color: #bbb; }
::placeholder { color: #bbb; }
@media (min-width: 900px) {
  .pillars {
    flex-direction: row;
  }
  .container {
    flex-direction: row;
  }
}
@media (max-width: 900px) {
  .container {
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    min-height: 48px;
    flex-wrap: nowrap;
    overflow-x: visible;
  }
  nav {
    gap: 0.5rem;
    flex-wrap: nowrap;
    justify-content: flex-end;
    min-height: 40px;
    overflow-x: visible;
    white-space: normal;
  }
  .hero-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-col {
    max-width: 100%;
  }
  .nav-btn, .cta {
    font-size: 1rem;
    padding: 0.6rem 1rem;
    margin-right: 0.2rem;
    margin-left: 0;
    height: unset;
  }
  .logo-img {
    height: 28px;
    max-width: 80px;
  }
  .contact {
    flex-direction: column;
    max-width: 98vw;
    border-radius: 16px;
    min-height: unset;
  }
  .contact-left, .contact-right {
    max-width: 100%;
    min-width: 0;
    padding: 2rem 1rem 1.2rem 1rem;
  }
  .contact-headline {
    font-size: 2rem;
    letter-spacing: -1px;
  }
  #contact-form {
    border-radius: 14px;
    padding: 2rem 1rem 1.2rem 1rem;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .container {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    min-height: 48px;
    flex-wrap: nowrap;
    overflow-x: visible;
  }
  nav {
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: flex-end;
    overflow-x: visible;
    white-space: normal;
  }
  .hero, .why-partner, .contact {
    padding: 2rem 0.5rem;
    border-radius: 10px;
    width: 99%;
  }
  .hero-col {
    padding: 1.2rem 0.5rem;
  }
  #contact-form {
    padding: 1.2rem 0.5rem 0.5rem 0.5rem;
  }
}
.orange {
  color: #FF6A00;
  font-style: italic;
  font-weight: 700;
}
.black {
  color: #fff;
  font-weight: 700;
}
.landing-hero {
  position: relative;
  min-height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}
.landing-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(255,106,0,0.75) 0%, rgba(255,180,80,0.45) 100%), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  filter: brightness(0.95) blur(0.5px);
  z-index: 1;
}
.landing-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem 2rem;
  gap: 3rem;
}
.landing-hero-left {
  flex: 2;
  color: #fff;
  text-align: left;
}
.landing-headline {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -1px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.protect-underline {
  position: relative;
  color: #fff;
  z-index: 2;
}
/* .protect-underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.1em;
  height: 0.35em;
  background: linear-gradient(90deg, #FF6A00 60%, #FFB450 100%);
  border-radius: 0.2em;
  z-index: -1;
  opacity: 0.85;
} */
.landing-subtext {
  font-size: 1.25rem;
  color: #fff;
  margin-top: 1.5rem;
  font-weight: 500;
}
.landing-hero-right {
  flex: 1.3;
  color: #fff;
  background: rgba(24,24,24,0.82);
  border-radius: 16px;
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
  min-width: 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.2rem;
}
.specialties-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  position: relative;
  display: inline-block;
}
.specialties-title::after {
  content: '';
  display: block;
  width: 100%;
  height: 0.22em;
  background: linear-gradient(90deg, #fff 60%, #FF6A00 100%);
  border-radius: 0.2em;
  margin-top: 0.1em;
}
.specialties-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  width: 100%;
}
.specialties-list li {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  border-bottom: 2px solid rgba(255,255,255,0.18);
  padding-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.specialties-list li a {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  transition: color 0.18s;
}
.specialties-list li a:hover, .specialties-list li a:focus {
  color: #FF6A00;
  text-decoration: none;
}
.coming-soon {
  font-size: 1.05rem;
  color: #fff;
  margin-top: 1.2rem;
}
.coming-soon span {
  font-weight: 600;
  color: #FFB450;
}
.coming-soon ul {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0 0;
}
.coming-soon li {
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.brand {
  color: #FF6A00;
  font-style: italic;
  font-weight: 800;
}
@media (max-width: 900px) {
  .landing-hero-content {
    flex-direction: column;
    align-items: stretch;
    gap: 2.2rem;
    padding: 2.5rem 1rem 2rem 1rem;
  }
  .landing-hero-left, .landing-hero-right {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem 0.5rem;
  }
  .landing-headline {
    font-size: 2rem;
  }
  .specialties-title {
    font-size: 1.3rem;
  }
  .specialties-list li {
    font-size: 1.05rem;
  }
}
/* Remove .choose-section and .choose-btn styles if not used elsewhere */
.choose-section, .choose-container, .choose-btn { display: none !important; }

/* Hamburger menu styles */
.hamburger, .mobile-nav { display: none !important; }

/* Remove hamburger/mobile-nav styles */
.hamburger, .mobile-nav { display: none !important; }

/* Remove hamburger/mobile-nav styles */
.hamburger, .mobile-nav { display: none !important; }

/* Remove hamburger/mobile-nav styles */
.hamburger, .mobile-nav { display: none !important; }

/* Remove hamburger/mobile-nav styles */
.hamburger, .mobile-nav { display: none !important; }

/* Remove hamburger/mobile-nav styles */
.hamburger, .mobile-nav { display: none !important; }

/* Remove hamburger/mobile-nav styles */
.nav-btn {
  color: #fff;
  background: rgba(24,24,24,0.7);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  margin-right: 0.7rem;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.15s;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
  outline: none;
  display: inline-block;
  letter-spacing: 0.01em;
  backdrop-filter: blur(2px);
}
.nav-btn:hover, .nav-btn:focus {
  background: linear-gradient(90deg, #181818 60%, #232526 100%);
  color: #FF6A00;
  border: 1.5px solid #FF6A00;
  box-shadow: 0 4px 18px 0 rgba(255,106,0,0.10);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .nav-btn, .cta {
    font-size: 1rem;
    padding: 0.6rem 1rem;
    margin-right: 0.2rem;
    margin-left: 0;
  }
  nav {
    gap: 0.2rem;
  }
}
/* Remove .choose-section and .choose-btn styles if not used elsewhere */
.choose-section, .choose-container, .choose-btn { display: none !important; }

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  margin-left: 1rem;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3.5px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 88vw;
  max-width: 340px;
  height: 100vh;
  background: rgba(24,24,24,0.98);
  box-shadow: -2px 0 24px 0 rgba(0,0,0,0.18);
  z-index: 1001;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem 2rem 2rem 2rem;
  gap: 1.2rem;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), opacity 0.2s;
  transform: translateX(100%);
  opacity: 0;
}
.mobile-nav.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-nav a {
  width: 100%;
  margin: 0.5rem 0;
  font-size: 1.18rem;
  padding: 1rem 0.5rem;
  border-radius: 10px;
  background: none;
  color: #fff;
  text-align: left;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #181818;
  color: #FF6A00;
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: none;
  }
  .mobile-nav.open {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-nav, .hamburger {
    display: none !important;
  }
}
.feature-highlights {
  width: 100%;
  background: linear-gradient(90deg, #181818 60%, #232526 100%);
  padding: 3.5rem 0 2.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-container {
  display: flex;
  gap: 3.5rem;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1100px;
}
.feature-item {
  background: #232526;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.18);
  padding: 2.2rem 2.5rem 1.7rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 220px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 32px 0 rgba(255,106,0,0.10);
  transform: translateY(-2px) scale(1.03);
}
.feature-item .feature-label:first-child {
  margin-bottom: 0.7rem;
}
.feature-item .feature-label:last-child {
  margin-top: 0.7rem;
}
.feature-number {
  font-size: 2.7rem;
  font-weight: 800;
  color: #FF6A00;
  margin-bottom: 0.7rem;
  letter-spacing: -1px;
  line-height: 1.1;
}
.feature-label {
  font-size: 1.13rem;
  color: #fff;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin-top: 0.2rem;
}
@media (max-width: 900px) {
  .feature-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .feature-item {
    min-width: 0;
    width: 90%;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.4,2,.6,1), transform 0.8s cubic-bezier(.4,2,.6,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-highlights, .contact, .why-partner, .pillars, .pillar, .site-footer {
  background: #000 !important;
}
.hero {
  background: #18191b !important;
}
.why-partner {
  background: #000 !important;
}
.contact {
  background: #000 !important;
}
.pillars, .pillar {
  background: #000 !important;
}
.site-footer {
  background: #000 !important;
  color: #fff;
}
.footer-social {
  display: flex !important;
  align-items: center;
  gap: 2.2rem;
  margin-left: 2.5rem;
  opacity: 1 !important;
  transform: none !important;
}

.footer-social.slide-up {
  transition-delay: 0.2s;
}

.footer-social.slide-up:not(.animate-in) {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.footer-icon {
  color: #fff;
  opacity: 1 !important;
  transition: color 0.18s, opacity 0.18s, box-shadow 0.18s, background 0.18s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,106,0,0.13) 60%, rgba(255,180,80,0.10) 100%);
  box-shadow: 0 2px 16px 0 rgba(255,106,0,0.13), 0 1px 8px 0 rgba(0,0,0,0.13);
  backdrop-filter: blur(2px);
  border: 1.5px solid rgba(255,106,0,0.18);
}
.footer-icon:hover, .footer-icon:focus {
  color: #FF6A00;
  background: linear-gradient(135deg, #181818 60%, #FF6A00 100%);
  box-shadow: 0 6px 32px 0 rgba(255,106,0,0.22), 0 2px 12px 0 rgba(0,0,0,0.18);
  opacity: 1;
  transform: translateY(-2px) scale(1.13);
  border: 1.5px solid #FF6A00;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -18px; left: 0; right: 0;
  height: 18px;
  background: linear-gradient(90deg, #FF6A00 0%, #FFB450 100%);
  opacity: 0.13;
  border-radius: 12px 12px 0 0;
  filter: blur(6px);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.7rem;
    padding: 0 0.7rem;
  }
  .footer-social {
    margin-left: 0;
    gap: 1.3rem;
  }
  .site-footer span {
    font-size: 1.08rem;
    text-align: left;
  }
}
.fe-section {
  background: #18191b !important;
  padding: 4.5rem 0 3.5rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fe-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  width: 96%;
  margin: 0 auto;
  gap: 3.5rem;
}
.fe-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem 2rem 2.5rem 2rem;
  min-width: 320px;
  max-width: 520px;
}
.fe-headline {
  font-size: 2.7rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 1.5rem 0;
  line-height: 1.08;
  letter-spacing: -2px;
}
.fe-headline .orange {
  color: #FF6A00;
  font-style: italic;
  font-weight: 900;
}
.fe-headline em {
  font-style: italic;
  color: #232526;
  font-weight: 700;
}
.fe-desc {
  font-size: 1.13rem;
  color: #ccc;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  margin-top: 1.2rem;
}
.fe-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
}
.fe-card {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(135deg, #181818 90%, #232526 100%);
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(255,106,0,0.10);
  border: 1.5px solid #232526;
  padding: 2.2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.fe-benefit {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fe-benefit-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5em;
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
}
.fe-benefit-title span {
  font-size: 1.3em;
  margin-left: 0.2em;
}
.fe-benefit-desc {
  font-size: 1.05rem;
  color: #ccc;
  font-weight: 500;
  line-height: 1.5;
}
.fe-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #fff 60%, #FF6A00 100%);
  border-radius: 2px;
  opacity: 0.7;
  margin: 1.1rem 0 0.7rem 0;
}
@media (max-width: 900px) {
  .fe-container {
    flex-direction: column;
    gap: 2.2rem;
    padding: 0 0.5rem;
  }
  .fe-left, .fe-right {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem 0.5rem;
  }
  .fe-headline {
    font-size: 2rem;
    letter-spacing: -1px;
  }
  .fe-card {
    padding: 1.2rem 0.7rem;
    max-width: 100%;
  }
}
.fe-cta {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}
.fe-cta-text {
  font-size: 1.18rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 0.2rem 0;
  letter-spacing: 0.01em;
}
.fe-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #FF6A00 60%, #FFB450 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.13rem;
  border: none;
  border-radius: 8px;
  padding: 1rem 2.2rem;
  box-shadow: 0 2px 12px 0 rgba(255,106,0,0.13);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
  cursor: pointer;
  letter-spacing: 0.01em;
  margin-top: 0.2rem;
  text-decoration: none;
}
.fe-cta-btn:hover, .fe-cta-btn:focus {
  background: #fff;
  color: #FF6A00;
  box-shadow: 0 6px 32px 0 rgba(255,106,0,0.18);
  transform: translateY(-2px) scale(1.05);
  outline: none;
}
.mission-highlight {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.5rem 0 2.5rem 0;
}
.mission-card {
  background: rgba(24,24,24,0.92);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
  padding: 2.2rem 2.5rem 2rem 2.5rem;
  max-width: 700px;
  width: 100%;
  text-align: center;
  position: relative;
  border: 1.5px solid rgba(255,255,255,0.08);
}
.mission-accent {
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, #FF6A00 60%, #FFB450 100%);
  border-radius: 3px;
  margin: 0 auto 1.2rem auto;
}
.mission-text {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin: 0;
  text-shadow: 0 2px 12px rgba(255,106,0,0.10);
}
@media (max-width: 900px) {
  .mission-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .mission-text {
    font-size: 1.08rem;
  }
  .mission-accent {
    width: 50px;
    height: 4px;
  }
}
.partners-section {
  width: 100%;
  background: #181818;
  padding: 2.5rem 0 2.5rem 0;
  margin: 0 0 2.5rem 0;
  border-top: 3px solid #FF6A00;
  border-bottom: 3px solid #FF6A00;
}
.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.partners-headline {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.2rem;
  letter-spacing: -1px;
}
.partners-headline .orange {
  color: #FF6A00;
  font-style: italic;
  font-weight: 700;
}
.partners-these {
  font-style: italic;
  position: relative;
  color: #fff;
  font-weight: 700;
  display: inline-block;
}
.partners-these::after {
  content: '';
  display: block;
  width: 100%;
  height: 0.22em;
  background: linear-gradient(90deg, #FF6A00 60%, #FFB450 100%);
  border-radius: 0.2em;
  margin-top: 0.1em;
  position: absolute;
  left: 0;
  bottom: -0.18em;
  z-index: 1;
}
/* Partners carousel wrapper */
.partners-logos-wrapper {
  overflow: hidden;
  margin-top: 2.2rem;
  width: 100%;
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  background: transparent;
}

/* Carousel track - JS controlled animation */
.partners-logos {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  will-change: transform;
}

.partner-logo {
  background: none;
  box-shadow: none;
  border-radius: 12px;
  padding: 0.7rem 1.2rem;
  width: 160px;
  min-width: 160px;
  max-width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.partner-logo img {
  max-height: 70px;
  max-width: 140px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.10));
  object-fit: contain;
  pointer-events: none;
}

.partner-logo:hover {
  box-shadow: 0 6px 32px 0 rgba(255,106,0,0.13);
  transform: translateY(-2px) scale(1.05);
  z-index: 5;
}
@media (max-width: 900px) {
  .partners-headline {
    font-size: 1.3rem;
  }
  
  .partners-logos-wrapper {
    height: 100px;
  }
  
  .partners-logos-wrapper::before,
  .partners-logos-wrapper::after {
    width: 60px;
  }
  
  .partners-logos {
    gap: 2.5rem !important;
  }
  
  .partner-logo {
    padding: 0.5rem 0.8rem;
    min-width: 130px !important;
    max-width: 130px !important;
    width: 130px !important;
    flex-basis: 130px !important;
    height: 70px;
  }
  
  .partner-logo img {
    max-height: 55px;
    max-width: 110px;
  }
}

@media only screen and (max-device-width: 1024px) and (orientation: portrait), only screen and (max-device-width: 1024px) and (orientation: landscape) {
  html, body {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0.05);
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding-bottom: env(safe-area-inset-bottom);
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  input, textarea, select, button {
    font-size: 16px !important; /* Prevent iOS zoom on form fields */
  }
  .container, .site-header, .site-footer, .hero, .feature-highlights, .partners-section, .fe-section {
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  .nav-btn, .cta, .cta.primary {
    min-height: 48px;
    font-size: 1.1rem;
    touch-action: manipulation;
  }
  img, svg {
    touch-action: manipulation;
    -webkit-user-drag: none;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
}

.footer-contact.slide-up:not(.animate-in) {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.footer-title {
  color: #FF6A00;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  font-family: inherit;
}
.footer-contact div {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: inherit;
}
@media (max-width: 900px) {
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .footer-contact {
    align-items: flex-start;
    margin-bottom: 0.7rem;
  }
}

.aspect-hero {
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 0 0 3rem 0;
  z-index: 1;
  overflow: hidden;
}
.aspect-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #000;
  opacity: 1;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
  filter: grayscale(100%) brightness(0.5) contrast(1.1);
  object-fit: cover;
  z-index: 1;
}
.aspect-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem 2rem;
  gap: 3rem;
}
.aspect-hero-left {
  flex: 2;
  color: #fff;
  text-align: left;
  min-width: 320px;
}
.aspect-badge {
  display: inline-block;
  background: rgba(255,106,0,0.13);
  color: #FF6A00;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 18px;
  padding: 0.3rem 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}
.aspect-headline {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}
.aspect-gradient {
  background: linear-gradient(90deg, #FF6A00 60%, #FFB450 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.aspect-subtext {
  font-size: 1.25rem;
  color: #cfd8e3;
  margin-bottom: 2.2rem;
  font-weight: 500;
}
.aspect-cta {
  display: inline-block;
  background: #fff;
  color: #181f2a;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 10px;
  padding: 0.8rem 2.2rem;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(255,106,0,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
  margin-top: 0.7rem;
}
.aspect-cta:hover, .aspect-cta:focus {
  background: #FF6A00;
  color: #fff;
  box-shadow: 0 6px 32px 0 rgba(255,106,0,0.13);
  transform: translateY(-2px) scale(1.05);
}
.aspect-hero-right {
  flex: 1.3;
  min-width: 320px;
  max-width: 420px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.aspect-stats-card {
  background: rgba(24,24,24,0.92);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
  padding: 2.2rem 2.5rem 2rem 2.5rem;
  width: 100%;
  max-width: 420px;
  text-align: left;
  border: 1.5px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.aspect-stats-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.aspect-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.2rem;
}
.aspect-stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: #FFB450;
  margin-bottom: 0.1rem;
}
.aspect-stat-label {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}
.aspect-growth-bar-label {
  font-size: 1.02rem;
  color: #cfd8e3;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.aspect-growth-bar-bg {
  position: relative;
  width: 100%;
  height: 28px;
  background: rgba(255,255,255,0.10);
  border-radius: 14px;
  margin: 0.5rem 0 0.5rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.aspect-growth-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #fff 0%, #FF6A00 100%);
  border-radius: 14px;
  z-index: 1;
}
.aspect-growth-bar-text {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
  background: none;
  padding: 0 0.2em;
}
@media (max-width: 900px) {
  .aspect-hero {
    min-height: 100vh;
    max-height: 100vh;
  }
  .aspect-hero-content {
    flex-direction: column;
    align-items: stretch;
    gap: 2.2rem;
    padding: 2.5rem 1rem 2rem 1rem;
  }
  .aspect-hero-left, .aspect-hero-right {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem 0.5rem;
  }
  .aspect-headline {
    font-size: 2rem;
  }
  .aspect-stats-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .aspect-stat-number {
    font-size: 1.3rem;
  }
}

.aspect-features {
  background: linear-gradient(135deg, #181818 0%, #0a0a0a 100%);
  padding: 2rem 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.aspect-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF6A00, transparent);
  opacity: 0.3;
}

.aspect-features::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF6A00, transparent);
  opacity: 0.3;
}

.aspect-features-scroll-container {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.aspect-features-carousel {
  display: flex;
  gap: 1.5rem;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

.aspect-features-carousel:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.aspect-feature-card {
  background: linear-gradient(135deg, rgba(30,30,30,0.95) 0%, rgba(20,20,20,0.95) 100%);
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.3), 0 1px 3px 0 rgba(0,0,0,0.2);
  padding: 1.5rem 1.8rem;
  min-width: 260px;
  max-width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.aspect-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aspect-feature-card:hover::before {
  opacity: 1;
}

.aspect-feature-card:hover {
  background: linear-gradient(135deg, rgba(40,40,40,0.98) 0%, rgba(30,30,30,0.98) 100%);
  box-shadow: 0 8px 32px 0 rgba(255,106,0,0.2), 0 2px 8px 0 rgba(0,0,0,0.4);
  border: 1px solid rgba(255,106,0,0.4);
  transform: translateY(-4px) scale(1.02);
}

.aspect-feature-icon {
  font-size: 1.4rem;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
  border-radius: 12px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.aspect-feature-card:hover .aspect-feature-icon {
  background: linear-gradient(135deg, rgba(255,106,0,0.2) 0%, rgba(255,106,0,0.15) 100%);
  box-shadow: 0 4px 12px 0 rgba(255,106,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  border-color: rgba(255,106,0,0.3);
}

.aspect-feature-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
  .aspect-features {
    padding: 1.5rem 0;
  }
  
  .aspect-feature-card {
    min-width: 220px;
    max-width: 220px;
    padding: 1.2rem 1.5rem;
  }
  
  .aspect-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1.2rem;
  }
  
  .aspect-feature-title {
    font-size: 0.95rem;
  }
}

.aspect-shared-video {
  position: relative;
  width: 100%;
  overflow: visible;
}

.aspect-leads {
  background: transparent;
  padding: 5rem 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  z-index: 1; /* above shared video */
}

.aspect-leads-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  position: relative; /* For overlay positioning */
  border-radius: 12px; /* Match glass panel corners */
  overflow: hidden; /* Clip overlay to rounded corners */
}

/* Glass-blur overlay only for the ASPECT letters + hover container */
/* Removed overlay behind ASPECT section per request */

/* Horizontal ASPECT Menu */
.aspect-vertical-menu {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.aspect-letter {
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
  position: relative;
  padding: 0.5rem 1rem;
  z-index: 10;
  pointer-events: auto;
}

.aspect-letter::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 6px;
  background: linear-gradient(90deg, #FF6A00 0%, #FFB450 100%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
}

.aspect-letter:hover,
.aspect-letter.active {
  color: #ffffff;
  text-shadow: 0 0 40px rgba(255,106,0,0.6);
  transform: translateY(-10px) scale(1.1);
}

.aspect-letter:hover::after,
.aspect-letter.active::after {
  width: 80%;
}

/* Cards Container */
.aspect-cards-container {
  width: 100%;
  position: relative;
  min-height: 450px;
  z-index: 2; /* Ensure cards are above overlay */
}

/* Placeholder */
.aspect-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(30,30,30,0.5) 0%, rgba(20,20,20,0.5) 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  border: 2px dashed rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  z-index: 1;
  pointer-events: none;
}

.aspect-placeholder.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.aspect-placeholder-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.aspect-placeholder-content i {
  font-size: 4rem;
  color: rgba(255,106,0,0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.aspect-placeholder-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin: 0;
  letter-spacing: 0.02em;
}

.aspect-interactive-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(30,30,30,0.95) 0%, rgba(20,20,20,0.95) 100%);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  pointer-events: none;
}

.aspect-interactive-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.aspect-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.aspect-card-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, rgba(255,106,0,0.2) 0%, rgba(255,106,0,0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #FFB450;
  border: 1px solid rgba(255,106,0,0.3);
  box-shadow: 0 4px 16px 0 rgba(255,106,0,0.2);
}

.aspect-card-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}

.aspect-card-desc {
  font-size: 1.15rem;
  color: #cfd8e3;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.aspect-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aspect-card-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
}

.aspect-card-features li i {
  color: #FF6A00;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

@media (max-width: 1200px) {
  .aspect-leads-container {
    gap: 2.5rem;
  }
  
  .aspect-letter {
    font-size: 5rem;
    gap: 1.5rem;
  }
  
  .aspect-interactive-card {
    padding: 2.5rem;
  }
}

@media (max-width: 900px) {
  .aspect-leads {
    padding: 3rem 0;
    min-height: auto;
  }
  
  .aspect-leads-container {
    gap: 2rem;
  }
  
  .aspect-vertical-menu {
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  
  .aspect-letter {
    font-size: 3.5rem;
    padding: 0.3rem 0.6rem;
  }
  
  .aspect-letter:hover,
  .aspect-letter.active {
    transform: translateY(-5px) scale(1.08);
  }
  
  .aspect-cards-container {
    min-height: 320px;
  }
  
  .aspect-interactive-card {
    padding: 1.5rem 1.2rem;
  }
  
  .aspect-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .aspect-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  
  .aspect-card-icon i {
    font-size: 1.3rem;
  }
  
  .aspect-card-title {
    font-size: 1.3rem;
  }
  
  .aspect-card-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
  }
  
  .aspect-card-features li {
    font-size: 0.9rem;
    gap: 0.6rem;
  }
}

@media (max-width: 600px) {
  .aspect-letter {
    font-size: 2.5rem;
    gap: 0.5rem;
  }
  
  .aspect-vertical-menu {
    gap: 0.5rem;
  }
}

.aspect-divider {
  width: 100%;
  max-width: 900px;
  height: 4px;
  margin: 2.5rem auto 2.5rem auto;
  border-radius: 2px;
  background: linear-gradient(90deg, #232526 0%, #FF6A00 50%, #232526 100%);
  box-shadow: 0 2px 16px 0 rgba(255,106,0,0.10);
  opacity: 0.95;
}

@media only screen and (max-device-width: 1024px) and (orientation: portrait), only screen and (max-device-width: 1024px) and (orientation: landscape) {
  html, body {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0.05);
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    padding-bottom: env(safe-area-inset-bottom);
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  input, textarea, select, button {
    font-size: 16px !important; /* Prevent iOS zoom on form fields */
  }
  .container, .site-header, .site-footer, .hero, .feature-highlights, .partners-section, .fe-section {
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  .nav-btn, .cta, .cta.primary {
    min-height: 48px;
    font-size: 1.1rem;
    touch-action: manipulation;
  }
  img, svg {
    touch-action: manipulation;
    -webkit-user-drag: none;
  }
}

.aspect-growth-card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  padding: 3.5rem 0 3.5rem 0;
  position: relative;
  overflow: hidden;
  z-index: 1; /* above shared video */
}

/* Background video for growth section */
.growth-bg-video {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.45) contrast(1.1);
  z-index: 0;
}

/* Shared section background video styling */
/* Remove old per-section video styles */
.aspect-growth-card-inner {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 3rem 2rem;
  max-width: 1400px;
  width: 100%;
  text-align: center;
  position: relative;
  border: none;
  margin: 0 auto;
  z-index: 2; /* above video */
}
.aspect-growth-accent {
  width: 90px;
  height: 7px;
  background: linear-gradient(90deg, #FF6A00 60%, #FFB450 100%);
  border-radius: 4px;
  margin: 0 auto 1.7rem auto;
}
.aspect-growth-headline {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
  letter-spacing: -1px;
}
.aspect-growth-subhead {
  color: #cfd8e3;
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 2.2rem;
}
/* Growth interactive layout */
.growth-interactive {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
  text-align: left;
  position: relative;
  z-index: 3;
}

/* Vertical scroller */
.growth-scroller {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  z-index: 4;
}

.scroller-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}

.scroller-buttons::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}

.scroller-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  position: relative;
  font-family: inherit;
}

.scroller-btn::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #FF6A00;
  border-radius: 2px;
  transition: height 0.25s ease;
}

.scroller-btn:hover {
  background: rgba(255,106,0,0.08);
  border-color: rgba(255,106,0,0.3);
  color: rgba(255,255,255,0.85);
  transform: translateX(4px);
}

.scroller-btn.active {
  background: rgba(255,106,0,0.15);
  border-color: rgba(255,106,0,0.5);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,106,0,0.25);
}

.scroller-btn.active::before {
  height: 100%;
}

.growth-facts {
  background: rgba(16,16,16,0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2.5rem 2.5rem;
  min-height: 400px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.growth-fact {
  display: none;
  animation: fadeIn 300ms ease;
}
.growth-fact.active {
  display: block;
}
.growth-fact h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin: 0 0 0.7rem 0;
}
.growth-fact p {
  color: #cfd8e3;
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}
.growth-fact ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #fff;
}
.growth-fact li {
  margin: 0.35rem 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.aspect-growth-cta {
  display: inline-block;
  background: linear-gradient(90deg, #FF6A00 60%, #FFB450 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.18rem;
  border-radius: 10px;
  padding: 1rem 2.5rem;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(255,106,0,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
  margin-top: 1.2rem;
}
.aspect-growth-cta:hover, .aspect-growth-cta:focus {
  background: #fff;
  color: #FF6A00;
  box-shadow: 0 6px 32px 0 rgba(255,106,0,0.13);
  transform: translateY(-2px) scale(1.05);
}
@media (max-width: 900px) {
  .aspect-growth-card-inner {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .aspect-growth-headline {
    font-size: 1.3rem;
  }
  .growth-interactive {
    grid-template-columns: 60px 1fr;
    gap: 0.8rem;
    margin-top: 0.8rem;
  }
  .scroller-track { height: 200px; }
  .aspect-growth-cta {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
  /* General mobile improvements */
  html, body {
    font-size: 14px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  /* Header mobile optimization - HIDE HEADER ON MOBILE */
  .site-header {
    display: none !important;
  }
  
  .container {
    padding: 0 1rem;
    gap: 0.8rem;
    justify-content: center;
  }
  
  .logo-placeholder {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  nav {
    position: absolute;
    right: 1rem;
  }
  
  nav .cta {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    min-height: 40px;
  }
  
  /* Hero section mobile optimization - no top padding since header is hidden */
  .aspect-hero {
    padding: 0 0 2rem 0;
    min-height: 100vh;
    max-height: 100vh;
  }
  
  .aspect-hero-content {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
  
  /* 1. Make the aspect financial group bar larger and centered */
  .aspect-badge {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    margin: 0 auto 1rem auto;
    display: block;
    width: fit-content;
    text-align: center;
    max-width: 90%;
    box-sizing: border-box;
  }
  
  .aspect-headline {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-top: 3.5rem;
  }
  
  /* Make "Scale Your Agency" and "With No Boundaries" stack vertically on mobile */
  .aspect-headline br {
    display: none;
  }
  
  .aspect-subtext {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .aspect-cta {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Stats card mobile optimization */
  .aspect-stats-card {
    padding: 1rem 0.8rem;
  }
  
  .aspect-stats-row {
    gap: 0.8rem;
  }
  
  .aspect-stat {
    padding: 0.5rem;
  }
  
  .aspect-stat-number {
    font-size: 1.2rem;
  }
  
  .aspect-stat-label {
    font-size: 0.7rem;
    line-height: 1.2;
  }
  
  .aspect-growth-bar-label {
    font-size: 0.6rem;
  }
  
  .aspect-growth-bar-text {
    font-size: 0.7rem;
  }
  
  /* Features section mobile optimization */
  .aspect-features {
    padding: 2rem 0;
  }
  
  .aspect-features-container {
    padding: 0 1rem;
  }
  
  .aspect-features-headline {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  
  .aspect-features-row {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  /* 2. Make feature cards fit within phone bounds */
  .aspect-feature-card {
    padding: 1.2rem 1rem;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }
  
  .aspect-feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
  
  .aspect-feature-title {
    font-size: 1.1rem;
  }
  
  .aspect-feature-desc {
    font-size: 0.95rem;
  }
  
  /* Leads section mobile optimization */
  .aspect-leads {
    padding: 2rem 0;
  }
  
  .aspect-leads-container {
    padding: 0 1rem;
  }
  
  .aspect-leads-headline {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  
  .aspect-leads-row {
    gap: 0.8rem;
    padding-bottom: 0.5rem;
  }
  
  .aspect-lead-card {
    min-width: 200px;
    max-width: 85vw;
    padding: 1rem 0.8rem;
  }
  
  .aspect-lead-icon {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
  
  .aspect-lead-title {
    font-size: 1.1rem;
  }
  
  .aspect-lead-desc {
    font-size: 0.95rem;
  }
  
  /* Growth card mobile optimization */
  .aspect-growth-card {
    padding: 2rem 0;
  }
  
  .aspect-growth-card-inner {
    padding: 1.5rem 1rem;
    margin: 0 1rem;
  }
  
  .aspect-growth-headline {
    font-size: 1.4rem;
  }
  
  .aspect-growth-subhead {
    font-size: 1rem;
  }
  
  .aspect-growth-features {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  
  /* 3. Make growth feature cards fit within section bounds */
  .aspect-growth-feature {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
  }
  
  .aspect-growth-cta {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    min-height: 48px;
  }
  
  /* Fix scroller buttons so text doesn't overflow */
  .scroller-btn {
    font-size: 0.75rem;
    padding: 0.8rem 1rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  
  /* Partners section mobile optimization */
  .partners-section {
    padding: 2rem 0;
  }
  
  .partners-container {
    padding: 0 1rem;
  }
  
  .partners-headline {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  .partners-logos-wrapper {
    height: 90px;
  }
  
  .partners-logos-wrapper::before,
  .partners-logos-wrapper::after {
    width: 50px;
  }
  
  .partners-logos {
    gap: 2rem !important;
  }
  
  .partner-logo {
    min-width: 110px !important;
    max-width: 110px !important;
    width: 110px !important;
    flex-basis: 110px !important;
    height: 65px;
    padding: 0.4rem 0.6rem;
  }
  
  .partner-logo img {
    max-width: 90px;
    max-height: 50px;
  }
  
  /* Contact section mobile optimization */
  .contact {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: transparent;
  }
  
  /* 4. Make contact card smaller to fit iPhone bounds */
  .contact-content {
    padding: 1.2rem 0.8rem;
    margin: 0 auto;
    max-width: 100%;
    width: calc(100% - 1.6rem);
    box-sizing: border-box;
    text-align: center;
  }
  
  .contact-headline {
    font-size: 1.3rem;
  }
  
  .contact-subtext {
    font-size: 0.95rem;
  }
  
  .contact-cta {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Footer mobile optimization */
  .site-footer {
    padding: 2rem 0 1.5rem 0;
  }
  
  .site-footer .container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-contact {
    text-align: center;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-contact div {
    font-size: 0.9rem;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  /* Divider mobile optimization */
  .aspect-divider {
    margin: 1.5rem auto;
    height: 3px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .aspect-headline {
    font-size: 1.6rem;
    margin-top: 3.5rem;
  }
  
  /* Make "Scale Your Agency" and "With No Boundaries" stack vertically on mobile */
  .aspect-headline br {
    display: none;
  }
  
  .aspect-subtext {
    font-size: 0.95rem;
  }
  
  .aspect-stats-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .aspect-stat {
    text-align: center;
  }
  
  .aspect-features-headline,
  .aspect-leads-headline,
  .aspect-growth-headline {
    font-size: 1.3rem;
  }
  
  /* Make ASPECT cards even smaller on small screens */
  .aspect-cards-container {
    min-height: 280px;
  }
  
  .aspect-interactive-card {
    padding: 1.2rem 1rem;
  }
  
  .aspect-card-title {
    font-size: 1.2rem;
  }
  
  .aspect-card-desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .aspect-card-features li {
    font-size: 0.85rem;
  }
  
  /* Fix scroller buttons for small screens */
  .scroller-btn {
    font-size: 0.7rem;
    padding: 0.7rem 0.8rem;
    letter-spacing: 0.04em;
  }
  
  .partners-logos-wrapper {
    height: 80px;
  }
  
  .partners-logos {
    gap: 1.5rem !important;
  }
  
  .partner-logo {
    min-width: 95px !important;
    max-width: 95px !important;
    width: 95px !important;
    flex-basis: 95px !important;
    height: 55px;
    padding: 0.3rem 0.5rem;
  }
  
  .partner-logo img {
    max-width: 75px;
    max-height: 45px;
  }
  
  .container {
    padding: 0 0.8rem;
  }
  
  .aspect-hero-content,
  .aspect-features-container,
  .aspect-leads-container,
  .partners-container {
    padding: 0 0.8rem;
  }
  
  .aspect-growth-card-inner,
  .contact-content {
    margin: 0 0.8rem;
  }
}

/* Touch-friendly improvements for all mobile devices */
@media (max-width: 900px) {
  /* Ensure all clickable elements have adequate touch targets */
  a, button, .cta, .aspect-cta, .aspect-growth-cta, .contact-cta {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Improve scrolling performance */
  .aspect-leads-row {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  /* Prevent text selection on interactive elements */
  .cta, .aspect-cta, .aspect-growth-cta, .contact-cta {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Optimize images for mobile */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Improve form elements on mobile */
  input, textarea, select {
    font-size: 16px !important;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 8px;
  }
  
  /* Better focus states for mobile */
  a:focus, button:focus, .cta:focus, .aspect-cta:focus, .aspect-growth-cta:focus, .contact-cta:focus {
    outline: 2px solid #FF6A00;
    outline-offset: 2px;
  }
}

/* Landscape orientation improvements */
@media (max-width: 900px) and (orientation: landscape) {
  .aspect-hero {
    padding: 1.5rem 0;
  }
  
  .aspect-hero-content {
    padding: 1rem;
    gap: 1rem;
  }
  
  .aspect-headline {
    font-size: 1.5rem;
  }
  
  .aspect-features,
  .aspect-leads,
  .aspect-growth-card {
    padding: 1.5rem 0;
  }
  
  .partners-section {
    padding: 1.5rem 0;
  }
  
  .contact {
    padding: 1.5rem 0;
  }
}

/* iOS-specific mobile improvements */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 768px) {
  .aspect-headline {
    text-align: center;
    margin: 0 auto;
  }
}

/* Touch-friendly improvements for all mobile devices */
@media (max-width: 900px) {
  /* Ensure all clickable elements have adequate touch targets */
  a, button, .cta, .aspect-cta, .aspect-growth-cta, .contact-cta {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Improve scrolling performance */
  .aspect-leads-row {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  /* Prevent text selection on interactive elements */
  .cta, .aspect-cta, .aspect-growth-cta, .contact-cta {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Optimize images for mobile */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Improve form elements on mobile */
  input, textarea, select {
    font-size: 16px !important;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 8px;
  }
  
  /* Better focus states for mobile */
  a:focus, button:focus, .cta:focus, .aspect-cta:focus, .aspect-growth-cta:focus, .contact-cta:focus {
    outline: 2px solid #FF6A00;
    outline-offset: 2px;
  }
}

/* Landscape orientation improvements */
@media (max-width: 900px) and (orientation: landscape) {
  .aspect-hero {
    padding: 1.5rem 0;
  }
  
  .aspect-hero-content {
    padding: 1rem;
    gap: 1rem;
  }
  
  .aspect-headline {
    font-size: 1.5rem;
  }
  
  .aspect-features,
  .aspect-leads,
  .aspect-growth-card {
    padding: 1.5rem 0;
  }
  
  .partners-section {
    padding: 1.5rem 0;
  }
  
  .contact {
    padding: 1.5rem 0;
  }
}

.partners-and-more {
  text-align: center;
  margin-top: 10px;
  font-size: 1.2rem;
  color: #ff6600;
  font-weight: 600;
  letter-spacing: 0.5px;
} 