:root {
  --bg: #050505;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-card: rgba(255, 255, 255, 0.08);
  --text-main: #fcfcfc;
  --text-muted: #a1a1aa;
  --primary: #f21d2f;
  --primary-glow: rgba(242, 29, 47, 0.15);
  --radius-full: 9999px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Background Effects */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: 50px 50px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  z-index: 0;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  top: 30%;
  left: 50%;
  width: 80vw;
  height: 80vw;
  max-width: 600px;
  max-height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-section {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  position: relative;
  z-index: 10;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  position: relative;
  z-index: 100;
  /* Ensure header is above everything else */
}

.brand .logo {
  font-family: 'Contrail One', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 20;
  display: inline-block;
  transition: all 0.3s ease;
}

.brand .logo span {
  color: var(--primary);
}

.desktop-nav {
  display: none;
}

.header-actions {
  display: none;
}

/* Button Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #e0e0e0;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-card);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
  /* Above mobile-nav */
  padding: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-main);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hero Body */
.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  min-height: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.badge-icon {
  color: var(--primary);
  display: flex;
}

.headline {
  font-size: clamp(2.2rem, 8vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  letter-spacing: -0.04em;
}

.highlight {
  background: linear-gradient(135deg, #ff4c4c, #c90000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary);
  /* Fallback */
}

.subheadline {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 450px;
  margin: 0 0 1.75rem 0;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 300px;
}

/* Info Grid (Mobile) */
.info-wrapper {
  padding: 0 0 1.5rem 0;
  width: 100%;
  position: relative;
}

.info-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0 1.5rem;
  margin-bottom: 1.25rem;
}

.info-grid {
  display: flex;
  gap: 1rem;
  padding: 0 4vw 4vw;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.info-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.info-nav-btn:hover {
  background: rgba(242, 29, 47, 0.1);
  border-color: rgba(242, 29, 47, 0.3);
  color: var(--primary);
  transform: scale(1.1);
}

.info-nav-btn:active {
  transform: scale(0.95);
}

.info-card {
  flex: 0 0 calc(85vw - 1.5rem);
  scroll-snap-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-icon {
  width: 20px;
  height: 20px;
}

.card-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(242, 29, 47, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  letter-spacing: -0.02em;
}

.card-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 1400px) {
  .hero-body {
    width: 70vw;
    margin: 0 auto
  }
}

/* Services Section (Bento Grid) */
.services-section {
  position: relative;
  z-index: 10;
  padding: 5rem 1.5rem;
}

.services-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-bento-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.bento-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-card);
}

.bento-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(242, 29, 47, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bento-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.3;
}

.bento-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.bento-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  background-color: rgba(155, 255, 255, 0.03);
  padding: 10px 15px;
  border-radius: 15px;
}

.list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(242, 29, 47, 0.05);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.services-bento-grid>* {
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.service-bento-card:nth-child(1) {
  animation-delay: 0.2s;
}

.service-bento-card:nth-child(2) {
  animation-delay: 0.3s;
}

.service-bento-card:nth-child(3) {
  animation-delay: 0.4s;
}

.service-bento-card:nth-child(4) {
  animation-delay: 0.5s;
}

@media (min-width: 768px) {
  .services-section {
    padding: 8rem 3rem;
  }

  .services-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .service-bento-card {
    padding: 2.5rem;
  }

  .bento-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .bento-title {
    font-size: 1.5rem;
  }
}

/* Highlights Section */
.highlights-section {
  position: relative;
  z-index: 10;
  padding: 5rem 1.5rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(242, 29, 47, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.highlight-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.01em;
}

.highlight-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .header {
    padding: 1.5rem 3rem;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
    gap: 2.5rem;
    background: var(--bg-card);
    padding: 0.8rem 2.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(10px);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .desktop-nav .nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .desktop-nav .nav-link:hover {
    color: var(--text-main);
    transform: scale(1.1);
  }

  .header-actions {
    display: block;
  }

  .hero-body {
    padding: 0 4rem;
  }

  .badge {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }

  .headline {
    font-size: clamp(3.5rem, 6vw, 4rem);
    margin: 0 0 1.5rem 0;
  }

  .subheadline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 650px;
    margin: 0 0 2.5rem 0;
  }

  .brand .footer-logo {
    font-size: 3rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    gap: 1rem;
  }

  .info-wrapper {
    padding: 0 3rem 2rem 3rem;
  }

  .info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2vw;
    overflow-x: visible;
  }

  .info-nav {
    display: none;
  }

  .info-nav-btn {
    display: none;
  }

  .info-card {
    flex: auto;
    padding: 1.75rem;
    gap: 1rem;
  }

  .info-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
  }

  .card-icon-wrapper {
    width: 44px;
    height: 44px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-subtitle {
    font-size: 0.9rem;
  }

  .highlights-section {
    padding: 8rem 3rem;
  }

  .highlights-grid {
    /* "make 2 rows and 2 columns": if the user explicitly wants 2 columns specifically, I will set it to 2 here! Wait, if I set it to 3 it creates 2 rows! Let's set it to 3 columns on large desktop, forming exactly 2 rows for 6 cards. */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .info-grid {
    gap: 1rem;
  }

  .info-card {
    padding: 1.25rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-subtitle {
    font-size: 0.8rem;
  }

  .headline {
    font-size: 3rem;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablet creates 3 rows */
  }
}

@media (max-height: 700px) {
  .headline {
    font-size: clamp(1.75rem, 5vw, 3rem);
  }

  .badge {
    margin-bottom: 0.75rem;
  }

  .subheadline {
    margin-bottom: 1rem;
  }

  .hero-cta {
    gap: 0.5rem;
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }

  .info-card {
    padding: 1rem;
  }
}

/* Companies Section */
.companies-section {
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.companies-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 1.5rem;
  gap: 3rem;
  overflow: hidden;
}

.companies-text {
  flex: 0 0 auto;
  color: #888888;
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
}

.companies-text p {
  margin: 0;
}

.companies-text .text-white {
  color: #ffffff;
}

.companies-text .fw-bold {
  font-weight: 700;
}

.logos-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.logos-mask-left,
.logos-mask-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logos-mask-left {
  left: 0;
  background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.logos-mask-right {
  right: 0;
  background: linear-gradient(to left, #000000 0%, transparent 100%);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
  /* Exactly matches gap for seamless loop */
  animation: scrollLogos 25s linear infinite;
  white-space: nowrap;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #666666;
  letter-spacing: -0.03em;
}

.logo-item.flex-logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  font-size: 1.4rem;
}

.logo-item.stacked-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.45rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .companies-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .logos-wrapper {
    width: 100%;
  }
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  z-index: 10;
  padding: 5rem 1.5rem;
}

.testimonials-section .section-container {
  max-width: 900px;
}

.testimonials-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.testimonials-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.04em;
}

.testimonials-nav {
  display: flex;
  gap: 1rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.slider-btn:active {
  transform: scale(0.95);
}

.testimonials-slider-wrapper {
  overflow: hidden;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-xl);
}

.testimonials-slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--bg-card);
  /* Dark background similar to image */
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-sizing: border-box;
  opacity: 0.4;
  transform: scale(0.98);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.2, 1);
}

