* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
		--bg: #060606;
		--bg2: #0b0b0b;
		--text: #f6f6f6;
		--gold: #d4af37;
		--gold2: #f2d37b;
		--ember: #ff7a18;
		--ember2: #ffb15a;
		--font-trajan: 'Trajan Pro', 'Trajan', serif;
		--font-inter: 'Inter', sans-serif;
		--pink: #ff4f9a;
		--pink2: #ff85b8;
		--pink-soft: rgba(255, 79, 154, 0.15);
		--pink-glow: rgba(255, 79, 154, 0.35);

    }
	html, body {
	  overflow-x: hidden;
	}

    body {
      font-family: var(--font-inter);
      background: #060606;
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
	  
	 
    }

    /* Animated Background */
    .animated-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
    }

    .gradient-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.15;
      animation: float 20s infinite ease-in-out;
    }

    .orb-1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--gold), transparent);
      top: -200px;
      left: -200px;
      animation-delay: 0s;
    }

    .orb-2 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--ember), transparent);
      top: 20%;
      right: -150px;
      animation-delay: 5s;
    }

    .orb-3 {
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, var(--gold2), transparent);
      bottom: -250px;
      left: 50%;
      animation-delay: 10s;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -30px) scale(1.1); }
      66% { transform: translate(-20px, 20px) scale(0.9); }
    }

    /* Particles */
    .particles-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: linear-gradient(180deg, var(--gold2), var(--pink2));
      border-radius: 50%;
      opacity: 0;
      animation: particleFloat 15s infinite;
    }

    @keyframes particleFloat {
      0% { transform: translateY(100vh) translateX(0); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-100px) translateX(100px); opacity: 0; }
    }

    /* Burning Ashes */
    .ashes-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 2;
      overflow: hidden;
    }

    .ash {
      position: absolute;
      background: var(--ember2);
      border-radius: 50%;
      opacity: 0;
      animation: ashFloat 12s infinite;
      filter: blur(1px);
    }

    .ash::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, var(--gold), transparent);
      border-radius: 50%;
      animation: glow 2s ease-in-out infinite;
    }

    @keyframes ashFloat {
      0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
      }
      5% {
        opacity: 0.8;
      }
      50% {
        opacity: 0.6;
        transform: translateY(50vh) translateX(50px) rotate(180deg);
      }
      95% {
        opacity: 0.3;
      }
      100% {
        transform: translateY(-10vh) translateX(100px) rotate(360deg);
        opacity: 0;
      }
    }

    @keyframes glow {
      0%, 100% {
        opacity: 0.6;
        transform: scale(1);
      }
      50% {
        opacity: 1;
        transform: scale(1.2);
      }
    }

    .ember-particle {
      position: absolute;
      width: 3px;
      height: 3px;
      background: var(--pink);
      border-radius: 50%;
      background: var(--pink);
box-shadow: 0 0 10px var(--pink), 0 0 20px var(--pink2);

      opacity: 0;
      animation: emberRise 8s infinite;
    }

    @keyframes emberRise {
      0% {
        transform: translateY(100vh) translateX(0) scale(1);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      50% {
        transform: translateY(30vh) translateX(30px) scale(0.8);
        opacity: 0.8;
      }
      90% {
        opacity: 0.4;
      }
      100% {
        transform: translateY(-20vh) translateX(-30px) scale(0.3);
        opacity: 0;
      }
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      padding: 1.5rem 2rem;
      backdrop-filter: blur(20px);
      background: rgba(6, 6, 6, 0.8);
      border-bottom: 1px solid rgba(212, 175, 55, 0.1);
      transition: all 0.3s ease;
    }

    nav.scrolled {
      padding: 1rem 2rem;
      background: rgba(6, 6, 6, 0.95);
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .nav-content {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 1.5rem;
      font-weight: 900;
      color: #fff;
      letter-spacing: 1px;
      cursor: pointer;
      transition: transform 0.3s ease;
      font-family: var(--font-trajan);
    }

    .logo:hover {
      transform: translateY(-2px);
    }

    .logo-icon {
      width: 50px;
      height: 50px;
      
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .logo-icon::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transform: rotate(45deg);
      animation: logoShine 3s infinite;
    }

    @keyframes logoShine {
      0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
      100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }

    .logo:hover .logo-icon {
      box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
      transform: scale(1.05);
    }

    .logo-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 8px;
    }

    .logo-text {
      background: linear-gradient(135deg, var(--gold), var(--pink2), var(--ember2), var(--gold2));

      background-size: 200% 200%;
      animation: gradientFlow 3s ease infinite;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
	  font-size: 2.2rem; 
      position: relative;
    }

    @keyframes gradientFlow {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }



    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
      -webkit-text-stroke: 0.5px var(--gold2);
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      font-family: var(--font-trajan);
      letter-spacing: 1px;
      font-size: 0.9rem;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--ember2));
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      color: #fff;
      -webkit-text-stroke: 0.8px var(--gold);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* Container */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding-top: 100px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-badge {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      background: rgba(212, 175, 55, 0.1);
      border: 1px solid rgba(212, 175, 55, 0.3);
      border-radius: 100px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 2rem;
      backdrop-filter: blur(10px);
      animation: fadeInUp 0.8s ease;
    }

    .hero h1 {
      font-size: 4rem;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      animation: fadeInUp 1s ease;
      background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: var(--font-trajan);
      letter-spacing: 0.5px;
    }

    .hero-text {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 2rem;
      line-height: 1.8;
      animation: fadeInUp 1.2s ease;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
      animation: fadeInUp 1.4s ease;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Buttons */
	.btn-primary {
	  padding: 1rem 2.5rem;
	  background: linear-gradient(135deg, var(--gold), var(--pink2), var(--ember2));
	  color: #000;
	  text-decoration: none;
	  border-radius: 12px;
	  font-weight: 800;
	  font-size: 1rem;
	  border: none;
	  cursor: pointer;
	  position: relative;
	  overflow: hidden;
	  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3), 0 0 25px var(--pink-glow);


	}

