/* ==========================================================================
   SONDIGIT PRIVATE LIMITED — Modern Corporate Design System
   CIN: U73100MP2026PTC085425 | Hostinger Production Ready CSS
   Color System: Dark Navy (#0A0E17), Deep Surface (#0F172A), Indigo (#6C5CE7),
                 AI Mint (#00D9A3), White (#FFFFFF), Light BG (#F4F5FA), Dark Text (#111827)
   ========================================================================== */

/* --- 1. CSS Custom Properties / Design Tokens --- */
:root {
  /* Dark Theme Palette (Default) */
  --bg-primary: #0a0e17;
  --bg-secondary: #0f172a;
  --bg-tertiary: #162036;
  --bg-card: rgba(15, 23, 42, 0.78);
  --bg-card-hover: rgba(22, 32, 54, 0.9);
  --bg-glass: rgba(15, 23, 42, 0.65);
  --border-color: rgba(255, 255, 255, 0.09);
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-focus: #6c5ce7;

  /* Typography Colors */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #6b7280;
  --text-inverse: #0a0e17;

  /* Official SONDIGIT Brand Tokens */
  --brand-orange: #f15a24;
  --brand-orange-hover: #d94917;
  --brand-orange-light: #ff753a;
  --brand-navy: #0b1b3d;
  --brand-navy-light: #162a56;
  --brand-navy-card: #0e1e40;

  /* Brand Accents & Gradients */
  --accent-orange: #f15a24;
  --accent-indigo: #6c5ce7;
  --accent-mint: #00d9a3;
  --accent-cyan: #00c2ff;
  --accent-purple: #8e44ad;
  --accent-gold: #f1c40f;
  --color-whatsapp: #25d366;
  --color-danger: #ef4444;
  --color-success: #00d9a3;

  --grad-primary: linear-gradient(135deg, #f15a24 0%, #ff7a00 45%, #6c5ce7 100%);
  --grad-brand: linear-gradient(135deg, #0b1b3d 0%, #162a56 50%, #f15a24 100%);
  --grad-orange: linear-gradient(135deg, #ff7a00 0%, #f15a24 100%);
  --grad-indigo-mint: linear-gradient(135deg, #6c5ce7 0%, #00d9a3 100%);
  --grad-surface: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%);
  --grad-glow: radial-gradient(circle, rgba(241, 90, 36, 0.25) 0%, rgba(0, 217, 163, 0) 70%);

  /* Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px rgba(241, 90, 36, 0.35);
  --shadow-orange: 0 0 30px rgba(241, 90, 36, 0.3);
  --shadow-mint: 0 0 30px rgba(0, 217, 163, 0.25);

  /* Typography */
  --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Sizing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --container-max: 1240px;
  --header-height: 76px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Mode */
[data-theme="light"] {
  --bg-primary: #f4f5fa;
  --bg-secondary: #ffffff;
  --bg-tertiary: #e9ecf5;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --border-color: rgba(17, 24, 39, 0.08);
  --border-subtle: rgba(17, 24, 39, 0.04);
  --border-focus: #6c5ce7;

  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --text-inverse: #ffffff;

  --grad-surface: linear-gradient(180deg, #ffffff 0%, #f4f5fa 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px rgba(108, 92, 231, 0.18);
  --shadow-mint: 0 0 25px rgba(0, 217, 163, 0.18);
}

/* --- 2. Global Resets & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  transition: background-color var(--transition-base), color var(--transition-base);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- 3. Utilities & Helper Classes --- */
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-mint {
  background: var(--grad-indigo-mint);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-orange { color: var(--brand-orange) !important; }
.text-navy { color: var(--brand-navy) !important; }
.text-accent { color: var(--accent-indigo); }
.text-mint { color: var(--accent-mint); }
.text-cyan { color: var(--accent-cyan); }
.text-success { color: var(--color-success); }
.text-whatsapp { color: var(--color-whatsapp); }
.text-gold { color: var(--accent-gold); }
.text-required { color: var(--color-danger); }
.text-center { text-align: center; }

.badge-orange {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(241, 90, 36, 0.15);
  color: var(--brand-orange);
  border: 1px solid rgba(241, 90, 36, 0.35);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.w-100 { width: 100%; }
.mb-0 { margin-bottom: 0 !important; }

/* Section Layouts */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(108, 92, 231, 0.12);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: var(--radius-full);
  color: var(--accent-indigo);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

[data-theme="light"] .section-tag {
  background: rgba(108, 92, 231, 0.08);
  border-color: rgba(108, 92, 231, 0.25);
  color: #5846e0;
}

.section-tag.tag-mint {
  background: rgba(0, 217, 163, 0.12);
  border-color: rgba(0, 217, 163, 0.3);
  color: var(--accent-mint);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

/* --- 4. Buttons & Badges --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #6c5ce7 0%, #00c2ff 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(108, 92, 231, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.5);
  color: #ffffff;
}

.btn-mint {
  background: linear-gradient(135deg, #00d9a3 0%, #00a87e 100%);
  color: #0a0e17;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 217, 163, 0.3);
}

.btn-mint:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 217, 163, 0.45);
  color: #0a0e17;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-color);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(108, 92, 231, 0.5);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: rgba(108, 92, 231, 0.1);
  border-color: var(--accent-indigo);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 80%);
  transform: rotate(30deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { transform: translate(-100%, -100%) rotate(30deg); }
  20%, 100% { transform: translate(100%, 100%) rotate(30deg); }
}

/* --- 5. Top Announcement Bar --- */
.top-announcement {
  background: linear-gradient(90deg, #0a0e17 0%, #162036 50%, #0a0e17 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.45rem 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

[data-theme="light"] .top-announcement {
  background: linear-gradient(90deg, #f4f5fa 0%, #e5e9f5 50%, #f4f5fa 100%);
}

.top-announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.announcement-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-mint);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.announcement-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.announcement-item:hover {
  color: var(--accent-mint);
}

.announcement-divider {
  color: var(--border-color);
}

/* --- 6. Sticky Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
}

[data-theme="light"] .site-header {
  background: rgba(244, 245, 250, 0.9);
}

.site-header.scrolled {
  height: 66px;
  background: rgba(10, 14, 23, 0.95);
  box-shadow: var(--shadow-md);
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon-wrapper {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(241, 90, 36, 0.25);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
  border: 1px solid rgba(241, 90, 36, 0.2);
  transition: all var(--transition-base);
}

.brand-logo:hover .logo-icon-wrapper {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(241, 90, 36, 0.4);
}

.logo-icon-wrapper img,
.logo-icon-wrapper svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
}

.logo-title .brand-son {
  color: #ffffff;
  transition: color var(--transition-fast);
}

[data-theme="light"] .logo-title .brand-son {
  color: #0b1b3d;
}

.logo-title .brand-digit {
  color: var(--brand-orange);
}

.logo-subtitle {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Nav Menu */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-indigo-mint);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.badge-new {
  font-size: 0.65rem;
  padding: 0.15rem 0.4rem;
  background: var(--accent-mint);
  color: #0a0e17;
  font-weight: 800;
  border-radius: var(--radius-full);
  margin-right: 2px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.theme-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

[data-theme="light"] .theme-btn {
  background: #e9ecf5;
  border-color: rgba(0,0,0,0.06);
}

.theme-btn:hover {
  background: rgba(108, 92, 231, 0.2);
  border-color: var(--accent-indigo);
  transform: rotate(15deg);
}

.dark-icon { display: block; }
.light-icon { display: none; }

[data-theme="light"] .dark-icon { display: none; }
[data-theme="light"] .light-icon { display: block; }

.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  z-index: 2000;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow-y: auto;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(108, 92, 231, 0.12);
  color: var(--accent-indigo);
}

.mobile-drawer-footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* --- 7. Hero Section --- */
.hero-section {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-bg-glows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}

.glow-orb-1 {
  width: 500px;
  height: 500px;
  background: #6c5ce7;
  top: -10%;
  right: 5%;
}

.glow-orb-2 {
  width: 400px;
  height: 400px;
  background: #00d9a3;
  bottom: 0;
  left: -5%;
}

.glow-orb-3 {
  width: 300px;
  height: 300px;
  background: #00c2ff;
  top: 40%;
  left: 45%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background: rgba(0, 217, 163, 0.1);
  border: 1px solid rgba(0, 217, 163, 0.3);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.hero-badges-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* Hero Visual / Dashboard Glass Card */
.hero-visual {
  position: relative;
}

.hero-card-glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
  position: relative;
}

.card-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 600;
}

.mac-dots {
  display: flex;
  gap: 6px;
}

.mac-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 217, 163, 0.15);
  color: var(--accent-mint);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.pulse-green {
  width: 6px;
  height: 6px;
  background: var(--accent-mint);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-mint);
}

.hero-card-body {
  padding: 1.5rem;
}

.stat-highlight-box {
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.stat-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.stat-badge-green {
  background: rgba(0, 217, 163, 0.15);
  color: var(--accent-mint);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
}

.stat-num-large {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.mini-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--grad-indigo-mint);
  border-radius: 3px;
}

.hero-grid-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.mini-metric-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.metric-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.metric-purple { background: rgba(108, 92, 231, 0.2); color: var(--accent-indigo); }
.metric-cyan { background: rgba(0, 194, 255, 0.2); color: var(--accent-cyan); }
.metric-amber { background: rgba(241, 196, 15, 0.2); color: var(--accent-gold); }
.metric-emerald { background: rgba(0, 217, 163, 0.2); color: var(--accent-mint); }

.metric-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.1;
}

.metric-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.activity-ticker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.ticker-text {
  transition: opacity 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- 8. Stats Strip --- */
.stats-counter-strip {
  margin-top: 3.5rem;
  padding: 2rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-icon-wrapper {
  font-size: 1.5rem;
  color: var(--accent-mint);
  margin-bottom: 0.5rem;
}

.stat-count-group {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- 9. Three Core Pillars Section --- */
.pillars-section {
  background: var(--bg-primary);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-main-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-base);
  overflow: hidden;
}

.pillar-main-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 231, 0.4);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.pillar-main-card.pillar-highlight {
  border-color: rgba(0, 217, 163, 0.35);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(22, 32, 54, 0.95) 100%);
}

.pillar-main-card.pillar-highlight:hover {
  border-color: var(--accent-mint);
  box-shadow: var(--shadow-lg), var(--shadow-mint);
}

.pillar-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.pillar-icon-mkt { background: rgba(108, 92, 231, 0.15); color: var(--accent-indigo); }
.pillar-icon-it { background: rgba(0, 194, 255, 0.15); color: var(--accent-cyan); }
.pillar-icon-ai { background: rgba(0, 217, 163, 0.15); color: var(--accent-mint); }

.pillar-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-mint);
  margin-bottom: 0.5rem;
}

.pillar-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pillar-services-list {
  margin-bottom: 2rem;
  flex: 1;
}

.pillar-services-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.pillar-card-footer {
  margin-top: auto;
}

/* --- 10. Services Grid & Service Cards --- */
.services-section {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(108, 92, 231, 0.4);
  box-shadow: var(--shadow-md);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.icon-marketing { background: rgba(108, 92, 231, 0.15); color: var(--accent-indigo); }
.icon-web { background: rgba(0, 194, 255, 0.15); color: var(--accent-cyan); }
.icon-ai { background: rgba(0, 217, 163, 0.15); color: var(--accent-mint); }
.icon-brand { background: rgba(241, 196, 15, 0.15); color: var(--accent-gold); }
.icon-seo { background: rgba(142, 68, 173, 0.15); color: var(--accent-purple); }
.icon-cloud { background: rgba(37, 211, 102, 0.15); color: var(--color-whatsapp); }

.service-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-features-list {
  margin-bottom: 1.75rem;
  flex: 1;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-indigo);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-link:hover {
  color: var(--accent-mint);
  gap: 0.75rem;
}

/* --- 11. Six-Step Methodology Timeline --- */
.process-section {
  background: var(--bg-primary);
}

.process-timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
}

.process-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.process-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-mint);
  box-shadow: var(--shadow-sm);
}

.step-num-badge {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-mint);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- 12. AI Automation Interactive Visual Flow --- */
.ai-flow-section {
  background: var(--bg-secondary);
}

.ai-flow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}

