:root {
  --red: #ff2d55;
  --red-dark: #e91e4a;
  --red-light: #ff4d6d;
  --black: #000000;
  --dark: #0a0a0a;
  --dark-2: #141414;
  --dark-3: #1a1a1a;
  --light: #ffffff;
  --muted: #8b8b8b;
  --muted-2: #6b6b6b;
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 45, 85, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-red: 0 8px 32px rgba(255, 45, 85, 0.3);
  --shadow-red-lg: 0 16px 48px rgba(255, 45, 85, 0.4);
}

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

html {
  scroll-behavior: smooth;
}



.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--red);
  z-index: 10001;
  /* Above navbar */
  transition: width 0.1s;
}


.card,
.contact-card,
.stat,
.timeline-content {
  transform-style: preserve-3d;
  will-change: transform;
}


html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--red);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
  opacity: 1;
}


body.hovering .cursor-outline {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  backdrop-filter: blur(2px);
}


.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--light);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.site-header .navbar {
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.site-header.scrolled .navbar {
  background: rgba(0, 0, 0, 0.85) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
}

.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 140px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  margin-top: -40px;
  margin-bottom: -40px;
  position: relative;
  z-index: 10;
  transform: translateY(8px);
}

.navbar-brand:hover .navbar-logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  transform: translateY(2px) scale(1.05);
}

.site-header .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px !important;
  position: relative;
  transition: color 0.3s ease;
}

.site-header .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #8b0000;
  transition: width 0.3s ease;
}

.site-header .navbar-nav .nav-link:hover {
  color: #ffffff !important;
}

.site-header .navbar-nav .nav-link:hover::after {
  width: 70%;
}

.btn-satin-al {
  padding: 10px 24px !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 8px;
  white-space: nowrap;
}

.site-header .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  padding: 6px 10px;
}

.site-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  .site-header .navbar {
    padding: 10px 0;
  }


  .site-header .navbar>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-logo {
    height: 120px;
    margin-top: -25px;
    margin-bottom: -25px;
    margin-left: 0;
    transform: none;
    position: relative;
    z-index: 1050;
    object-fit: contain;
    object-position: left center;
    max-width: 70%;
  }

  .navbar-toggler {
    z-index: 1051;
    position: absolute;
    right: 25px;
    top: 11px;
    margin: 0;
    transform: none;
  }

  .site-header .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    margin-top: 12px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-header .navbar-nav .nav-item {
    margin: 4px 0;
  }

  .site-header .navbar-nav .nav-link {
    padding: 12px 0 !important;
  }

  .btn-satin-al {
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 160px 0 80px;
    /* More space from top */
    text-align: center;
    min-height: auto;
    /* Remove 100vh constraint on mobile */
  }

  .hero .d-flex {
    justify-content: center;
    margin-bottom: 32px;
  }

  .headline {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
    /* Prevent overlap */
  }

  .headline .accent {
    display: block;
    /* Stack vertically on mobile */
    margin-top: 5px;
    /* Add some spacing */
  }

  .hero p {
    margin: 0 auto 32px;
    font-size: 16px;
  }

  .hero-photo {
    max-width: 80%;
    /* Make image closer */
    margin-top: 32px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background: radial-gradient(circle at top right, rgba(20, 0, 0, 1), var(--black));
  overflow: hidden;
  scroll-margin-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(139, 0, 0, 0.2) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero::after {
  display: none;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.hero>.container {
  position: relative;
  z-index: 1;
}

.headline {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 32px;
  color: var(--light);
}

.accent {
  display: inline-block;
  position: relative;
  color: var(--red);
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  text-shadow: 0 0 40px rgba(255, 45, 85, 0.4);
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 48px;
  font-weight: 400;
}

.hero .d-flex {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.scroll-down {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.scroll-down:hover {
  color: var(--light);
}

.scroll-down a {
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}

.scroll-down:hover a {
  border-bottom-color: var(--red-light);
}

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-danger,
.btn-primary {
  background: #8b0000;
  color: var(--light);
  box-shadow: 0 8px 24px rgba(139, 0, 0, 0.4);
  border: 1px solid rgba(139, 0, 0, 0.5);
}

.btn-danger:hover,
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139, 0, 0, 0.5);
  background: #a00000;
}

.btn-outline-light,
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--light);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover,
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
  scroll-margin-top: 80px;
}

