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

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
  --background: 0 0% 100%;
  --foreground: 244 75% 16%;
  --card: 0 0% 100%;
  --card-foreground: 244 75% 16%;
  --primary: 225 91% 60%;
  --primary-foreground: 0 0% 100%;
  --secondary: 230 25% 95%;
  --secondary-foreground: 244 75% 16%;
  --muted: 230 25% 95%;
  --muted-foreground: 230 10% 50%;
  --accent: 225 91% 96%;
  --accent-foreground: 225 91% 60%;
  --destructive: 0 84.2% 60.2%;
  --border: 230 20% 90%;
  --input: 230 20% 90%;
  --ring: 225 91% 60%;
  --radius: 1.25rem;
  --navy: 244 75% 16%;
  --navy-foreground: 0 0% 100%;
  --success: 152 60% 45%;
  --success-foreground: 0 0% 100%;
  --warning: 35 92% 55%;
  --warning-foreground: 0 0% 100%;
  --info: 200 80% 55%;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Sora', system-ui, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Layout ── */
.container-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container-main { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-main { padding: 0 2rem; } }

.section-padding { padding: 5rem 0; }
@media (min-width: 768px) { .section-padding { padding: 100px 0; } }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.3s;
  height: 64px; display: flex; align-items: center;
}
@media (min-width: 768px) { .header { height: 80px; } }
.header.scrolled {
  background: hsla(0,0%,100%,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border-bottom: 1px solid hsl(var(--border));
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}

/* Brand Toggle */
.brand-toggle {
  position: relative; display: flex; align-items: center;
  border-radius: 9999px; padding: 4px;
  background: #E5E7EB;
}
.brand-toggle-slider {
  position: absolute; top: 4px; bottom: 4px;
  border-radius: 9999px;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(200,80%,55%));
  box-shadow: 0 4px 12px hsla(225,91%,60%,0.25);
  transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
  width: calc(50% - 4px);
}
.brand-toggle-slider.ai { left: 50%; }
.brand-toggle-slider.main { left: 4px; }
.brand-toggle button {
  position: relative; z-index: 2;
  padding: 6px 12px; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 600;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .brand-toggle button { padding: 6px 16px; font-size: 0.875rem; }
}
.brand-toggle button.active { color: #fff; }
.brand-toggle button.inactive { color: #6B7280; }

/* Desktop Nav */
.desktop-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.desktop-nav a {
  font-size: 0.875rem; font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  position: relative;
}
.desktop-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: hsl(var(--primary));
  transition: width 0.3s;
}
.desktop-nav a:hover { color: hsl(var(--foreground)); }
.desktop-nav a:hover::after { width: 100%; }

/* Mobile Nav Toggle */
.mobile-toggle { display: block; padding: 8px; color: hsl(var(--foreground)); }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 24px; height: 24px; }

/* Mobile Menu */
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: hsla(0,0%,100%,0.95); backdrop-filter: blur(20px);
  border-top: 1px solid hsl(var(--border));
  animation: fadeUp 0.3s ease-out;
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu nav { padding: 1.5rem 1rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a {
  font-size: 1rem; font-weight: 500; padding: 0.5rem 0;
  color: hsl(var(--muted-foreground)); transition: color 0.2s;
}
.mobile-menu a:hover { color: hsl(var(--foreground)); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Hero Section ── */
.hero {
  position: relative; display: flex; flex-direction: column; align-items: center;
  padding-top: 80px; padding-bottom: 8rem; overflow: hidden; background: #fff;
}
@media (min-width: 1024px) { .hero { padding-top: 110px; } }
.hero-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 3rem; padding: 0 1rem;
}
@media (min-width: 640px) { .hero-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row; justify-content: space-between;
    gap: 4rem; padding: 0 2rem;
  }
}
.hero-left { width: 100%; }
@media (min-width: 1024px) { .hero-left { width: 55%; } }
.hero-left h1 {
  font-size: 2.25rem; font-weight: 700; line-height: 1.1;
  color: hsl(var(--foreground));
}
@media (min-width: 640px) { .hero-left h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-left h1 { font-size: 3rem; } }
@media (min-width: 1280px) { .hero-left h1 { font-size: 3.75rem; } }
.hero-left p {
  font-size: 1.125rem; color: hsl(var(--muted-foreground));
  max-width: 36rem; line-height: 1.7; margin-top: 1.75rem;
}
.hero-buttons { display: flex; align-items: center; gap: 1rem; margin-top: 1.75rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: hsl(var(--primary)); color: #fff;
  padding: 1rem 2rem; border-radius: 1rem;
  font-weight: 600; font-size: 1rem;
  box-shadow: 0 4px 20px -4px hsla(225,91%,60%,0.35);
  transition: all 0.3s;
}
.btn-primary:hover {
  box-shadow: 0 8px 36px -4px hsla(225,91%,60%,0.5);
  transform: scale(1.02);
}
.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  border: 2px solid hsl(var(--border)); color: hsl(var(--foreground));
  background: hsla(0,0%,100%,0.6); backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.btn-icon:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }

.hero-right { width: 100%; }
@media (min-width: 1024px) { .hero-right { width: 50%; } }
.hero-image-wrapper {
  border-radius: 1rem; overflow: hidden;
  box-shadow: 0 8px 30px -8px rgba(0,0,0,0.12);
  animation: heroFloat 4s ease-in-out infinite;
}
.hero-image-wrapper img { width: 100%; height: auto; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Stats Bar */
.stats-bar {
  width: 100%; margin-top: 5rem;
  background: hsl(var(--navy)); color: hsl(var(--navy-foreground));
}
.stats-bar-inner {
  margin: 1rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0;
}
.stat-item { text-align: center; }
.stat-value { font-size: 1.5rem; font-weight: 700; }
@media (min-width: 768px) { .stat-value { font-size: 1.875rem; } }
.stat-label { font-size: 0.75rem; opacity: 0.7; margin-top: 0.25rem; }

/* ── Holi Gradient Text ── */
@keyframes holi-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.holi-gradient-text {
  background: linear-gradient(135deg, hsl(225 91% 58%) 0%, hsl(270 60% 55%) 30%, hsl(330 65% 55%) 60%, hsl(270 60% 55%) 80%, hsl(225 91% 58%) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: holi-gradient-shift 6s ease-in-out infinite;
}

/* ── Section Titles ── */
.section-title {
  font-size: 1.875rem; font-weight: 700;
  color: hsl(var(--foreground)); text-align: center;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.text-primary-color { color: hsl(var(--primary)); }

/* ── UGC Section ── */
.ugc-section {
  padding: 5rem 0; background: hsl(var(--secondary)); overflow: hidden;
}
@media (min-width: 768px) { .ugc-section { padding: 100px 0; } }
.ugc-title { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .ugc-title { margin-bottom: 4rem; } }

/* Marquee */
@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.marquee-track {
  display: flex; gap: 1.5rem; width: max-content;
  animation: marquee-left var(--marquee-duration, 30s) linear infinite;
  will-change: transform;
}
.marquee-track-right {
  display: flex; gap: 0.625rem; width: max-content;
  animation: marquee-right var(--marquee-duration, 30s) linear infinite;
  will-change: transform;
}
.marquee-container:hover .marquee-track,
.marquee-container:hover .marquee-track-right {
  animation-play-state: paused;
}

/* UGC Cards */
.ugc-card-mobile {
  width: 75vw; max-width: 300px; flex-shrink: 0;
}
.ugc-card-desktop {
  width: 320px; flex-shrink: 0; cursor: pointer;
}
.ugc-card-desktop:hover .ugc-img-wrapper { transform: scale(1.05); }
.ugc-img-wrapper {
  border-radius: 24px; overflow: hidden; transition: transform 0.3s;
}
.ugc-img-wrapper.mobile { aspect-ratio: 9/16; border-radius: 25px; }
.ugc-img-wrapper.desktop { height: 450px; }
.ugc-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.ugc-label {
  text-align: center; margin-top: 1rem; font-weight: 600;
  color: hsl(var(--foreground)); font-size: 0.875rem;
}

.card-shadow {
  box-shadow: 0 4px 24px -4px hsla(225,91%,60%,0.08), 0 2px 8px -2px hsla(244,75%,16%,0.04);
}
.card-shadow-hover {
  box-shadow: 0 12px 40px -8px hsla(225,91%,60%,0.15), 0 4px 16px -4px hsla(244,75%,16%,0.08);
}

/* Mobile-only / Desktop-only */
.mobile-only { display: block; }
.desktop-only { display: none; }
@media (min-width: 768px) {
  .mobile-only { display: none; }
  .desktop-only { display: block; }
}

/* ── Ecosystem Section ── */
.ecosystem-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .ecosystem-grid { grid-template-columns: repeat(2, 1fr); } }
.eco-card {
  display: block; background: hsl(var(--card));
  border-radius: 1.5rem; padding: 2rem;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s;
}
.eco-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px -8px hsla(225,91%,60%,0.15);
}
.eco-card-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.eco-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  display: flex; align-items: center; justify-content: center;
}
.eco-badge {
  font-size: 0.75rem; font-weight: 700;
  padding: 0.375rem 0.75rem; border-radius: 9999px;
}
.badge-restricted { background: hsl(var(--warning)); color: hsl(var(--warning-foreground)); }
.badge-ai { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.badge-edu { background: hsl(var(--success)); color: hsl(var(--success-foreground)); }
.badge-invest { background: hsl(50,90%,50%); color: hsl(var(--foreground)); }
.eco-card h3 {
  font-size: 1.25rem; font-weight: 700;
  color: hsl(var(--foreground)); margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.eco-card:hover h3 { color: hsl(var(--primary)); }
.eco-card p {
  font-size: 0.875rem; color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ── Partners & Clients ── */
.partners-section {
  padding: 3rem 0 5rem; background: hsl(var(--secondary)); overflow: hidden;
}
@media (min-width: 768px) { .partners-section { padding: 5rem 0 100px; } }
.clients-section {
  padding: 3rem 0 5rem; overflow: hidden;
}
@media (min-width: 768px) { .clients-section { padding: 5rem 0 100px; } }

.partner-card-mobile {
  min-width: 110px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: hsl(var(--card)); border-radius: 18px; padding: 0.75rem;
  box-shadow: 0 2px 10px -3px rgba(0,0,0,0.06);
}
.partner-card-mobile img { max-height: 40px; width: auto; object-fit: contain; }

.partner-card-desktop {
  height: 130px; width: 380px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: hsl(var(--card)); border-radius: 18px; padding: 0.75rem;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,0.08);
}
@media (min-width: 1024px) { .partner-card-desktop { height: 140px; width: 420px; } }
.partner-card-desktop img { width: 85%; height: auto; object-fit: contain; }

.client-card {
  border-radius: 1rem; background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; cursor: pointer; overflow: hidden;
  padding: 6px;
}
.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -8px hsla(225,91%,60%,0.15);
}
.client-card.desktop { width: 120px; height: 120px; flex-shrink: 0; }
.client-card.mobile {
  min-width: 110px; flex-shrink: 0; padding: 0.75rem;
  box-shadow: 0 2px 10px -3px rgba(0,0,0,0.05);
}
.client-card img { width: 100%; height: 100%; object-fit: contain; }
.client-card.mobile img { max-height: 40px; width: auto; }

/* ── Awards Section ── */
.awards-section {
  background: hsl(var(--navy)); color: hsl(var(--navy-foreground));
}
.awards-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .awards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .awards-grid { grid-template-columns: repeat(4, 1fr); } }
.award-card {
  text-align: center; padding: 1.5rem; border-radius: 20px;
  border: 1px solid hsla(225,91%,60%,0.15);
  background: hsl(244,60%,12%);
  transition: all 0.3s;
}
.award-card:hover {
  border-color: hsla(225,91%,60%,0.4);
  transform: translateY(-8px);
  box-shadow: 0 0 30px -5px hsla(225,91%,60%,0.2);
}
.award-img {
  width: 100%; aspect-ratio: 4/3; border-radius: 1rem;
  overflow: hidden; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.award-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.award-card h3 { font-weight: 700; font-size: 1.125rem; margin-bottom: 0.25rem; }
.award-card .subtitle { font-size: 0.875rem; opacity: 0.7; margin-bottom: 0.5rem; }
.award-card .year { font-size: 0.75rem; font-weight: 600; color: hsl(var(--primary)); }

/* ── Testimonials ── */
.testimonials-section { }
.testimonial-card {
  background: hsl(var(--card)); border-radius: 1.5rem;
  padding: 2rem; text-align: center;
  max-width: 42rem; margin: 0 auto;
  transition: all 0.5s;
}
@media (min-width: 768px) { .testimonial-card { padding: 3rem; } }
.testimonial-avatar {
  width: 4rem; height: 4rem; border-radius: 9999px;
  background: hsla(225,91%,60%,0.1); margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  color: hsl(var(--primary)); font-weight: 700; font-size: 1.25rem;
}
.testimonial-name { font-weight: 700; font-size: 1.125rem; color: hsl(var(--foreground)); }
.testimonial-company { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }
.testimonial-stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 1.5rem; }
.testimonial-stars svg { fill: hsl(var(--warning)); color: hsl(var(--warning)); }
.testimonial-text { color: hsl(var(--muted-foreground)); line-height: 1.7; }
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.testimonial-dot {
  width: 0.75rem; height: 0.75rem; border-radius: 9999px;
  background: hsl(var(--border)); transition: all 0.3s; border: none;
}
.testimonial-dot.active { background: hsl(var(--primary)); width: 2rem; }