.ai-flow-node {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  flex: 1;
  min-width: 140px;
  position: relative;
  transition: all var(--transition-base);
}

.ai-flow-node:hover {
  border-color: var(--accent-mint);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.node-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(108, 92, 231, 0.2);
  color: var(--accent-indigo);
}

.node-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.node-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.ai-flow-connector {
  color: var(--accent-mint);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- 13. Interactive Cost & Timeline Estimator --- */
.calculator-section {
  background: var(--bg-primary);
}

.calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
}

.calc-options {
  padding: 2.5rem;
  border-right: 1px solid var(--border-color);
}

.calc-step-group {
  margin-bottom: 2rem;
}

.calc-step-group:last-child {
  margin-bottom: 0;
}

.calc-step-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.step-num {
  width: 26px;
  height: 26px;
  background: var(--accent-indigo);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.calc-pill-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.calc-radio-card {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  cursor: pointer;
  background: var(--bg-tertiary);
  transition: all var(--transition-fast);
  display: block;
}

.calc-radio-card input {
  position: absolute;
  opacity: 0;
}

.radio-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.radio-content i {
  font-size: 1.3rem;
  color: var(--accent-indigo);
  margin-bottom: 0.25rem;
}

.radio-content strong {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.radio-content small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.calc-radio-card.active, .calc-radio-card:hover {
  border-color: var(--accent-indigo);
  background: rgba(108, 92, 231, 0.12);
}

.calc-radio-card.active .radio-content i {
  color: var(--accent-mint);
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.slider-display-badge {
  background: rgba(0, 217, 163, 0.15);
  color: var(--accent-mint);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
}

.calc-range-slider {
  width: 100%;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
}

.calc-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-mint);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 217, 163, 0.6);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.addon-checkbox-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.addon-checkbox-card input {
  position: absolute;
  opacity: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.addon-checkbox-card input:checked ~ .checkbox-custom {
  background: var(--accent-mint);
  border-color: var(--accent-mint);
}

.addon-checkbox-card input:checked ~ .checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: #0a0e17;
}

.addon-text {
  display: flex;
  flex-direction: column;
}

.addon-text strong {
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.addon-text small {
  font-size: 0.75rem;
  color: var(--accent-mint);
  font-weight: 600;
}

/* Calculator Summary Panel */
.calc-summary-panel {
  padding: 2.5rem;
  background: linear-gradient(180deg, rgba(22, 32, 54, 0.7) 0%, rgba(15, 23, 42, 0.95) 100%);
  display: flex;
  flex-direction: column;
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.summary-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.breakdown-row strong {
  color: var(--text-primary);
}

.summary-total-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.total-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.total-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent-mint);
  margin: 0.25rem 0;
}

.total-price-wrap .currency {
  font-size: 1.5rem;
}

.total-price-wrap .price-suffix {
  font-size: 1rem;
  color: var(--text-muted);
}

.total-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.summary-perks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.perk {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* --- 14. Live AI Chatbot Simulator --- */
.ai-demo-section {
  background: var(--bg-secondary);
}

.ai-demo-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.ai-chat-window {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 520px;
}

.ai-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-color);
}