.section-dark {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-heading {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--light), var(--muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

/* Marquee Section */
.marquee-section {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 100px;
  overflow: hidden;
  background: var(--red);
  color: var(--light);
  display: flex;
  align-items: center;
  transform: rotate(-2deg) scale(1.1);
  /* Slight tilt for dynamism */
  margin: 60px 0;
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
}

.marquee-section .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 20s linear infinite;
}

.marquee-section .content {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  -webkit-text-stroke: 2px transparent;
  /* Filled text */
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

/* System Timeline */
.system-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.system-timeline {
  position: relative;
  max-width: 900px;
  margin: 80px auto 0;
  padding: 0 20px;
}

.system-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(139, 0, 0, 0.3), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 40px;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: var(--dark);
  border: 2px solid var(--red);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-marker {
  background: var(--red);
  transform: scale(1.2);
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
}

.marker-number {
  color: var(--light);
  font-size: 24px;
  z-index: 2;
  font-weight: 800;
  transition: color 0.3s ease;
}

.timeline-item:hover .marker-number {
  color: var(--light);
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.timeline-item:hover .timeline-content {
  border-color: rgba(220, 38, 38, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.timeline-item:nth-child(even):hover .timeline-content {
  transform: translateY(-8px) scale(1.02);
}

.timeline-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--light);
  letter-spacing: -0.3px;
}

.timeline-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 991px) {
  .system-timeline::before {
    left: 40px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 60px;
    gap: 24px;
  }

  .timeline-marker {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
  }

  .marker-number {
    font-size: 24px;
  }

  .timeline-content {
    padding: 24px 28px;
  }

  .timeline-item:hover .timeline-content {
    transform: translateX(0);
  }
}

@media (max-width: 576px) {
  .system-timeline {
    padding: 0 10px;
  }

  .timeline-item {
    padding-left: 50px;
    margin-bottom: 60px;
  }

  .timeline-marker {
    width: 50px;
    height: 50px;
  }

  .marker-number {
    font-size: 20px;
  }

  .timeline-content {
    padding: 20px 24px;
  }

  .timeline-title {
    font-size: 20px;
  }

  .timeline-text {
    font-size: 15px;
  }
}

/* About Section */
.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

#about .section-heading {
  text-align: left;
  margin-bottom: 24px;
}

#about p {
  font-size: 20px;
  color: var(--muted);
}

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

.stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.stat:hover {
  transform: translateY(-12px);
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.stat span {
  font-size: 56px;
  background: linear-gradient(180deg, var(--light) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}

.stat small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

/* Highlighted (Middle) Card */
/* Highlighted (Middle) Card - REMOVED */
/* All cards behave the same now */

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-12px);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.card h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background: var(--red);
  border-radius: 2px;
}

.section-sub {
  margin-bottom: 20px !important;
}

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.features li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.5;
  color: #a3a3a3;
  transition: color 0.3s ease;
}

.features li:hover {
  color: var(--light);
}

.features li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-family: inherit;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.features li:hover::before {
  transform: translateX(4px);
}

