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

:root {
  /* Midnight Horizon - Dreamy & Premium Palette */
  --bg-color: #0A0B1A;
  --surface-color: #12142B;
  --surface-light: #1D2040;
  
  /* Text Colors */
  --text-main: #FFFFFF;
  --text-muted: #A3A7C2;
  
  /* Dreamy Pastel Neons */
  --c-pink: #FF7EB3;
  --c-purple: #8B5CF6;
  --c-cyan: #06B6D4;
  --c-teal: #14F1D9;

  --font-heading: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--c-pink), var(--c-purple)); border-radius: 50px; }

/* Scroll Progress */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--c-cyan), var(--c-pink));
  width: 0%; z-index: 10000; transition: width 0.1s;
}

/* Custom Cursor */
body, a, button, .btn, .social-btn, .skill-tag, .nav-links a {
  cursor: none;
}
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px; background: var(--c-pink); border-radius: 50%;
  pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s;
}
.cursor-outline {
  position: fixed; top: 0; left: 0; width: 40px; height: 40px; border: 2px solid var(--c-cyan); border-radius: 50%;
  pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s;
}
body:has(a:hover) .cursor-outline, body:has(button:hover) .cursor-outline, body:has(.btn:hover) .cursor-outline, body:has(.social-btn:hover) .cursor-outline {
  width: 60px; height: 60px; background: rgba(6, 182, 212, 0.15); border-color: var(--c-pink);
}

@media (hover: none) and (pointer: coarse) {
  body, a, button, .btn, .social-btn, .skill-tag, .nav-links a { cursor: auto !important; }
  .cursor-dot, .cursor-outline { display: none !important; }
}

/* Cloud Shape Floating Navbar */
nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  width: 92%;
  max-width: 1180px;
  padding: 15px 30px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.nav-logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--text-main); letter-spacing: 1px; }
