/* ============================================================
   SANJAY MEHER — style.css
   Dynamic CSS vars set by Supabase via main.js
   ============================================================ */

/* ---------- Default (Dark) Variables ---------- */
:root {
  --accent:       #8B5CF6;
  --accent-hover: #7C3AED;
  --bg-dark:      #0a0a0f;
  --bg-light:     #f5f5f7;
  --bg-primary:   #0a0a0f;
  --bg-secondary: #111118;
  --bg-card:      #16161f;
  --text-primary: #f0f0ff;
  --text-secondary:#9090b8;
  --border:       rgba(255,255,255,0.07);
  --success:      #10B981;
  --warning:      #F59E0B;
  --danger:       #EF4444;
  --radius:       14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.5);
  --transition:   0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Light Theme ---------- */
body.light-theme {
  --bg-primary:   #f5f5f7;
  --bg-secondary: #eeeef2;
  --bg-card:      #ffffff;
  --text-primary: #0f0f1a;
  --text-secondary:#52527a;
  --border:       rgba(0,0,0,0.08);
  --shadow:       0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.15);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   THEME TOGGLE
   ============================================================ */
.theme-toggle {
  position: fixed;
  top: 1.1rem;
  right: 1.25rem;
  z-index: 1100;
}

#themeToggleDesktop {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 42px; height: 42px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
  color: var(--text-primary);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

#themeToggleDesktop:hover {
  border-color: var(--accent);
  transform: scale(1.08);
}