.price {
  font-size: 36px;
  font-weight: 800;
  color: var(--light);
  letter-spacing: -1px;
  padding-top: 32px;
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.card .btn {
  width: 100%;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card .btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

/* Middle card button filled by default */
.card:nth-child(2) .btn {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.card:nth-child(2) .btn:hover {
  background: var(--red-dark);
}



/* =========================================
   NEW DESIGN SYSTEM (CTA & CONTACT)
   ========================================= */

/* CTA: The Limitless Section */
.cta-new {
  position: relative;
  /* background: #000; removed to avoid conflict with var*/
  background: var(--black);
  padding: 180px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.cta-background-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  font-size: 25vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.cta-wrapper {
  position: relative;
  z-index: 10;
}

.cta-content-new {
  max-width: 900px;
}

.cta-title {
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 32px;
  color: var(--light);
  letter-spacing: -3px;
}

.text-stroke {
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
  display: block;
}

.cta-desc {
  font-size: 20px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
  border-left: 3px solid var(--red);
  padding-left: 24px;
}

.btn-new {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  background: var(--light);
  color: var(--black);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  /* Sharp edges */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-new:hover {
  background: var(--red);
  color: var(--light);
  transform: translateX(10px);
}

.btn-icon {
  width: 32px;
  height: 32px;
  background: var(--black);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-new:hover .btn-icon {
  background: var(--light);
  color: var(--red);
  transform: rotate(45deg);
}

/* Contact: The Bento Grid */
.contact-new {
  padding: 120px 0;
  background: var(--dark);
}

.contact-header {
  text-align: left;
  margin-bottom: 64px;
}

.contact-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--light);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.contact-subtitle {
  font-size: 18px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: all 0.4s ease;
}

.card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--light);
}

.card-value {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

.card-arrow {
  font-size: 24px;
  color: var(--muted-2);
  transition: all 0.4s ease;
}

/* Hover Effects */
.card-whatsapp:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.05);
}

.card-whatsapp:hover .card-icon {
  background: #25D366;
  color: #fff;
}

.card-instagram:hover {
  border-color: #E1306C;
  background: rgba(225, 48, 108, 0.05);
}

.card-instagram:hover .card-icon {
  background: #E1306C;
  color: #fff;
}

.card-email:hover {
  border-color: #ffcc00;
  background: rgba(255, 204, 0, 0.05);
}

.card-email:hover .card-icon {
  background: #ffcc00;
  color: #000;
}

.contact-card:hover .card-arrow {
  color: var(--light);
  transform: translate(4px, -4px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-background-text {
    font-size: 40vw;
  }

  .cta-desc {
    border-left: none;
    padding-left: 0;
    margin-top: 24px;
  }

  .btn-new {
    width: 100%;
    justify-content: center;
  }

  .contact-header {
    text-align: center;
  }

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

/* Footer */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0;
  margin-top: 80px;
}

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

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

.footer-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--light);
}

.site-footer>.container>div:first-child {
  color: var(--muted);
  font-size: 14px;
}

/* Staggered Text Reveal */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.2, 1, 0.3, 1),
    transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.timeline-item.reveal {
  transition-delay: 0.1s;
}

.timeline-item:nth-child(2).reveal {
  transition-delay: 0.2s;
}

.timeline-item:nth-child(3).reveal {
  transition-delay: 0.3s;
}

.card.reveal {
  transition-delay: 0.1s;
}

.card:nth-child(2).reveal {
  transition-delay: 0.2s;
}

.card:nth-child(3).reveal {
  transition-delay: 0.3s;
}

/* Stagger inside CTA */
.cta-title {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.cta-title span {
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {

  .cursor-dot,
  .cursor-outline {
    display: none;
    /* Hide custom cursor on mobile */
  }

  body {
    cursor: auto;
  }

  .section {
    padding: 100px 0;
  }

  .hero {
    padding: 140px 0 100px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  #about .section-heading {
    text-align: center;
  }

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

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero-photo {
    margin-top: 48px;
  }

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

  .contact-actions {
    flex-direction: column;
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .headline {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .section-heading {
    font-size: 32px;
  }

  .card {
    padding: 32px 24px;
  }

  .stat span {
    font-size: 36px;
  }
}

/* FAQ Section */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
  background: var(--dark-2);
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--light);
}

.faq-trigger span {
  font-size: 18px;
  font-weight: 600;
  padding-right: 24px;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--red);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-inner {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}