.ai-bot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c5ce7 0%, #00d9a3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  position: relative;
  flex-shrink: 0;
}

.online-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #25d366;
  border-radius: 50%;
  border: 2px solid var(--bg-tertiary);
}

.ai-bot-meta {
  flex: 1;
  margin-left: 0.85rem;
}

.ai-bot-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.ai-bot-meta span {
  font-size: 0.75rem;
  color: var(--accent-mint);
}

.reset-chat-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.reset-chat-btn:hover {
  color: var(--text-primary);
  border-color: var(--accent-indigo);
}

.ai-messages-box {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-bubble {
  max-width: 82%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.5;
  animation: fadeIn 0.3s ease;
}

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

.bot-bubble {
  align-self: flex-start;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}

.user-bubble {
  align-self: flex-end;
  background: linear-gradient(135deg, #6c5ce7 0%, #00c2ff 100%);
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.bubble-time {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  text-align: right;
}

.chat-quick-prompts {
  padding: 0.65rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  white-space: nowrap;
}

.prompt-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  flex-shrink: 0;
}

.prompt-chip {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.prompt-chip:hover {
  background: rgba(108, 92, 231, 0.2);
  border-color: var(--accent-indigo);
  color: var(--text-primary);
}

.ai-input-bar {
  display: flex;
  padding: 0.85rem;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
  gap: 0.65rem;
}

.ai-input-bar input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  color: var(--text-primary);
  outline: none;
  font-size: 0.88rem;
}

.ai-input-bar input:focus {
  border-color: var(--accent-indigo);
}

.ai-send-btn {
  background: var(--grad-indigo-mint);
  border: none;
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.ai-send-btn:hover {
  transform: scale(1.05);
}

.ai-benefits-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-card {
  display: flex;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--transition-base);
}

.benefit-card:hover {
  border-color: rgba(108, 92, 231, 0.35);
  transform: translateX(4px);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.benefit-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- 15. Portfolio & Case Studies --- */
.portfolio-section {
  background: var(--bg-primary);
}

.portfolio-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-indigo);
  border-color: var(--accent-indigo);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 231, 0.4);
  box-shadow: var(--shadow-lg);
}