/* ── SubPage Hero ── */
.subpage-hero { padding-top: 8rem; padding-bottom: 5rem; }
.subpage-hero h1 {
  font-size: 2.25rem; font-weight: 700;
  color: hsl(var(--foreground)); margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .subpage-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .subpage-hero h1 { font-size: 3.75rem; } }
.subpage-hero p {
  font-size: 1.125rem; color: hsl(var(--muted-foreground));
  line-height: 1.7; margin-bottom: 2rem;
}

/* ── CTA Banner ── */
.cta-banner { background: hsl(var(--primary)); text-align: center; }
.cta-banner h2 {
  font-size: 1.875rem; font-weight: 700; color: #fff; margin-bottom: 1rem;
}
@media (min-width: 768px) { .cta-banner h2 { font-size: 2.25rem; } }
.cta-banner p {
  color: hsla(0,0%,100%,0.8); margin-bottom: 2rem;
  max-width: 32rem; margin-left: auto; margin-right: auto;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: hsl(var(--card)); color: hsl(var(--foreground));
  padding: 1rem 2rem; border-radius: 1rem;
  font-weight: 600; transition: opacity 0.2s;
}
.btn-cta:hover { opacity: 0.9; }

/* ── About Values ── */
.values-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background: hsl(var(--card)); border-radius: 1.5rem;
  padding: 2rem; text-align: center;
}
.value-card svg { margin: 0 auto 1rem; color: hsl(var(--primary)); }
.value-card h3 { font-weight: 700; font-size: 1.125rem; color: hsl(var(--foreground)); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* ── Services ── */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: hsl(var(--card)); border-radius: 18px;
  padding: 2rem; border: 1px solid hsl(var(--border));
  cursor: pointer; transition: all 0.35s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card.expanded {
  background: linear-gradient(to bottom right, hsla(225,91%,60%,0.04), hsla(225,91%,60%,0.08));
  box-shadow: 0 12px 48px -8px hsla(225,91%,60%,0.22);
  border-color: hsla(225,91%,60%,0.3);
}
.service-card-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.service-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: hsl(var(--accent)); color: hsl(var(--accent-foreground));
  transition: all 0.35s;
}
.service-card.expanded .service-icon {
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
}
.service-chevron {
  color: hsl(var(--muted-foreground)); transition: transform 0.35s; margin-top: 0.25rem;
}
.service-card.expanded .service-chevron { transform: rotate(180deg); }
.service-card h3 { font-size: 1.125rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.5rem; }
.service-card.expanded h3 { font-weight: 800; }
.service-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.service-subs {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.35s;
  opacity: 0;
}
.service-card.expanded .service-subs { max-height: 800px; opacity: 1; }
.service-subs-inner {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid hsla(var(--border), 0.2);
}
.service-sub-item {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.625rem 0;
}
.service-sub-check {
  width: 1.25rem; height: 1.25rem; border-radius: 9999px;
  background: linear-gradient(to bottom right, hsl(var(--primary)), hsla(225,91%,60%,0.6));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-sub-check svg { width: 12px; height: 12px; color: #fff; }
.service-sub-item span { font-size: 0.875rem; color: hsl(var(--foreground)); }
.btn-consult {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem;
  background: linear-gradient(to right, hsl(var(--primary)), hsla(225,91%,60%,0.8));
  color: #fff; padding: 0.75rem 1.5rem; border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 600;
  transition: all 0.3s;
}
.btn-consult:hover { transform: translateY(-2px); box-shadow: 0 8px 24px -4px hsla(225,91%,60%,0.3); }

/* ── Team Section ── */
.team-section {
  position: relative; padding: 6rem 0; overflow: hidden;
}
.team-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, hsl(var(--accent)), hsl(var(--background)), hsl(var(--secondary)));
}
.team-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px; border-radius: 9999px;
  background: hsla(225,91%,60%,0.05); filter: blur(120px);
  pointer-events: none;
}
.team-header { text-align: center; max-width: 42rem; margin: 0 auto 1.5rem; }
.team-header h2 {
  font-size: 1.875rem; font-weight: 800;
  color: hsl(var(--foreground)); letter-spacing: -0.025em;
}
@media (min-width: 640px) { .team-header h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .team-header h2 { font-size: 3rem; } }
.team-header-line {
  margin: 1rem auto 0; height: 4px; width: 6rem; border-radius: 9999px;
  background: linear-gradient(to right, hsl(var(--primary)), hsla(225,91%,60%,0.6), hsl(var(--primary)));
  animation: pulse-line 2s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes pulse-line { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.team-header p {
  color: hsl(var(--muted-foreground)); margin-top: 1.25rem;
  font-size: 1rem; line-height: 1.7;
}
@media (min-width: 640px) { .team-header p { font-size: 1.125rem; } }

.team-stat-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem; margin-bottom: 4rem;
}
.team-stat-badge {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: 9999px;
  background: hsla(0,0%,100%,0.6); backdrop-filter: blur(12px);
  border: 1px solid hsla(var(--border), 0.6);
}
.team-stat-badge .val { color: hsl(var(--primary)); font-weight: 700; font-size: 0.875rem; }
.team-stat-badge .lbl { color: hsl(var(--muted-foreground)); font-size: 0.75rem; font-weight: 500; }

.team-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  max-width: 56rem; margin: 0 auto;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { gap: 2.5rem; } }
.team-card {
  border-radius: 1.5rem; overflow: hidden; cursor: pointer;
  background: hsla(0,0%,100%,0.5); backdrop-filter: blur(12px);
  border: 1px solid hsla(var(--border), 0.5);
  transition: all 0.3s; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -15px hsla(225,91%,60%,0.2);
}
.team-card-img { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.team-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; transition: transform 0.5s;
}
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsla(244,75%,16%,0.6), transparent, transparent);
}
.team-card-badge {
  position: absolute; top: 1rem; right: 1rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: hsla(225,91%,60%,0.9); color: #fff;
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.team-card-info { padding: 1.5rem; }
.team-card-info h3 { font-weight: 700; font-size: 1.125rem; color: hsl(var(--foreground)); }
.team-card-info .role { color: hsla(225,91%,60%,0.8); font-weight: 500; font-size: 0.875rem; margin-top: 0.125rem; }
.team-card-info .desc {
  color: hsl(var(--muted-foreground)); font-size: 0.875rem;
  margin-top: 0.75rem; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.team-card-social {
  display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem;
}
.team-social-icon {
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: hsl(var(--secondary));
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.team-card:hover .team-social-icon { background: hsla(225,91%,60%,0.1); }
.team-social-icon svg { width: 14px; height: 14px; color: hsl(var(--muted-foreground)); transition: color 0.3s; }
.team-card:hover .team-social-icon svg { color: hsl(var(--primary)); }

/* Team Detail Panel */
.team-overlay {
  display: none; position: fixed; inset: 0; z-index: 50;
  background: hsla(244,75%,16%,0.4); backdrop-filter: blur(4px);
}
.team-overlay.open { display: block; }
.team-panel {
  position: fixed; top: 0; right: 0; z-index: 50;
  height: 100%; width: 100%; max-width: 420px;
  background: hsla(0,0%,100%,0.95); backdrop-filter: blur(20px);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  border-left: 1px solid hsla(var(--border), 0.4);
  overflow-y: auto; transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.team-panel.open { transform: translateX(0); }
.team-panel-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  padding: 0.5rem; border-radius: 9999px;
  background: hsl(var(--secondary)); z-index: 10;
  transition: background 0.2s;
}
.team-panel-close:hover { background: hsl(var(--muted)); }
.team-panel-content {
  padding: 2.5rem; padding-top: 4rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.team-panel-avatar {
  width: 7rem; height: 7rem; border-radius: 9999px;
  object-fit: cover; border: 4px solid hsla(225,91%,60%,0.2);
  margin-bottom: 1.25rem;
}
.team-panel-name { font-size: 1.25rem; font-weight: 700; color: hsl(var(--foreground)); }
.team-panel-role { color: hsl(var(--primary)); font-weight: 500; font-size: 0.875rem; margin-top: 0.25rem; }
.team-panel-bio {
  color: hsl(var(--muted-foreground)); font-size: 0.875rem;
  line-height: 1.7; margin-top: 1.5rem; text-align: left;
}
.team-panel-skills { width: 100%; margin-top: 2rem; text-align: left; }
.team-panel-skills h4 {
  font-weight: 600; font-size: 0.875rem;
  color: hsl(var(--foreground)); margin-bottom: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.team-panel-skill {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.875rem; color: hsl(var(--muted-foreground));
  margin-bottom: 0.625rem;
}
.team-panel-skill-dot {
  flex-shrink: 0; width: 1.25rem; height: 1.25rem; border-radius: 9999px;
  background: hsla(225,91%,60%,0.1);
  display: flex; align-items: center; justify-content: center;
}
.team-panel-skill-dot svg { width: 12px; height: 12px; color: hsl(var(--primary)); }
.team-panel-actions { width: 100%; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.btn-linkedin {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.75rem;
  background: hsl(var(--primary)); color: #fff;
  border-radius: 0.75rem; font-weight: 600; font-size: 0.875rem;
  transition: background 0.2s;
}
.btn-linkedin:hover { background: hsla(225,91%,60%,0.9); }
.btn-email {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.75rem;
  border: 1px solid hsl(var(--border)); border-radius: 0.75rem;
  color: hsl(var(--foreground)); font-weight: 500; font-size: 0.875rem;
  transition: background 0.2s;
}
.btn-email:hover { background: hsl(var(--secondary)); }

/* ── Agency Ads ── */
.agency-section {
  padding: 5rem 0; position: relative; overflow: hidden;
}
@media (min-width: 768px) { .agency-section { padding: 7rem 0; } }
.agency-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, hsla(217,91%,95%,0.8), #fff, hsla(217,91%,95%,0.4));
}
.agency-header { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.agency-header h2 {
  font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem;
  background: linear-gradient(to right, hsl(221,83%,40%), hsl(217,91%,54%), hsl(187,79%,52%));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) { .agency-header h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .agency-header h2 { font-size: 3rem; } }
.agency-header p { color: hsl(var(--muted-foreground)); font-size: 1.125rem; }
@media (min-width: 768px) { .agency-header p { font-size: 1.25rem; } }
.agency-form-card {
  max-width: 36rem; margin: 0 auto;
  border-radius: 1rem; background: hsla(0,0%,100%,0.8);
  backdrop-filter: blur(16px); border: 1px solid hsla(217,91%,90%,0.6);
  box-shadow: 0 20px 40px -10px hsla(217,91%,90%,0.3);
  padding: 2rem;
}
@media (min-width: 768px) { .agency-form-card { padding: 2.5rem; } }
.agency-form-card .form-group { margin-bottom: 1.25rem; }
.agency-form-card label {
  display: block; font-size: 0.875rem; font-weight: 500;
  color: hsl(var(--foreground)); margin-bottom: 0.375rem;
}
.agency-form-card label .req { color: hsl(0,84%,60%); }
.agency-form-card input,
.agency-form-card select {
  width: 100%; height: 2.75rem; padding: 0 0.875rem;
  border-radius: 0.75rem; border: 1px solid hsla(217,91%,85%,0.6);
  background: hsl(var(--background)); font-size: 0.875rem;
  color: hsl(var(--foreground)); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.agency-form-card input:focus,
.agency-form-card select:focus {
  border-color: hsl(217,91%,60%);
  box-shadow: 0 0 0 3px hsla(217,91%,60%,0.15);
}
.agency-form-card input::placeholder { color: hsl(var(--muted-foreground)); }
.agency-buttons {
  display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.75rem;
}
@media (min-width: 640px) { .agency-buttons { flex-direction: row; } }
.btn-agency-submit {
  flex: 1; height: 3rem; border-radius: 0.75rem;
  background: linear-gradient(to right, hsl(221,83%,40%), hsl(217,91%,54%));
  color: #fff; font-weight: 600; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.2s;
}
.btn-agency-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px hsla(217,91%,54%,0.3);
}
.btn-agency-register {
  flex: 1; height: 3rem; border-radius: 0.75rem;
  border: 1px solid hsl(217,80%,70%); color: hsl(217,91%,54%);
  font-weight: 600; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.2s;
}
.btn-agency-register:hover {
  background: hsla(217,91%,95%,1); transform: translateY(-2px);
}
.agency-trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem; margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid hsla(217,91%,90%,0.6);
}
.agency-trust span {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; color: hsl(var(--muted-foreground));
}
.agency-trust svg { width: 1rem; height: 1rem; color: hsl(152,60%,45%); flex-shrink: 0; }

/* ── Contact Page ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 3rem; height: 3rem; border-radius: 1rem;
  background: hsl(var(--accent)); color: hsl(var(--accent-foreground));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item h4 { font-weight: 600; color: hsl(var(--foreground)); }
.contact-item a, .contact-item p {
  font-size: 0.875rem; color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.contact-item a:hover { color: hsl(var(--primary)); text-decoration: underline; }
.contact-form {
  background: hsl(var(--card)); border-radius: 1.5rem;
  padding: 2rem;
}
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label {
  display: block; font-size: 0.875rem; font-weight: 500;
  color: hsl(var(--foreground)); margin-bottom: 0.5rem;
}
.contact-form input, .contact-form textarea {
  width: 100%; background: hsl(var(--secondary)); border-radius: 0.75rem;
  padding: 0.75rem 1rem; font-size: 0.875rem;
  border: none; outline: none; color: hsl(var(--foreground));
  resize: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: hsl(var(--muted-foreground));
}
.btn-submit {
  width: 100%; background: hsl(var(--primary)); color: #fff;
  padding: 1rem; border-radius: 1rem; font-weight: 600;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.9; }
.contact-success {
  text-align: center; background: hsl(var(--card));
  border-radius: 1.5rem; padding: 3rem;
}
.contact-success h3 { font-size: 1.5rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.5rem; }
.contact-success p { color: hsl(var(--muted-foreground)); }

/* ── Adstika AI Page ── */
.ai-section {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8rem 1rem; position: relative; overflow: hidden;
  background: hsl(var(--navy));
}
.ai-glow {
  position: absolute; top: 33%; left: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 500px; border-radius: 9999px;
  background: hsla(225,91%,60%,0.08); filter: blur(120px);
}
.ai-content { position: relative; z-index: 10; width: 100%; max-width: 32rem; margin: 0 auto; }
.ai-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem; border-radius: 9999px;
  border: 1px solid hsla(225,91%,60%,0.3); background: hsla(225,91%,60%,0.1);
  color: hsl(var(--primary)); font-size: 0.875rem; font-weight: 600;
  box-shadow: 0 4px 12px hsla(225,91%,60%,0.1);
  margin-bottom: 2rem;
}
.ai-card {
  border-radius: 1.5rem; border: 1px solid hsl(var(--border));
  background: hsl(var(--card)); padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
@media (min-width: 768px) { .ai-card { padding: 2rem; } }
.ai-card-title { text-align: center; margin-bottom: 1.5rem; }
.ai-card-title h2 { font-size: 1.25rem; font-weight: 700; color: hsl(var(--foreground)); }
@media (min-width: 768px) { .ai-card-title h2 { font-size: 1.5rem; } }
.ai-card-title p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.ai-form { display: flex; flex-direction: column; gap: 1.25rem; }
.ai-form-group label {
  display: block; font-size: 0.75rem; font-weight: 500;
  color: hsl(var(--muted-foreground)); margin-bottom: 0.375rem;
}
.ai-input {
  width: 100%; height: 2.75rem; padding: 0 1rem;
  border-radius: 1rem; border: 1px solid hsl(var(--border));
  background: hsla(var(--secondary), 0.5); font-size: 0.875rem;
  color: hsl(var(--foreground)); outline: none;
}
.ai-input:focus { border-color: hsl(var(--primary)); box-shadow: 0 0 0 3px hsla(225,91%,60%,0.15); }
.ai-select-wrapper { position: relative; }
.ai-select {
  width: 100%; height: 2.75rem; padding: 0 1rem;
  border-radius: 1rem; border: 1px solid hsl(var(--border));
  background: hsl(var(--card)); font-size: 0.875rem;
  color: hsl(var(--foreground)); cursor: pointer; appearance: none;
  outline: none;
}
.ai-select:focus { border-color: hsl(var(--primary)); }
.ai-select-wrapper::after {
  content: '▾'; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: hsl(var(--muted-foreground)); pointer-events: none; font-size: 0.875rem;
}
.ai-slider-group { display: flex; flex-direction: column; gap: 0.75rem; }
.ai-slider-header { display: flex; align-items: center; justify-content: space-between; }
.ai-slider-value { font-size: 0.875rem; font-weight: 600; color: hsl(var(--primary)); }
.ai-slider {
  width: 100%; height: 6px; -webkit-appearance: none; appearance: none;
  background: hsl(var(--secondary)); border-radius: 9999px; outline: none;
}
.ai-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: hsl(var(--primary)); border: 2px solid hsl(var(--primary));
  cursor: pointer;
}
.ai-slider-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.ai-textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 1rem;
  border: 1px solid hsl(var(--border)); background: hsla(var(--secondary), 0.5);
  font-size: 0.875rem; color: hsl(var(--foreground));
  min-height: 100px; resize: none; outline: none;
}
.ai-textarea:focus { border-color: hsl(var(--primary)); }
.ai-char-count { font-size: 0.75rem; color: hsl(var(--muted-foreground)); text-align: right; }
.btn-ai-generate {
  width: 100%; padding: 0.875rem; border-radius: 1rem;
  font-weight: 600; font-size: 0.875rem; color: #fff;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(200,80%,55%));
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.3s;
}
.btn-ai-generate:hover {
  box-shadow: 0 8px 24px -4px hsla(225,91%,60%,0.25);
}

/* AI Dashboard Results */
.ai-dashboard { width: 100%; max-width: 32rem; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 1.25rem; }
.ai-dash-card {
  border-radius: 1.5rem; border: 1px solid hsl(var(--border));
  background: hsl(var(--card)); padding: 1.25rem;
}
@media (min-width: 768px) { .ai-dash-card { padding: 1.5rem; } }
.ai-dash-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.ai-dash-icon {
  padding: 0.5rem; border-radius: 0.75rem;
  background: hsla(225,91%,60%,0.1);
}
.ai-dash-icon svg { width: 18px; height: 18px; color: hsl(var(--primary)); }
.ai-dash-header h3 { font-weight: 700; color: hsl(var(--foreground)); }

.ai-score { text-align: center; padding: 1rem 0; }
.ai-score-value { font-size: 3.75rem; font-weight: 800; color: hsl(var(--primary)); }
.ai-score-max { font-size: 1.5rem; font-weight: 600; color: hsl(var(--muted-foreground)); }
.ai-score-bar {
  margin-top: 1rem; width: 100%; height: 8px; border-radius: 9999px;
  background: hsl(var(--secondary)); overflow: hidden;
}
.ai-score-fill {
  height: 100%; border-radius: 9999px;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(200,80%,55%));
  transition: width 1s ease-out;
}
.ai-insight-item {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.625rem;
}
.ai-insight-dot {
  margin-top: 0.375rem; width: 6px; height: 6px; border-radius: 9999px; flex-shrink: 0;
}
.ai-insight-dot.primary { background: hsl(var(--primary)); }
.ai-insight-dot.destructive { background: hsl(var(--destructive)); }
.ai-insight-dot.success { background: hsl(152,60%,45%); }
.ai-alloc-legend { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.5rem; }
.ai-alloc-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.ai-alloc-swatch { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }
.ai-alloc-bar-group { display: flex; flex-direction: column; gap: 0.5rem; }
.ai-alloc-bar-row { display: flex; align-items: center; gap: 0.75rem; }
.ai-alloc-bar-label { font-size: 0.75rem; color: hsl(var(--muted-foreground)); min-width: 80px; }
.ai-alloc-bar-track { flex: 1; height: 10px; border-radius: 9999px; background: hsl(var(--secondary)); overflow: hidden; }
.ai-alloc-bar-fill { height: 100%; border-radius: 9999px; transition: width 0.8s ease; }
.ai-alloc-bar-pct { font-size: 0.75rem; font-weight: 600; color: hsl(var(--foreground)); min-width: 30px; }

.ai-timeline-item { display: flex; gap: 0.75rem; }
.ai-timeline-dot-col { display: flex; flex-direction: column; align-items: center; }
.ai-timeline-dot {
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: hsla(225,91%,60%,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: hsl(var(--primary));
}
.ai-timeline-line { width: 1px; flex: 1; background: hsl(var(--border)); margin-top: 0.25rem; }
.ai-timeline-content { padding-bottom: 0.5rem; }
.ai-timeline-phase { font-size: 0.75rem; font-weight: 600; color: hsl(var(--primary)); }
.ai-timeline-title { font-size: 0.875rem; font-weight: 600; color: hsl(var(--foreground)); }
.ai-timeline-desc { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 0.125rem; }

.ai-unlock-card {
  border-color: hsla(225,91%,60%,0.2); background: hsl(244,75%,6%);
}
.ai-unlock-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 1rem 0; gap: 1rem;
}
.ai-unlock-icon {
  padding: 0.75rem; border-radius: 1rem;
  background: hsla(225,91%,60%,0.1); border: 1px solid hsla(225,91%,60%,0.2);
}
.ai-unlock-icon svg { width: 24px; height: 24px; color: hsl(var(--primary)); }
.ai-unlock-inner h3 { font-size: 1.125rem; font-weight: 700; color: #fff; }
.ai-unlock-inner p { font-size: 0.875rem; color: hsla(0,0%,100%,0.8); max-width: 20rem; }
.btn-unlock {
  width: 100%; max-width: 20rem; padding: 0.875rem; border-radius: 1rem;
  font-weight: 600; font-size: 0.875rem; color: #fff;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(200,80%,55%));
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.3s;
}
.btn-unlock:hover { box-shadow: 0 8px 24px -4px hsla(225,91%,60%,0.25); }

/* Weak/Opps grid */
.wo-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .wo-grid { grid-template-columns: 1fr 1fr; } }
.wo-section-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.wo-section-icon {
  padding: 0.375rem; border-radius: 0.5rem;
}
.wo-section-icon.weak { background: hsla(0,84%,60%,0.1); }
.wo-section-icon.opp { background: hsla(152,60%,45%,0.1); }
.wo-section-icon svg { width: 14px; height: 14px; }
.wo-section-icon.weak svg { color: hsl(var(--destructive)); }
.wo-section-icon.opp svg { color: hsl(152,60%,45%); }
.wo-section-header h4 { font-weight: 600; font-size: 0.875rem; color: hsl(var(--foreground)); }

/* ===== ADSTIKA_FIX_START ===== */
/* Fix: Complete footer responsive overhaul — single-column mobile, proper spacing, no overflow */
/* ===== ADSTIKA_FIX_END ===== */

/* ── Footer ── */
.footer {
  background: hsl(var(--navy)); color: hsl(var(--navy-foreground));
  overflow-x: hidden;
}
.footer-grid {
  margin: 2rem;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding: 3rem 0;
}
/* ===== ADSTIKA_FIX_START ===== */
/* Fix: Center-align footer columns on mobile, stack single column */
@media (max-width: 767px) {
  .footer-grid { text-align: center; gap: 2rem; padding: 2.5rem 0; }
  .footer-desc { margin-left: auto; margin-right: auto; }
  .footer-location { justify-content: center; }
  .footer h4 { margin-bottom: 1rem; }
  .footer-links { align-items: center; }
  .footer-contact-item { justify-content: center; flex-wrap: wrap; }
  .footer-subscribe { flex-direction: column; }
  .footer-subscribe input { width: 100%; }
  .footer-subscribe button { width: 100%; }
  .footer-subscribe-success { justify-content: center; flex-wrap: wrap; text-align: center; }
}
/* ===== ADSTIKA_FIX_END ===== */
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); padding: 4rem 0; } }
.footer-brand { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.footer-desc { font-size: 0.875rem; opacity: 0.7; line-height: 1.7; max-width: 20rem; }
.footer-location { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; opacity: 0.7; margin-top: 1rem; }
.footer h4 { font-weight: 700; font-size: 1.125rem; margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; opacity: 0.7; transition: all 0.2s; }
.footer-links a:hover { opacity: 1; color: hsl(var(--primary)); }
.footer-contact-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; margin-bottom: 0.75rem;
}
.footer-contact-item svg { opacity: 0.7; flex-shrink: 0; width: 14px; height: 14px; }
.footer-contact-item .label { font-weight: 500; opacity: 0.9; white-space: nowrap; }
/* ===== ADSTIKA_FIX_START ===== */
/* Fix: Prevent long email addresses from overflowing on mobile */
.footer-contact-item a {
  opacity: 0.7; transition: all 0.2s;
  word-break: break-all; overflow-wrap: break-word;
}
/* ===== ADSTIKA_FIX_END ===== */
.footer-contact-item a:hover { opacity: 1; color: hsl(var(--primary)); text-decoration: underline; }
.footer-subscribe { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.footer-subscribe input {
  flex: 1; min-width: 0; background: hsl(244,60%,22%); border-radius: 0.75rem;
  padding: 0.75rem 1rem; font-size: 0.875rem;
  border: none; outline: none; color: hsl(var(--navy-foreground));
}
.footer-subscribe input::placeholder { opacity: 0.5; color: hsl(var(--navy-foreground)); }
.footer-subscribe button {
  background: hsl(var(--primary)); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 600; transition: opacity 0.2s;
  min-width: 100px; white-space: nowrap;
}
.footer-subscribe button:hover { opacity: 0.9; }
.footer-subscribe-success {
  display: flex; align-items: center; gap: 0.75rem;
  background: hsla(225,91%,60%,0.15); border-radius: 0.75rem;
  padding: 0.75rem 1rem; margin-top: 1.5rem;
}
.footer-subscribe-success .check-circle {
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: hsl(var(--primary)); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-subscribe-success .check-circle svg { width: 16px; height: 16px; color: #fff; }
.footer-subscribe-success span { font-size: 0.875rem; font-weight: 500; color: hsl(var(--primary)); }
.footer-subscribe-error { color: hsl(0,70%,60%); font-size: 0.75rem; margin-top: 0.5rem; }
.footer-bottom {
  border-top: 1px solid hsl(244,40%,22%);
  padding: 1.5rem 0;
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; text-align: left; } }
.footer-bottom p { font-size: 0.75rem; opacity: 0.5; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.75rem; opacity: 0.5; transition: opacity 0.2s; }
.footer-bottom-links a:hover { opacity: 1; }

/* ===== ADSTIKA_FIX_START ===== */
/* Fix: Consultation popup responsive — full-width on mobile, scrollable */
@media (max-width: 480px) {
  #consultation-popup > div:nth-child(2) {
    max-width: 100% !important;
    margin: 0.5rem !important;
    border-radius: 16px !important;
    max-height: 95vh;
    overflow-y: auto;
  }
  #consultation-popup form {
    padding: 0.5rem 1rem 1rem !important;
  }
  #currency-toggle {
    width: 100% !important;
  }
  #currency-toggle .currency-btn {
    flex: 1;
    text-align: center;
  }
}
/* ===== ADSTIKA_FIX_END ===== */

/* ===== ADSTIKA_FIX_START ===== */
/* Fix: Stats bar responsive — wrap properly on mobile */
@media (max-width: 640px) {
  .stats-bar-inner {
    
    justify-content: center;
    gap: 1.5rem;
  }
  .stat-item {
    min-width: 40%;
  }
}
/* ===== ADSTIKA_FIX_END ===== */

/* ===== ADSTIKA_FIX_START ===== */
/* Fix: Prevent any horizontal overflow globally */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
/* ===== ADSTIKA_FIX_END ===== */

/* ── Scroll Animate ── */
.animate-on-scroll {
  opacity: 0; transform: translateY(2rem);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1; transform: translateY(0);
}

/* ── SVG Icon Utility ── */
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 22px; height: 22px; }
.icon-lg { width: 28px; height: 28px; }
.icon-xl { width: 36px; height: 36px; }

/* ── Influencer Page ── */
/* Uses subpage-hero + cta-banner only */

/* ── Utility ── */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-16 { margin-bottom: 4rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-20 { margin-top: 5rem; }
.gap-10 { gap: 2.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.hidden { display: none; }