.nav-logo span { 
  background: linear-gradient(90deg, var(--c-pink), var(--c-purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 38px;
    list-style: none;
    align-items: center;
}
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 50%; width: 0; height: 2px;
  background: var(--c-pink); transition: all 0.3s ease; transform: translateX(-50%);
}
.nav-links a:hover { color: var(--text-main); }
.nav-links a:hover::after { width: 100%; }

/* Fit Navbar Button Perfectly */
nav .btn {
  margin-top: 0;
  padding: 10px 20px;
  font-size: 0.85rem;
}
nav .btn::before, nav .btn::after {
  display: none; /* Remove cloud bumps so it fits flawlessly inside the sleek top bar */
}

/* Literal Cloud Shape Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 50px;

  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;

  position: relative;
  z-index: 1;
  margin-top: 25px;
}
.btn::before, .btn::after {
  content: ''; position: absolute; border-radius: 50%; z-index: -1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn::before { width: 35px; height: 35px; top: -15px; left: 18%; }
.btn::after { width: 45px; height: 45px; top: -20px; right: 22%; }

.btn-primary { background: var(--c-pink); color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.btn-primary::before, .btn-primary::after { background: var(--c-pink); }
.btn-primary:hover { transform: translateY(-4px) scale(1.05); background: var(--c-purple); box-shadow: 0 15px 35px rgba(0,0,0,0.5); }
.btn-primary:hover::before, .btn-primary:hover::after { background: var(--c-purple); }

.btn-outline { background: var(--c-cyan); color: #000; }
.btn-outline::before, .btn-outline::after { background: var(--c-cyan); }
.btn-outline:hover { transform: translateY(-4px) scale(1.05); background: var(--c-purple); color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.4); }
.btn-outline:hover::before, .btn-outline:hover::after { background: var(--c-purple); }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 5%; position: relative; box-sizing: border-box; }
#vanta-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.7; }
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 100%); z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 900px; text-align: center; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero h1 { font-family: var(--font-heading); font-size: clamp(3rem, 7vw, 6rem); line-height: 1.1; margin-bottom: 25px; text-transform: uppercase; }
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--c-pink), var(--c-purple), var(--c-teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-size: 200% auto; animation: shine 5s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

.hero p { font-size: clamp(1.1rem, 2vw, 1.2rem); color: var(--text-muted); max-width: 650px; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 50px; margin-top: 50px; padding-top: 30px; flex-wrap: wrap; justify-content: center; }
.stat-item h3 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--text-main); }
.stat-item p { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--c-pink); }

/* Marquee */
.marquee-wrapper { background: var(--surface-color); padding: 25px 0; overflow: hidden; white-space: nowrap; display: flex; }
.marquee-content { display: inline-block; animation: marquee 20s linear infinite; font-family: var(--font-heading); font-size: 1.3rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 3px; }
.marquee-content span { margin: 0 40px; }
.marquee-content span.star { color: var(--c-teal); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Sections */
.section { padding: 100px 5%; position: relative; }
.section-header { margin-bottom: 60px; text-align: center; }
.section-header h2 { font-family: var(--font-heading); font-size: clamp(2.5rem, 4vw, 3.5rem); text-transform: uppercase; margin-bottom: 15px; }
.section-header h2 span { 
  background: linear-gradient(90deg, var(--c-pink), var(--c-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

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

/* Cloud Styled Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.02); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05); padding: 40px; transition: all 0.5s ease; position: relative;
  overflow: hidden; border-radius: 30px; /* Cloud soft corners */
}
.glass-card::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255, 126, 179, 0.1), transparent 70%); opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.glass-card:hover { border-color: rgba(255, 126, 179, 0.4); transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.glass-card:hover::before { opacity: 1; }

.icon-box {
  width: 70px; height: 70px; border-radius: 50px; /* Cloud / Pill */
  background: rgba(255,255,255,0.05);
  display: flex; justify-content: center; align-items: center; font-size: 1.8rem; margin-bottom: 20px;
}
.icon-cyan { color: var(--c-cyan); } .icon-purple { color: var(--c-purple); } .icon-pink { color: var(--c-pink); }

.glass-card h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 15px; }
.glass-card p { color: var(--text-muted); font-size: 0.95rem; }

/* About Section */
.about-inner { display: flex; align-items: center; gap: 60px; max-width: 1000px; margin: 0 auto; flex-wrap: wrap; }
.about-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;

  border: 4px solid var(--c-pink);
  box-shadow: 0 0 30px rgba(255, 126, 179, 0.4);
}
.about-text { flex: 1; min-width: 300px; }
.about-text h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 15px; }
.about-text h2 span { background: linear-gradient(90deg, var(--c-pink), var(--c-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.about-text p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 20px; line-height: 1.8; }
.about-skills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.skill-tag {
  padding: 10px 24px; 
  /* Cloud Shape for tags */
  border-radius: 40px 25px 45px 30px / 30px 45px 25px 40px; 
  background: rgba(255, 126, 179, 0.08);
  border: 1px solid rgba(255, 126, 179, 0.2); font-size: 0.8rem; font-weight: 600;
  color: var(--c-pink); letter-spacing: 1px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.skill-tag:hover {
  border-radius: 25px 40px 30px 45px / 45px 30px 40px 25px;
  background: rgba(255, 126, 179, 0.15);
}

/* Pricing - Cloud Cards */
.pricing-card {
  background: var(--surface-color); border: 1px solid rgba(255,255,255,0.05); padding: 40px; display: flex; flex-direction: column; 
  border-radius: 30px; /* Cloud Softness */
  text-align: center;
}
.pricing-card.premium {
  border: 1px solid transparent;
  background: linear-gradient(var(--surface-color), var(--surface-color)) padding-box,
              linear-gradient(135deg, var(--c-pink), var(--c-teal)) border-box;
  transform: translateY(-15px); box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}
.pricing-card .price { font-family: var(--font-heading); font-size: 3.5rem; color: #fff; margin: 15px 0; }
.features-list { list-style: none; margin: 25px 0; flex-grow: 1; text-align: left; }
.features-list li { margin-bottom: 12px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.features-list li::before { content: '✦'; color: var(--c-pink); }

.example-links { margin-top: 25px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.example-links p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 5px; }
.example-links a { 
  color: var(--c-cyan); text-decoration: none; font-size: 0.85rem; transition: color 0.3s;
  padding: 5px 15px; border-radius: 50px; background: rgba(6, 182, 212, 0.1);
}
.example-links a:hover { color: var(--c-pink); background: rgba(255, 126, 179, 0.1); }

/* Portfolio */
.portfolio-card { position: relative; overflow: hidden; height: 280px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.05); }
.portfolio-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.7); }
.portfolio-card:hover .portfolio-img { transform: scale(1.1); filter: brightness(1); }
.portfolio-info {
  position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px;
  background: linear-gradient(to top, rgba(10,11,26,0.95), transparent);
  transform: translateY(20px); opacity: 0; transition: all 0.4s ease;
}
.portfolio-card:hover .portfolio-info { transform: translateY(0); opacity: 1; }
.portfolio-info h3 { font-family: var(--font-heading); font-size: 1.4rem; color: #fff; margin-bottom: 8px; }
.portfolio-tag { display: inline-block; padding: 6px 15px; background: var(--c-purple); color: #fff; font-size: 0.7rem; border-radius: 50px; text-transform: uppercase; font-weight: 700; }

/* Team Section */
.team-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 30px; padding: 35px 25px; text-align: center; transition: all 0.4s;
}
.team-card:hover { transform: translateY(-10px); border-color: rgba(255, 126, 179, 0.4); background: rgba(255, 126, 179, 0.05); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }
.team-img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; border: 3px solid var(--c-pink); padding: 4px; }
.team-card h3 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 5px; }
.team-role { color: var(--c-cyan); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; display: block; margin-bottom: 12px; }
.team-phone { color: var(--text-muted); font-size: 0.9rem; }
.team-phone a { color: var(--c-pink); text-decoration: none; font-weight: 600; }
.team-phone a:hover { color: var(--c-cyan); }

/* FAQ Section — Premium Accordion */
.faq-box { max-width: 850px; margin: 0 auto; }

/* FAQ Category Headers */
.faq-category { margin-top: 35px; margin-bottom: 8px; }
.faq-category:first-child { margin-top: 0; }
.faq-category-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--c-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 20px;
  border-left: 3px solid var(--c-pink);
  background: rgba(255, 126, 179, 0.04);
  border-radius: 0 15px 15px 0;
}

