/* ═══════════════════════════════════════════════════════════════════════════
   SINKUR — Global Stylesheet v2
   Automate · Build · Grow
   Premium SaaS + Services + Learning Platform
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ─── SKIP LINK (a11y) ──────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent-blue); color: #fff;
  padding: 12px 24px; border-radius: 0 0 8px 8px;
  font-weight: 600; font-size: 14px; z-index: 10000;
  transition: top 0.2s ease; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ─── CSS VARIABLES ─────────────────────────────────────────────────────────── */
:root {
  --bg-primary:    #0b1120;
  --bg-card:       #111827;
  --bg-card2:      #151d2e;
  --bg-card-hover: #1e293b;
  --accent-blue:   #4f8ff7;
  --accent-cyan:   #22c9db;
  --accent-green:  #2dd4a0;
  --accent-orange: #f59e0b;
  --accent-purple: #a78bfa;
  --accent-red:    #f87171;
  --text-primary:  #e8ecf2;
  --text-muted:    #94a3b8;
  --text-dim:      #64748b;
  --border:        rgba(255,255,255,0.10);
  --border-light:  rgba(255,255,255,0.14);
  --gradient-main: linear-gradient(135deg, #4f8ff7 0%, #22c9db 100%);
  --gradient-hero: linear-gradient(135deg, #0b1120 0%, #101828 50%, #0b1120 100%);
  --gradient-green: linear-gradient(135deg, #2dd4a0 0%, #22c9db 100%);
  --gradient-purple: linear-gradient(135deg, #a78bfa 0%, #4f8ff7 100%);
  --gradient-orange: linear-gradient(135deg, #f59e0b 0%, #f87171 100%);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.6);
  --radius:        14px;
  --radius-sm:     8px;
  --radius-pill:   50px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ─── LAYOUT ────────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 90px 0; scroll-margin-top: 120px; }
[id] { scroll-margin-top: 120px; }

/* ─── TYPOGRAPHY HELPERS ────────────────────────────────────────────────────── */
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent-cyan); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-muted);
  max-width: 600px; line-height: 1.7;
}
.highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-green {
  background: var(--gradient-green);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: none; transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

.btn-primary {
  background: var(--gradient-main); color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(59,130,246,0.5); }

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

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

.btn-orange {
  background: var(--gradient-orange); color: #fff;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}
.btn-orange:hover { transform: translateY(-2px); }

.btn-green {
  background: var(--gradient-green); color: #fff;
  box-shadow: 0 4px 20px rgba(16,185,129,0.4);
}
.btn-green:hover { transform: translateY(-2px); }

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

/* ─── NAVIGATION ─────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 16px 0;
  transition: all 0.3s ease; border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(11,17,32,0.97); backdrop-filter: blur(16px);
  border-bottom-color: var(--border); padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo-full {
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--gradient-main); border-radius: 2px;
}
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%); min-width: 200px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 0;
  box-shadow: var(--shadow-lg); list-style: none;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(8px);
  z-index: 1001;
}
.nav-dropdown-menu.open {
  display: block; opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 14px; font-weight: 500;
  color: var(--text-muted); transition: all 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  color: var(--text-primary); background: rgba(255,255,255,0.05);
}
.nav-dropdown-menu li a i { width: 16px; text-align: center; font-size: 13px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(10,15,30,0.98); z-index: 1100;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 20px; font-weight: 600; color: var(--text-primary); }
.mobile-menu-close { position: absolute; top: 24px; right: 24px; font-size: 28px; cursor: pointer; color: var(--text-muted); background: none; border: none; }

/* ─── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; background: var(--gradient-hero); }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(59,130,246,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6,182,212,0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(139,92,246,0.1) 0%, transparent 40%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; }
.hero-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.3);
  border-radius: var(--radius-pill); padding: 6px 16px;
  font-size: 13px; font-weight: 500; margin-bottom: 20px;
}
.hero-badge i { color: var(--accent-blue); font-size: 8px; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: clamp(38px, 6vw, 68px); font-weight: 900;
  line-height: 1.08; margin-bottom: 20px; letter-spacing: -1px;
}
.hero-three-words { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.word-auto { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.word-build { background: var(--gradient-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.word-grow { background: linear-gradient(135deg, #f97316, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.hero-sub {
  font-size: 17px; line-height: 1.7; color: var(--text-muted);
  max-width: 520px; margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 800; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* Hero visual — code card */
.hero-visual { position: relative; }
.code-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; font-family: 'Courier New', monospace;
  font-size: 13px; line-height: 1.8; box-shadow: var(--shadow-lg);
}
.code-card-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }
.dot-g { background: #10b981; }
.code-file { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-dim); margin-left: 8px; }

.c-comment { color: #4b5563; }
.c-keyword { color: #c084fc; }
.c-type    { color: #38bdf8; }
.c-fn      { color: #fbbf24; }
.c-var     { color: #f1f5f9; }
.c-string  { color: #34d399; }

.floating-badge {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 8px 16px;
  font-size: 13px; font-weight: 600; box-shadow: var(--shadow-card);
  animation: float 4s ease-in-out infinite;
}
.badge1 { top: -20px; right: -20px; animation-delay: 0s; }
.badge2 { bottom: -10px; left: -10px; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── CARDS ──────────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-6px); border-color: var(--border-light);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.card-icon-blue   { background: rgba(59,130,246,0.15); color: var(--accent-blue); }
.card-icon-cyan   { background: rgba(6,182,212,0.15); color: var(--accent-cyan); }
.card-icon-green  { background: rgba(16,185,129,0.15); color: var(--accent-green); }
.card-icon-orange { background: rgba(249,115,22,0.15); color: var(--accent-orange); }
.card-icon-purple { background: rgba(139,92,246,0.15); color: var(--accent-purple); }

.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ─── GRID LAYOUTS ──────────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── TAGS & BADGES ─────────────────────────────────────────────────────────── */
.tag {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
}
.tag-blue   { background: rgba(59,130,246,0.15); color: var(--accent-blue); }
.tag-cyan   { background: rgba(6,182,212,0.15); color: var(--accent-cyan); }
.tag-green  { background: rgba(16,185,129,0.15); color: var(--accent-green); }
.tag-orange { background: rgba(249,115,22,0.15); color: var(--accent-orange); }
.tag-purple { background: rgba(139,92,246,0.15); color: var(--accent-purple); }

.badge-pop {
  position: absolute; top: 16px; right: 16px; padding: 4px 12px;
  border-radius: var(--radius-pill); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}

/* ─── PILLARS SECTION ───────────────────────────────────────────────────────── */
.pillars { padding: 80px 0; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; text-align: center;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; transition: opacity 0.3s;
}
.pillar-card.services::before { background: var(--gradient-main); }
.pillar-card.products::before { background: var(--gradient-green); }
.pillar-card.learn::before    { background: var(--gradient-purple); }
.pillar-card:hover { transform: translateY(-6px); border-color: var(--border-light); }

.pillar-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
}
.pillar-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.pillar-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.pillar-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }

/* ─── SERVICES SECTION ──────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.3s ease; position: relative;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-light); box-shadow: var(--shadow-lg); }
.service-card .card-icon { margin-bottom: 16px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── PRODUCTS SECTION ──────────────────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s ease; position: relative;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--border-light); box-shadow: var(--shadow-lg); }
.product-card-img {
  height: 200px; background: var(--bg-card2); display: flex;
  align-items: center; justify-content: center; font-size: 48px;
  position: relative; overflow: hidden;
}
.product-card-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; background: linear-gradient(transparent, var(--bg-card));
}
.product-card-body { padding: 24px; }
.product-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.product-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

/* ─── CASE STUDIES / USE CASES ──────────────────────────────────────────────── */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.case-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.3s ease;
}
.case-card:hover { transform: translateY(-4px); border-color: var(--border-light); }
.case-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.case-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.case-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

/* ─── CTA BANNER ────────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(59,130,246,0.1), transparent 60%);
}
.cta-banner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-banner p { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ─── PROCESS STEPS ─────────────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.process-step {
  text-align: center; padding: 24px;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-main); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; margin: 0 auto 16px;
  font-family: 'Space Grotesk', sans-serif;
}
.process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── FEATURE LIST ──────────────────────────────────────────────────────────── */
.feature-list { list-style: none; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--accent-green); margin-top: 3px; flex-shrink: 0; }

/* ─── PRODUCT DETAIL PAGE ───────────────────────────────────────────────────── */
.product-hero {
  padding: 140px 0 80px; position: relative;
  background: var(--gradient-hero);
}
.product-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(59,130,246,0.12), transparent 50%);
}
.product-hero h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.product-hero .hero-sub { position: relative; z-index: 1; }
.product-hero .hero-actions { position: relative; z-index: 1; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-light); }
.feature-card i { font-size: 24px; margin-bottom: 12px; }
.feature-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Screen mockup */
.screen-mockup {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.screen-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: var(--bg-card2); border-bottom: 1px solid var(--border);
}
.screen-body { padding: 24px; min-height: 300px; }
.screen-body table { width: 100%; border-collapse: collapse; }
.screen-body th { text-align: left; padding: 10px 12px; font-size: 12px; color: var(--text-dim); border-bottom: 1px solid var(--border); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.screen-body td { padding: 10px 12px; font-size: 14px; border-bottom: 1px solid var(--border); }
.screen-body .status-badge { padding: 3px 10px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 600; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.benefit-item {
  display: flex; gap: 16px; padding: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.benefit-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.benefit-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.benefit-item p { font-size: 14px; color: var(--text-muted); }

/* ─── PRICING ───────────────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; text-align: center;
  position: relative; transition: all 0.3s ease;
}
.pricing-card.featured { border-color: var(--accent-blue); }
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); background: var(--gradient-main);
  color: #fff; padding: 4px 16px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price { font-size: 36px; font-weight: 900; font-family: 'Space Grotesk', sans-serif; margin: 16px 0; }
.pricing-card .price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing-card ul { list-style: none; margin: 20px 0; text-align: left; }
.pricing-card ul li { padding: 8px 0; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.pricing-card ul li i { color: var(--accent-green); }

/* ─── CONTACT / FORM ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 16px;
}
.contact-info-card i { font-size: 20px; color: var(--accent-blue); margin-top: 2px; }
.contact-info-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.contact-info-card p { font-size: 13px; color: var(--text-muted); }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 14px;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent-blue);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ─── LEARNING / STUDENT SECTION ────────────────────────────────────────────── */
.learning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.learning-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.learning-card:hover { transform: translateY(-6px); border-color: var(--border-light); }
.learning-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.learning-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.learning-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-dim); margin-bottom: 12px; }
.learning-meta span { display: flex; align-items: center; gap: 4px; }

/* ─── BLOG CARDS ────────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--border-light); }
.blog-card-img {
  height: 180px; background: var(--bg-card2);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--text-dim);
  background-size: cover; background-position: center;
}
.blog-card-body { padding: 20px; }
.blog-card-body .tag { margin-bottom: 10px; }
.blog-card-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.blog-card-body .read-more { font-size: 13px; font-weight: 600; color: var(--accent-blue); display: flex; align-items: center; gap: 6px; }

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 16px 0; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); display: flex;
  align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-muted); transition: all 0.2s;
}
.social-link:hover { border-color: var(--accent-blue); color: var(--accent-blue); }

.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); display: block; padding: 4px 0; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text-primary); }

.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.footer-contact-item i { color: var(--accent-blue); width: 16px; text-align: center; }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-dim); }

/* ─── Footer Newsletter Strip ─────────────────────────────────────────────── */
.footer-newsletter {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 0; margin-bottom: 20px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px 32px;
}
.footer-newsletter h4 {
  font-size: 16px; font-weight: 700; color: var(--text-primary); white-space: nowrap;
}
.footer-newsletter h4 i { color: var(--accent-cyan); margin-right: 8px; }
.footer-newsletter p { font-size: 13px; color: var(--text-muted); flex: 1; min-width: 200px; margin: 0; }
.footer-newsletter .newsletter-form { max-width: 380px; }
@media (max-width: 768px) {
  .footer-newsletter { flex-direction: column; align-items: stretch; text-align: center; }
  .footer-newsletter .newsletter-form { max-width: 100%; }
}

/* ─── Cookie Consent Banner ───────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1500;
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 16px 24px; display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
  font-size: 14px; color: var(--text-muted); margin: 0; max-width: 600px; line-height: 1.5;
}
.cookie-banner p a { color: var(--accent-cyan); text-decoration: underline; }
.cookie-banner .btn { white-space: nowrap; }
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; text-align: center; padding: 20px 16px; }
}

/* ─── WHATSAPP FLOAT ────────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
}
.whatsapp-btn {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
  font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.3s; animation: wa-pulse 3s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}
.whatsapp-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--bg-card); color: var(--text-primary);
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600; white-space: nowrap;
  border: 1px solid var(--border); opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ─── SCROLL TO TOP ─────────────────────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed; bottom: 90px; right: 28px; z-index: 998;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary); font-size: 14px; cursor: pointer;
  opacity: 0; pointer-events: none; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { border-color: var(--accent-blue); color: var(--accent-blue); }

/* ─── STICKY CTA BAR ───────────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: rgba(17,24,39,0.95); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border); padding: 12px 0;
  transform: translateY(100%); transition: transform 0.3s;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.sticky-cta-text { font-size: 14px; font-weight: 600; }
.sticky-cta-text span { color: var(--accent-cyan); }
.sticky-cta-actions { display: flex; gap: 12px; }

/* ─── PAGE HEADER (subpages) ────────────────────────────────────────────────── */
.page-header {
  padding: 140px 0 60px; position: relative;
  background: var(--gradient-hero);
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(59,130,246,0.08), transparent 50%);
}
.page-header h1 {
  font-size: clamp(32px, 5vw, 52px); font-weight: 900;
  margin-bottom: 12px; position: relative; z-index: 1;
}
.page-header p {
  font-size: 17px; color: var(--text-muted); max-width: 600px;
  line-height: 1.7; position: relative; z-index: 1;
}

/* ─── SERVICES DETAIL PAGE ──────────────────────────────────────────────────── */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail h3 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.service-detail p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

/* ─── USE-CASE CARDS ────────────────────────────────────────────────────────── */
.usecase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.usecase-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.3s ease;
}
.usecase-card:hover { transform: translateY(-4px); border-color: var(--border-light); }
.usecase-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.usecase-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }

/* ─── REVIEWS ───────────────────────────────────────────────────────────────── */
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: #fff;
}
.review-stars { color: #fbbf24; font-size: 14px; margin-bottom: 8px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── DIGITAL MARKETING SECTION ─────────────────────────────────────────────── */
.dm-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }

/* ─── COURSE CARDS (STUDENT PLATFORM) ───────────────────────────────────────── */
.course-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s ease;
}
.course-card:hover { transform: translateY(-6px); border-color: var(--border-light); }
.course-banner {
  height: 140px; display: flex; align-items: center; justify-content: center;
  font-size: 42px; position: relative;
}
.course-body { padding: 24px; }
.course-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.course-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.course-meta { display: flex; gap: 16px; margin-bottom: 14px; }
.course-meta span { font-size: 12px; color: var(--text-dim); display: flex; align-items: center; gap: 4px; }
.course-topics { list-style: none; margin-bottom: 16px; }
.course-topics li { padding: 4px 0; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.course-topics li::before { content: '✓'; color: var(--accent-green); font-weight: 700; }

/* ─── ANIMATIONS ────────────────────────────────────────────────────────────── */
.js-animate .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-animate .fade-up.visible { opacity: 1; transform: translateY(0); }
.js-animate .stagger-1 { transition-delay: 0.1s; }
.js-animate .stagger-2 { transition-delay: 0.2s; }
.js-animate .stagger-3 { transition-delay: 0.3s; }
.js-animate .stagger-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-two-col { grid-template-columns: 1fr; gap: 40px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .services-grid, .products-grid, .features-grid, .blog-grid, .learning-grid, .dm-services { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .case-grid, .usecase-grid, .benefits-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding: 100px 0 60px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 22px; }
  .services-grid, .products-grid, .features-grid, .blog-grid, .learning-grid, .dm-services { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-visual { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .page-header { padding: 120px 0 40px; }
  .sticky-cta-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .btn { padding: 12px 20px; font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONVERSION OPTIMIZATION — Trust, Exit Popup, Newsletter, Review Summary
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── TRUST SECTION ─────────────────────────────────────────────────────────── */
.trust-section {
  padding: 40px 0; background: rgba(59,130,246,0.03);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-heading {
  text-align: center; font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 28px;
}
.trust-badges {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;
}
.badge-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  min-width: 120px; transition: border-color 0.3s;
}
.badge-item:hover { border-color: var(--accent-blue); }
.badge-item span { font-size: 12px; font-weight: 600; line-height: 1.35; color: var(--text-muted); }

/* ─── EXIT-INTENT POPUP ─────────────────────────────────────────────────────── */
.exit-popup {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.exit-popup.active { opacity: 1; pointer-events: all; }
.exit-popup-inner {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px; max-width: 420px; width: 90%;
  position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: popup-bounce 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popup-bounce {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.exit-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 28px;
  color: var(--text-muted); cursor: pointer; transition: color 0.2s;
}
.exit-close:hover { color: var(--text-primary); }
.exit-popup-content { text-align: center; }
.exit-popup-content h3 {
  font-size: 24px; font-weight: 700; margin-bottom: 12px;
}
.exit-popup-content p {
  font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px;
}

/* ─── NEWSLETTER ────────────────────────────────────────────────────────────── */
.newsletter-section {
  padding: 80px 0; background: var(--bg-card2); border-top: 1px solid var(--border);
}
.newsletter-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.newsletter-card h3 {
  font-size: clamp(22px,3vw,32px); font-weight: 800; margin-bottom: 8px;
}
.newsletter-card .sub-desc {
  font-size: 15px; color: var(--text-muted); max-width: 480px; margin: 0 auto;
}
.newsletter-form {
  display: flex; gap: 12px; max-width: 480px; width: 100%;
}
.newsletter-form input[type="email"] {
  flex: 1; background: var(--bg-primary); border: 1px solid var(--border);
  border-radius: 50px; padding: 14px 20px;
  color: var(--text-primary); font-size: 14px; font-family: 'Inter', sans-serif;
}
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--accent-cyan); }
.newsletter-privacy { font-size: 12px; color: var(--text-dim); margin: 0; }
@media (max-width: 768px) {
  .newsletter-card { padding: 32px 20px; }
  .newsletter-form { flex-direction: column; }
}

/* ─── REVIEW SUMMARY WIDGET ─────────────────────────────────────────────────── */
.review-summary {
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 40px;
}
.score-num {
  font-size: 36px; font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.score-stars { font-size: 16px; color: #fbbf24; letter-spacing: 2px; }
.score-count { font-size: 13px; color: var(--text-dim); }

/* ─── COMPARISON / BEFORE-AFTER ─────────────────────────────────────────────── */
.comparison-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch;
}
.comparison-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
}
.comparison-header {
  font-size: 14px; font-weight: 700; padding-bottom: 16px;
  border-bottom: 2px solid var(--border); margin-bottom: 16px;
}
.before-header { color: #ef4444; }
.after-header { color: var(--accent-green); }
.comparison-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.comparison-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-muted); line-height: 1.5;
}
.comparison-list .icon { font-weight: 800; font-size: 12px; min-width: 18px; }
.comparison-list .icon.red { color: #ef4444; }
.comparison-list .icon.green { color: var(--accent-green); }
@media (max-width: 768px) {
  .comparison-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: 12px; }
  .badge-item { padding: 16px 20px; min-width: 100px; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SERVICE NAV STRIP — Sticky jump-links on services page
   ═══════════════════════════════════════════════════════════════════════════════ */
.service-nav-strip {
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  position: sticky; top: 64px; z-index: 900;
  padding: 12px 0;
}
.service-nav-inner {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.service-nav-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600;
  color: var(--text-muted); text-decoration: none;
  border: 1px solid var(--border); background: var(--bg-primary);
  transition: all 0.2s;
}
.service-nav-item:hover, .service-nav-item.active {
  color: var(--text-primary); border-color: var(--accent-blue);
  background: rgba(59,130,246,0.08);
}
.service-nav-item i { font-size: 12px; }

/* ═══════════════════════════════════════════════════════════════════════════════
   REVIEWS PAGE — Grid, Cards, Avatars, Stars, Google Badge
   ═══════════════════════════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px; margin-top: 32px;
}
.review-card {
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.2s, border-color 0.2s;
}
.review-card:hover { transform: translateY(-3px); border-color: var(--border-light); }
.stars { color: #fbbf24; font-size: 15px; letter-spacing: 1px; }
.reviewer {
  display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.avatar-photo {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.reviewer-info h5 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.reviewer-info span { font-size: 12px; color: var(--text-dim); }
.review-time { font-size: 11px; color: var(--text-dim); }
.review-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 2px 10px; border-radius: 50px; margin-top: 4px;
}
.tag-blue { background: rgba(59,130,246,0.15); color: var(--accent-blue); }
.tag-cyan { background: rgba(6,182,212,0.15); color: var(--accent-cyan); }
.tag-green { background: rgba(16,185,129,0.15); color: var(--accent-green); }
.tag-purple { background: rgba(139,92,246,0.15); color: var(--accent-purple); }
.tag-orange { background: rgba(249,115,22,0.15); color: var(--accent-orange); }
.google-card { position: relative; }
.google-badge {
  position: absolute; top: 16px; right: 16px;
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 0 1-2.2 3.32v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.1z'/%3E%3Cpath fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='%23FBBC05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.google-summary-bar {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap; margin: 24px 0 8px; padding: 20px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
}
.google-summary-bar .big-rating { font-size: 36px; font-weight: 800; }
.google-summary-bar .rating-detail { font-size: 14px; color: var(--text-muted); }

/* ─── Free Audit Trigger Button (floating) ──────────────────────────────────── */
.audit-trigger {
  position: fixed; bottom: 100px; right: 24px; z-index: 1500;
  background: var(--gradient-main); color: #fff;
  border: none; border-radius: 50px; padding: 12px 20px;
  font-size: 13px; font-weight: 700; font-family: 'Inter', sans-serif;
  cursor: pointer; box-shadow: 0 4px 20px rgba(59,130,246,0.4);
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.audit-trigger:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(59,130,246,0.5); }
.audit-trigger i { font-size: 14px; }

/* ─── Use-case code blocks hidden ───────────────────────────────────────────── */
.code-section { display: none; }
.code-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 18px; margin: 12px 0;
  color: var(--accent-cyan); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
}
.code-toggle:hover { border-color: var(--accent-cyan); }
.code-section.open { display: block; }

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .service-nav-inner { gap: 6px; }
  .service-nav-item { padding: 6px 14px; font-size: 12px; }
  .audit-trigger { padding: 10px 16px; font-size: 12px; bottom: 90px; right: 16px; }
}