.orb-pink {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--pink), transparent);
  bottom: 10%;
  right: 20%;
  animation-delay: 7s;
}



    .btn-primary:hover::before {
      left: 100%;
    }

  .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.45);
}


    .btn-secondary {
      padding: 1rem 2.5rem;
      background: rgba(212, 175, 55, 0.1);
      color: #fff;
      text-decoration: none;
      border-radius: 12px;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s ease;
      border: 2px solid rgba(212, 175, 55, 0.4);
      cursor: pointer;
    }

    .btn-secondary:hover {
      background: rgba(212, 175, 55, 0.2);
      border-color: var(--gold);
      transform: translateY(-3px);
    }

    /* Hero Visual */
    .hero-visual {
      position: relative;
      animation: float 6s ease-in-out infinite;
    }

    .glass-card {
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 122, 24, 0.05));
      backdrop-filter: blur(20px);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 30px;
      padding: 3rem;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      transition: all 0.4s ease;
    }

    .glass-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
    }

    .icon-circle {
      width: 120px;
      height: 120px;
      margin: 0 auto 2rem;
      background: linear-gradient(135deg, var(--gold), var(--ember2));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
      animation: pulse 3s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    /* Section Styles */
    section {
      padding: 8rem 0;
      position: relative;
    }

    .section-title {
      font-size: 3.5rem;
      font-weight: 900;
      text-align: center;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: var(--font-trajan);
      letter-spacing: 0.5px;
    }

    .section-subtitle {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.6);
      text-align: center;
      margin-bottom: 4rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .gradient-line {
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--ember2));
      margin: 2rem auto;
      border-radius: 100px;
    }

    /* Card Grid */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .feature-card {
      background: linear-gradient(135deg, rgba(20, 20, 20, 0.6), rgba(10, 10, 10, 0.4));
      backdrop-filter: blur(20px);
      border: 1px solid rgba(212, 175, 55, 0.15);
      border-radius: 20px;
      padding: 2.5rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }

    .feature-card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: var(--pink2);
      box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2), 0 0 40px var(--pink-soft);

      background: linear-gradient(135deg, rgba(25, 25, 25, 0.7), rgba(15, 15, 15, 0.5));
	  
    }

    .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #fff;
      font-family: var(--font-trajan);
      letter-spacing: 0.5px;
    }

    .feature-card p {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.8;
    }

    /* Steps */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-top: 4rem;
    }

    .step-card {
      text-align: center;
      padding: 3rem 2rem;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 122, 24, 0.04));
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 24px;
      transition: all 0.4s ease;
    }

    .step-card:hover {
      transform: translateY(-10px);
      border-color: var(--gold);
      box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    }

    .step-number {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, var(--gold), var(--ember2));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 900;
      color: #000;
      box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    }

    .step-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-family: var(--font-trajan);
      letter-spacing: 0.5px;
    }

    .step-card p {
      color: rgba(255, 255, 255, 0.7);
    }

    /* Disclaimer */
    .disclaimer {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 1.5rem;
      animation: fadeInUp 1.6s ease;
    }

    /* Responsive */
    @media (max-width: 968px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .hero h1 {
        font-size: 3rem;
      }

      .steps-grid {
        grid-template-columns: 1fr;
      }

      .nav-links {
        display: none;
      }
    }

    /* Scroll Reveal */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }
	
	/* Mobile Nav */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--ember2));
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

/* Slide Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 100%;
  height: 100dvh;
  min-height: 100vh;
  background: linear-gradient(180deg, #000000, #050505 60%, #000000);
   padding: 7.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right 0.35s ease;
  z-index: 2000; /* ABOVE NAV */
}