.testimonial-card.active-slide {
  opacity: 1;
  transform: scale(1);
}

.quote-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.6;
  color: var(--text-main);
  margin: 0 0 2.5rem 0;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  background-color: var(--primary);
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.author-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 8rem 3rem;
  }

  .testimonial-card {
    padding: 4rem;
  }
}

/* Contact Section */
.contact-section {
  position: relative;
  z-index: 10;
  padding: 5rem 1.5rem;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60vw;
  height: 60vw;
  max-width: 600px;
  max-height: 600px;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.contact-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(242, 29, 47, 0.05);
  border: 1px solid rgba(242, 29, 47, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-icon:hover {
  background: rgba(242, 29, 47, 0.12);
  transform: scale(1.1);
  border-color: rgba(242, 29, 47, 0.25);
  box-shadow: 0 10px 20px rgba(242, 29, 47, 0.1);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
}

.contact-right {
  width: 100%;
}

.contact-form {
  background: #0a0a0a;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #a1a1aa;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #161616;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555555;
  font-weight: 400;
}

.form-group textarea {
  min-height: 120px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  padding-right: 3rem;
}

.input-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.15);
  border-radius: 6px;
  padding: 6px;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: #ffffff;
  color: #000000;
  border: none;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-submit:hover {
  background: #e6e6e6;
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .contact-section {
    padding: 8rem 3rem;
  }

  .contact-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }

  .contact-left {
    flex: 1;
    max-width: 40%;
  }

  .contact-right {
    flex: 1;
    max-width: 55%;
  }

  .contact-form {
    padding: 3rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 4rem;
    align-items: flex-start;
  }

  .contact-left,
  .contact-right {
    max-width: 100%;
    width: 100%;
  }
}

/* Footer Section */
.site-footer {
  position: relative;
  z-index: 10;
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem 1.5rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .site-footer {
    padding: 1.5rem 3rem;
  }
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(15px);
  touch-action: none;
  overscroll-behavior: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-link {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.mobile-nav.active .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav-link:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-nav-link:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-nav-link:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* Hamburger active state */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-body>* {
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.hero-body .badge {
  animation-delay: 0.1s;
}

.hero-body .headline {
  animation-delay: 0.2s;
}

.hero-body .subheadline {
  animation-delay: 0.3s;
}

.hero-body .hero-cta {
  animation-delay: 0.4s;
}

.info-grid>* {
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.info-card:nth-child(1) {
  animation-delay: 0.5s;
}

.info-card:nth-child(2) {
  animation-delay: 0.6s;
}

.info-card:nth-child(3) {
  animation-delay: 0.7s;
}

.info-card:nth-child(4) {
  animation-delay: 0.8s;
}

/* Success Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #0a0a0a;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  transform: scale(0.9) translateY(40px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(242, 29, 47, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 2rem;
  animation: pulsePrimary 2s infinite;
}

@keyframes pulsePrimary {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(242, 29, 47, 0.2);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(242, 29, 47, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(242, 29, 47, 0);
  }
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.modal-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.modal-btn {
  width: 100%;
}