/* FAQ Items */
.faq-item {
  background: var(--surface-color);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(255, 126, 179, 0.3);
  background: var(--surface-light);
}
.faq-item.active {
  border-color: rgba(255, 126, 179, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1.4;
}
.faq-question:hover { color: var(--c-pink); }
.faq-item.active .faq-question { color: var(--c-pink); }

/* FAQ Toggle Icon */
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 126, 179, 0.1);
  color: var(--c-pink);
  font-size: 1.3rem;
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--c-pink);
  color: #fff;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 28px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 25px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  padding-top: 5px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* FAQ CTA Box */
.faq-cta {
  margin-top: 45px;
  padding: 40px 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 126, 179, 0.08), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(255, 126, 179, 0.15);
  border-radius: 25px;
}
.faq-cta p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 5px;
}
.faq-cta .btn {
  margin-top: 15px;
}


/* FAB */
.fab {
  position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; 
  /* Cloud Shape */
  border-radius: 45px 35px 50px 30px / 35px 50px 30px 45px;
  background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
  display: flex; justify-content: center; align-items: center; font-size: 2rem; text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); z-index: 1000; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fab:hover { 
  transform: scale(1.15); 
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6); 
  border-radius: 35px 45px 30px 50px / 50px 30px 45px 35px;
}