.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--ember2), var(--gold2));
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.8);
}



.mobile-menu a {
  font-family: var(--font-trajan);
  letter-spacing: 1px;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  -webkit-text-stroke: 0.5px var(--gold2);
}

/* Active States */
.mobile-menu.active {
  right: 0;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 968px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
	
  }
	
  .logo-icon {
    width: 36px;
    height: 36px;
  }

	.logo-text {
    font-size: 1.2rem;
  }
}

.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--ember2), var(--gold2));
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 20;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-close:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.mobile-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  text-align: center;
}

.mobile-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.5));
}

.mobile-logo span {
  font-family: var(--font-trajan);
  letter-spacing: 2px;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--ember2), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-mobile-wrap {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

.mobile-btn {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  border-radius: 12px;
  text-align: center;
  width: auto;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .cta-mobile-wrap {
    justify-content: stretch;
  }

  .mobile-btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 1.1rem 1.25rem;
    font-size: 1.05rem;
  }
}


.cta-section {
  text-align: center;
  background: radial-gradient(circle at top, rgba(212,175,55,0.08), transparent 60%);
  padding: 10rem 0;
  background: radial-gradient(circle at top, rgba(255,79,154,0.12), transparent 60%);

}

.footer-glow.pink {
  background: var(--pink);
}

.orb-pink {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--pink), transparent);
  top: 40%;
  left: 20%;
  animation-delay: 7s;
}


.cta-inner {
  max-width: 800px;
}

.cta-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  font-family: var(--font-trajan);
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.75));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-button {
  font-size: 1.1rem;
  padding: 1.2rem 3rem;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer {
  position: relative;
  background: #050505;
  color: rgba(255,255,255,0.75);
  overflow: hidden;
}

/* Horizon glow */
.footer-horizon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 220px;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(212,175,55,0.12),
    rgba(255,122,24,0.08),
    transparent
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}


.footer-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  z-index: 0;
}

.glow-left {
  background: var(--gold);
  top: -120px;
  left: -120px;
}

.glow-right {
  background: var(--ember);
  bottom: -120px;
  right: -120px;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4rem;
  padding: 8rem 2rem 6rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   opacity: 0.7;
}

.footer h3 {
  font-family: var(--font-trajan);
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.8rem;
}

.footer a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--gold);
}

.footer-brand p {
  margin-top: 1.5rem;
  max-width: 340px;
  line-height: 1.7;
  font-size: 0.9rem;
}

.footer-logo {
  max-width: 250px;   /* adjust as needed */
  height: auto;
  object-fit: contain;
  display: block;
}


.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: rgba(212,175,55,0.1);
  box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.footer-note {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 280px;
}

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.2);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 6rem 0 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-description {
  max-width: 360px;
  line-height: 1.7;
}

.footer-col h3 {
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-description {
    margin: 0 auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-col ul {
    align-items: center;
  }
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  max-width: 55%;
  max-height: 55%;
  object-fit: contain;
}


.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}


.results-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.results-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-modal.active {
  display: flex;
}

.modal-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
  box-shadow: 0 0 50px rgba(255,79,154,0.25);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  padding: 1rem;
  user-select: none;
}

.modal-arrow.left { left: 20px; }
.modal-arrow.right { right: 20px; }

.modal-arrow:hover,
.modal-close:hover {
  color: #ff4f9a;
}


/*MOBILE *********************************************************************************************************************************/
/*MOBILE *********************************************************************************************************************************/
/*MOBILE *********************************************************************************************************************************/

/* ========== MOBILE OPTIMIZATION ========== */
@media (max-width: 900px) {

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem;
    text-align: center;
  }

  .hero-visual img {
    max-width: 260px !important;
  }

  h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
    line-height: 1.1;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    text-align: center;
  }

  .section-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .card-grid,
  .steps-grid {
    grid-template-columns: 1fr !important;
  }

  .feature-card,
  .step-card {
    padding: 2rem;
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
  }

  .modal-arrow {
    font-size: 2.2rem;
  }

  .modal-arrow.left {
    left: 10px;
  }

  .modal-arrow.right {
    right: 10px;
  }

  .modal-close {
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
  }

  .cta-inner {
    padding: 2.5rem 1.5rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

}

@media (max-width: 900px) {

  .hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem;
    text-align: center;
  }

  .hero-badge {
    display: inline-block;
    margin: 0 auto 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
    line-height: 1.1;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .disclaimer {
    font-size: 0.85rem;
    max-width: 90%;
    margin: 2rem auto 0;
  }

  .hero-visual {
    order: -1; /* logo comes first on mobile */
  }

  .glass-card {
    padding: 2rem;
  }

  .glass-card img {
    max-width: 220px !important;
  }

  .glass-card p {
    font-size: 1rem;
  }
}