.portfolio-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img-wrap img {
  transform: scale(1.05);
}

.portfolio-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 14, 23, 0.8);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-mint);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-card-content {
  padding: 1.75rem;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.portfolio-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.portfolio-metrics {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.p-metric {
  display: flex;
  flex-direction: column;
}

.p-metric strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-mint);
}

.p-metric span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- 16. Pricing Packages --- */
.pricing-section {
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.featured-pricing {
  border-color: var(--accent-mint);
  background: linear-gradient(180deg, rgba(22, 32, 54, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
  box-shadow: var(--shadow-lg), var(--shadow-mint);
  transform: scale(1.03);
}

.featured-pricing:hover {
  transform: scale(1.03) translateY(-5px);
}

.popular-ribbon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--accent-mint);
  color: #0a0e17;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.pricing-tier-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-indigo);
}

.tier-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.25rem 0 0.5rem;
}

.tier-summary {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  min-height: 42px;
}

.price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-right: 2px;
}

.price-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-left: 0.4rem;
}

.pricing-features {
  margin-bottom: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* --- 17. Testimonials Carousel --- */
.testimonials-section {
  background: var(--bg-primary);
}

.testimonial-carousel-wrap {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.testi-stars {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testi-quote {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1.75rem;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-indigo-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.carousel-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--accent-indigo);
  border-color: var(--accent-indigo);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.c-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.c-dot.active {
  background: var(--accent-mint);
  width: 24px;
  border-radius: var(--radius-full);
}

/* --- 18. FAQ Accordion --- */
.faq-section {
  background: var(--bg-secondary);
}

.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(108, 92, 231, 0.35);
}

.faq-question-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-chevron {
  font-size: 0.9rem;
  color: var(--accent-mint);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-question-btn[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.5rem;
}

.faq-answer-panel p {
  padding-bottom: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* --- 19. Contact Section & Forms --- */
.contact-section {
  background: var(--bg-primary);
}

.contact-card-glass {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-info-col {
  padding: 3rem 2.5rem;
  background: linear-gradient(180deg, rgba(22, 32, 54, 0.7) 0%, rgba(15, 23, 42, 0.95) 100%);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.contact-main-heading {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-subtext {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
}

.c-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(108, 92, 231, 0.15);
  color: var(--accent-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.contact-detail-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.direct-whatsapp-card {
  margin-top: auto;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.d-wa-icon {
  font-size: 2rem;
  color: #25d366;
  flex-shrink: 0;
}

.d-wa-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.d-wa-text p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.contact-form-col {
  padding: 3rem 2.5rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.project-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  outline: none;
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

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

.form-group.has-error input, .form-group.has-error select {
  border-color: var(--color-danger);
}

.field-error {
  display: none;
  font-size: 0.72rem;
  color: var(--color-danger);
}

.form-group.has-error .field-error {
  display: block;
}

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

/* --- 20. Inner Page Hero & Breadcrumbs --- */
.page-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.page-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--accent-mint);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* --- 21. Industry Cards --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.industry-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-mint);
  box-shadow: var(--shadow-sm);
}

.industry-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-md);
  background: rgba(108, 92, 231, 0.15);
  color: var(--accent-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.industry-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.industry-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- 22. Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(108, 92, 231, 0.4);
  box-shadow: var(--shadow-md);
}

.blog-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.blog-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(6px);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-mint);
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-indigo);
}

/* --- 23. Site Footer --- */
.site-footer {
  background: #060a12;
  border-top: 1px solid var(--border-color);
  padding: 4.5rem 0 2rem;
  color: var(--text-secondary);
}

[data-theme="light"] .site-footer {
  background: #0f172a;
  color: #94a3b8;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.brand-col .footer-tagline {
  font-size: 0.88rem;
  margin: 1rem 0 1.25rem;
  line-height: 1.6;
}

.footer-legal-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-primary);
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--accent-mint);
  transform: translateX(4px);
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--accent-indigo);
  border-color: var(--accent-indigo);
  transform: translateY(-2px);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.legal-link-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.82rem;
  transition: color var(--transition-fast);
}

.legal-link-btn:hover {
  color: var(--accent-mint);
}

/* --- 24. Floating Actions --- */
.floating-actions-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  position: relative;
  transition: transform var(--transition-fast);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.floating-tooltip {
  position: absolute;
  right: 68px;
  background: #0a0e17;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  border: 1px solid var(--border-color);
}

.floating-whatsapp-btn:hover .floating-tooltip {
  opacity: 1;
}

.back-to-top-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: var(--accent-indigo);
  border-color: var(--accent-indigo);
  transform: translateY(-3px);
}

/* --- 25. Legal Policy Modal --- */
.legal-modal-dialog {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  color: var(--text-primary);
  max-width: 650px;
  width: 90%;
  margin: auto;
  padding: 0;
  box-shadow: var(--shadow-lg);
}

.legal-modal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.modal-content-wrap {
  padding: 1.75rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body {
  max-height: 60vh;
  overflow-y: auto;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.modal-body h4 {
  color: var(--text-primary);
  margin: 1rem 0 0.4rem;
  font-size: 0.95rem;
}

.modal-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
}