/* Instagram FAB */
.fab-instagram {
  bottom: 110px;
  right: 30px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== HAMBURGER MENU BUTTON (Hidden on Desktop) ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-menu-backdrop.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  width: 90%;
  max-width: 1000px;
  background: rgba(18, 20, 43, 0.97);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 30px 25px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-links li a {
  display: block;
  padding: 14px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.mobile-menu-links li a:hover,
.mobile-menu-links li a:focus {
  color: var(--text-main);
  background: rgba(255, 126, 179, 0.08);
}

.mobile-menu-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 15px;
  padding: 14px 25px;
  font-size: 0.9rem;
}
.mobile-menu-cta::before,
.mobile-menu-cta::after {
  display: none;
}

/* ===== MOBILE RESPONSIVE — 768px and below ===== */
@media (max-width: 768px) {

  /* Force no horizontal scrolling */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* --- Navbar --- */
  nav {
    width: 92%;
    padding: 12px 18px;
  }
  .nav-links {
    display: none !important;
  }
  .nav-partnership-btn {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  .nav-logo {
    font-size: 1.3rem;
  }
  nav .btn {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  /* --- Mobile Menu top offset matches smaller nav --- */
  .mobile-menu {
    top: 70px;
    width: 92%;
  }

  /* --- Hero Section --- */
  .hero {
    min-height: 100vh;
    padding: 120px 5% 60px; /* Ensuring mobile has bottom padding for balance */
  }
  .hero-content {
    padding: 0 5px;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 80%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
    font-size: 0.85rem;
    padding: 14px 25px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
    padding-top: 25px;
  }
  .stat-item h3 {
    font-size: 2rem;
  }

  /* --- Marquee --- */
  .marquee-content {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  /* --- Section Global --- */
  .section {
    padding: 60px 5%;
  }
  .section-header {
    margin-bottom: 35px;
  }
  .section-header h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .section-header p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  /* --- Grid Cards (Benefits, Pricing, Portfolio, Team) --- */
  .grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  /* --- Glass Cards (Benefits) --- */
  .glass-card {
    padding: 30px 25px;
    border-radius: 25px;
  }
  .glass-card h3 {
    font-size: 1.2rem;
  }

  /* --- Pricing Cards --- */
  .pricing-card {
    padding: 30px 25px;
    border-radius: 25px;
  }
  .pricing-card.premium {
    transform: translateY(0);
  }
  .pricing-card .price {
    font-size: 2.8rem;
  }
  .features-list li {
    font-size: 0.85rem;
  }
  .example-links a {
    font-size: 0.8rem;
  }

  /* --- Portfolio Cards --- */
  .portfolio-card {
    height: 220px;
    border-radius: 20px;
  }
  .portfolio-info {
    transform: translateY(0);
    opacity: 1;
    padding: 20px;
  }
  .portfolio-info h3 {
    font-size: 1.15rem;
  }

  /* --- About Section --- */
  .about-inner {
    text-align: center;
    flex-direction: column;
    gap: 25px;
  }
  .about-img {
    width: 180px;
    height: 180px;
  }
  .about-text {
    min-width: unset;
    width: 100%;
  }
  .about-text h2 {
    font-size: 1.8rem;
  }
  .about-text p {
    font-size: 0.95rem;
  }
  .about-skills {
    justify-content: center;
  }
  .skill-tag {
    padding: 8px 18px;
    font-size: 0.75rem;
  }

  /* --- Team Cards --- */
  .team-card {
    padding: 25px 20px;
    border-radius: 25px;
  }
  .team-img {
    width: 90px;
    height: 90px;
  }
  .team-card h3 {
    font-size: 1.1rem;
  }
  .team-role {
    font-size: 0.75rem;
  }

  /* --- FAQ Section --- */
  .faq-category-title {
    font-size: 0.9rem;
    padding: 10px 16px;
    letter-spacing: 1.5px;
  }
  .faq-item {
    border-radius: 16px;
  }
  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
    gap: 12px;
  }
  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
  .faq-answer p {
    font-size: 0.88rem;
    line-height: 1.75;
  }
  .faq-cta {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .faq-cta p {
    font-size: 1.1rem;
  }

  /* --- Footer --- */
  footer {
    padding: 50px 5% 25px;
    border-radius: 35px 35px 0 0;
  }
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 30px;
    text-align: center;
  }
  .footer-col a {
    display: inline-block;
    margin: 4px 8px;
  }
  .footer-bottom {
    font-size: 0.75rem;
    margin-top: 30px;
  }

  /* --- FABs (floating action buttons) --- */
  .fab {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    bottom: 20px;
    right: 20px;
  }
  .fab-instagram {
    bottom: 90px;
    right: 20px;
  }

  /* --- Custom Cursor: disabled on touch --- */
  .cursor-dot, .cursor-outline {
    display: none !important;
  }
}

/* ===== SMALL PHONES — 480px and below ===== */
@media (max-width: 480px) {
  nav {
    padding: 10px 14px;
  }
  .nav-logo {
    font-size: 1.15rem;
  }
  .mobile-menu {
    top: 62px;
    padding: 24px 20px;
    border-radius: 20px;
  }
  .mobile-menu-links li a {
    padding: 12px 16px;
    font-size: 0.88rem;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
  }
  .hero-buttons .btn {
    width: 90%;
  }
  .stat-item h3 {
    font-size: 1.6rem;
  }
  .section {
    padding: 45px 4%;
  }
  .pricing-card .price {
    font-size: 2.3rem;
  }
  .about-img {
    width: 140px;
    height: 140px;
  }
  footer {
    border-radius: 25px 25px 0 0;
  }
}

/* ===== TABLETS — 769px to 1024px ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  nav {
    width: 95%;
    padding: 12px 25px;
  }
  .nav-links {
    gap: 15px;
  }
  .nav-links a {
    font-size: 0.75rem;
  }
  nav .btn {
    padding: 10px 18px;
    font-size: 0.75rem;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }
}

/* Ensure mobile menu is hidden on desktop */
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-backdrop,
  .hamburger {
    display: none !important;
  }
}

/* ===== MATCHED 3D FOOTER (BALANCED STYLE) ===== */

footer {
  background: var(--surface-color);
  padding: 70px 5% 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-radius: 50px 50px 0 0; /* matches your cloud UI */
}

/* Grid layout */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
}

/* Column */
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--text-main);
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Links */
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

/* Hover = matches your site theme */
.footer-col a:hover {
  color: var(--c-pink);
  transform: translateX(4px);
}

/* Button (uses your existing design language) */
.footer-btn {
  margin-top: 12px;
  display: inline-block;
  padding: 10px 20px;

  /* cloud-style button */
  border-radius: 40px 25px 45px 30px / 30px 45px 25px 40px;

  background: var(--c-pink);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

/* Hover animation (same as your buttons) */
.footer-btn:hover {
  background: var(--c-purple);
  transform: translateY(-3px) scale(1.05);
}

/* Bottom text */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom span {
  color: var(--c-pink);
}