@media (max-width: 768px) { .theme-toggle { display: none; } }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.main-header {
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0; z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

body.light-theme .main-header {
  background: rgba(245,245,247,0.92);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

.logo-text {
  font-family: 'Syne', 'DM Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.logo-text .accent { color: var(--accent); }

.desktop-nav ul {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.desktop-nav a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  transition: all var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--text-primary);
  background: var(--bg-card);
}

.desktop-nav a.active { color: var(--accent); }

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger-btn span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

.hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-7px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}

.mobile-menu.active { display: block; animation: slideDown 0.25s ease; }

.mobile-nav ul { list-style: none; }
.mobile-nav li { margin-bottom: 0.25rem; }
.mobile-nav a {
  display: block;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.6rem 0;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }

.mobile-theme-toggle {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

#themeToggleMobile {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all var(--transition);
}

#themeToggleMobile:hover { border-color: var(--accent); }

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger-btn { display: flex; }
}
@media (min-width: 769px) {
  .mobile-theme-toggle { display: none; }
}
/* ========== CONTACT PAGE SPECIFIC (MISSING) ========== */
.contact-grid-full {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-full {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-large {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
}

.contact-card-large i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.contact-form-full {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
}

.contact-form-full input,
.contact-form-full select,
.contact-form-full textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
}

.btn-whatsapp, .btn-email, .btn-call {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

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

/* ========== SERVICES PAGE SPECIFIC (MISSING) ========== */
.services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card-full {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card-full:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.service-card-full .service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card-full h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.service-price {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    font-weight: 600;
    color: var(--accent);
}

/* ========== HOW IT WORKS / STEPS (MISSING) ========== */
.how-it-works {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* ========== ABOUT PAGE SPECIFIC (MISSING) ========== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 1.8rem;
}

.tools-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

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

.skill-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-items span {
    background: var(--bg-primary);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--border);
}

/* ========== PRODUCTS PAGE (MISSING PIECES) ========== */
.products-section {
    padding: 60px 0;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

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

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-price-tag {
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
}

/* ========== FINAL CTA / COURSE / GUARANTEE (MISSING) ========== */
.guarantee-banner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.course-highlight {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    margin: 3rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.final-cta {
    text-align: center;
    margin: 2rem 0 4rem;
    padding: 2.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.cta-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    text-align: center;
}

/* ========== BRANDS SECTION (MISSING) ========== */
.brands-section { 
    margin: 3rem 0; 
    text-align: center; 
}

.brands-title { 
    color: var(--accent); 
    font-size: .78rem; 
    letter-spacing: 1.5px; 
    margin-bottom: 1.5rem; 
}

.brands-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2rem;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    width: 80px;
    transition: transform .25s;
}

.brand-item:hover { 
    transform: translateY(-3px); 
}

.brand-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: rgba(255,255,255,.05);
    padding: 6px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.07);
}

.brand-item span {
    font-size: .62rem;
    color: var(--text-secondary);
    text-align: center;
}

body.light-theme .brand-item img {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

/* ========== BADGE CLASS (MISSING) ========== */
.badge {
    display: inline-block;
    background: rgba(139,92,246,.15);
    color: var(--accent);
    padding: .5rem 1.1rem;
    border-radius: 50px;
    font-size: .82rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139,92,246,.3);
}

body.light-theme .badge {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

/* ========== RESPONSIVE FIXES FOR NEW CLASSES ========== */
@media (max-width: 768px) {
    .services-grid-full,
    .contact-grid-full,
    .about-grid,
    .course-highlight {
        grid-template-columns: 1fr;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,92,246,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: #fff !important;
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

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

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Syne', 'DM Sans', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.section-title .accent { color: var(--accent); }

.section-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.section-header { margin-bottom: 2.5rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 4.5rem 0 3rem;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: 'Syne', 'DM Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 1.75rem;
}

.pulse-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

.hero h1 {
  font-family: 'Syne', 'DM Sans', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 1.25rem;
}

.hero h1 .purple { color: var(--accent); }
.hero h1 s { color: var(--text-secondary); font-weight: 700; text-decoration-color: rgba(144,144,184,0.4); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}

.hero-sub strong { color: var(--text-primary); font-weight: 600; }

.hero-buttons {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}

.hero-stat {
  background: var(--bg-card);
  padding: 1.1rem 1rem;
  text-align: center;
}

.hero-stat .num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.hero-stat .lbl {
  font-size: 0.68rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

@media (max-width: 540px) {
  .hero-stats { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: rgba(139,92,246,0.05);
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  margin: 2rem 0;
}

.trust-bar p {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.trust-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-icons span {
  color: var(--text-secondary);
  font-size: 0.82rem;
}

/* ============================================================
   LOGO SCROLL STRIP
   ============================================================ */
.logos-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 1.75rem 0;
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.logo-scroll { overflow: hidden; position: relative; }

.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
  gap: 0;
}

.logo-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.75rem;
  opacity: 0.45;
  cursor: default;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.logo-chip:hover { opacity: 0.9; }

.logo-chip img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.logo-chip:hover img { filter: none; }

.logo-chip span {
  font-size: 0.62rem;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================================
   PROBLEMS STRIP (dark)
   ============================================================ */
.problems-section {
  background: var(--bg-secondary);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.problem-item {
  background: var(--bg-card);
  padding: 1.75rem 1.5rem;
  transition: background var(--transition);
}

.problem-item:hover { background: var(--bg-secondary); }

.prob-q {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.prob-a {
  font-size: 0.8rem;
  color: var(--success);
  line-height: 1.65;
  border-left: 2px solid var(--success);
  padding-left: 0.75rem;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-section { padding: 4.5rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.1rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(139,92,246,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.svc-icon {
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.problem-line {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 0.6rem;
  border-left: 2px solid rgba(139,92,246,0.3);
  padding-left: 0.6rem;
  line-height: 1.5;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.83rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.feature-list {
  list-style: none;
  margin: 0.5rem 0 1rem;
}

.feature-list li {
  color: var(--text-secondary);
  font-size: 0.8rem;
  padding: 0.22rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.feature-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.svc-price {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.85rem;
}

.quote-btn {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 8px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
}

.quote-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Full-width service cards (services page) */
.services-list { display: flex; flex-direction: column; gap: 1.25rem; }

.service-card-full {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  transition: border-color var(--transition);
}

.service-card-full:hover { border-color: rgba(139,92,246,0.35); }
.service-card-full.featured { border-color: rgba(139,92,246,0.3); }

.sc-tag {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sc-icon-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.sc-icon { font-size: 1.5rem; }
.sc-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.value-prop {
  background: rgba(139,92,246,0.06);
  border-left: 3px solid var(--success);
  border-radius: 0 8px 8px 0;
  padding: 0.8rem 1rem;
  margin-bottom: 0.85rem;
}

.value-prop .vp-label {
  font-size: 0.63rem;
  letter-spacing: 1.5px;
  color: var(--success);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.value-prop p {
  font-size: 0.85rem;
  color: var(--text-primary) !important;
  line-height: 1.6;
  margin: 0 !important;
}

.sc-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.sc-right h4 {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.sc-result {
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 0.79rem;
  color: #6ee7b7;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.sc-result span { color: #34d399; font-weight: 600; }

@media (max-width: 768px) {
  .service-card-full { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { padding: 4.5rem 0; background: var(--bg-secondary); }

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.step-card:hover {
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-3px);
}

.step-number {
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   GUARANTEE BANNER
   ============================================================ */
.guarantee-banner {
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.guarantee-banner h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.guarantee-banner p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 560px;
  margin: 0 auto 1.25rem;
  line-height: 1.7;
}

.g-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.g-item {
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  color: var(--accent);
}

.highlight { color: var(--accent); font-weight: 600; }

/* ============================================================
   COURSE HIGHLIGHT
   ============================================================ */
.course-highlight {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.course-highlight h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.course-highlight > div:last-child {
  background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.course-features {
  list-style: none;
  margin: 0.75rem 0;
}

.course-features li {
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.course-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .course-highlight { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: 4.5rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}

.about-content h2:first-of-type { margin-top: 0; }

.about-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1.25rem 0 0.6rem;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.about-content p strong { color: var(--text-primary); }

.highlight-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  border-left: 3px solid var(--accent);
  padding-left: 1.1rem;
  margin: 1.5rem 0;
  font-style: italic;
  line-height: 1.7;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.75rem 0;
}

.skill-tag {
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.76rem;
  transition: all var(--transition);
}

.skill-tag:hover {
  background: rgba(139,92,246,0.2);
  transform: translateY(-2px);
}

/* Stats cards */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-3px);
}

.stat-card .num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 0.3rem;
}

.stat-card .lbl {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Timeline */
.timeline { margin: 1.5rem 0; }

.timeline-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.1rem;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.timeline-item:hover {
  border-color: rgba(139,92,246,0.25);
  transform: translateX(4px);
}

.timeline-year {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
  min-width: 80px;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.timeline-content p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SKILLS SECTION (about page)
   ============================================================ */
.tools-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

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

.skill-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.skill-category h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.skill-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-items span {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.76rem;
  transition: all var(--transition);
}

.skill-items span:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-section { padding: 4rem 0; }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.search-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  color: var(--text-primary);
  font-size: 0.875rem;
  width: 260px;
  transition: border-color var(--transition);
  outline: none;
}

.search-input:focus { border-color: var(--accent); }
.search-input::placeholder { color: var(--text-secondary); }

.products-count {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.1rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  border-color: rgba(139,92,246,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-image-container {
  height: 190px;
  overflow: hidden;
}

.product-image-container img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card:hover .product-image-container img { transform: scale(1.04); }

.product-info { padding: 1.25rem; }

.product-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.product-info .problem-line { margin-bottom: 0.5rem; }

.product-info p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.product-price-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

@media (max-width: 540px) {
  .products-header { flex-direction: column; align-items: flex-start; }
  .search-input { width: 100%; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 4rem 0 5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--transition);
}

.contact-card:hover { border-color: rgba(139,92,246,0.3); }

.contact-card .icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.contact-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

.btn-email, .btn-call {
    background: var(--accent);
    color: white;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-whatsapp:hover { background: #1da851; transform: scale(1.02); }

.btn-email, .btn-call {
  display: inline-block;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color var(--transition);
}

.btn-email:hover, .btn-call:hover { color: var(--accent-hover); }

/* Contact form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.contact-form-wrap h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.form-row.single { grid-template-columns: 1fr; }

.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color var(--transition);
  outline: none;
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--accent);
}

.contact-form-wrap select option {
  background: var(--bg-secondary);
}

.contact-form-wrap textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.85rem;
  text-align: center;
}

/* FAQ */
.faq-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition);
}

.faq-item:hover { border-color: rgba(139,92,246,0.2); }

.faq-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.faq-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 4.5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.75px;
  margin-bottom: 0.85rem;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* about teaser */
.about-teaser {
  text-align: center;
  margin: 3.5rem 0;
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.about-teaser h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.about-teaser p {
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 1.25rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.about-teaser a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
}

.about-teaser a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  background: #25D366;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  z-index: 999;
  transition: transform var(--transition);
}

.whatsapp-float:hover { transform: scale(1.12); }

/* ============================================================
   NOTIFICATION
   ============================================================ */
.site-notification {
  position: fixed;
  bottom: 5.5rem; right: 1.25rem;
  background: var(--success);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  max-width: 280px;
  box-shadow: var(--shadow);
}

.site-notification.error { background: var(--danger); }
.site-notification.show { opacity: 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes slideDown {
  from { opacity:0; transform:translateY(-10px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
  .hero h1 { letter-spacing: -1px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
