/* ==========================================
   BRILLIANT P DESIGN SYSTEM & PALETTE
   ========================================== */

:root {
  --bg-primary: #030303;      /* Darker background for higher contrast */
  --bg-secondary: #0A0A0E;    /* Dark navy-obsidian for card backdrops */
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-heavy: rgba(255, 255, 255, 0.07);
  --border-glass: rgba(255, 255, 255, 0.12); /* Increased border contrast */
  --border-glass-light: rgba(255, 255, 255, 0.06);
  
  --accent-purple: #8B5CF6;
  --accent-purple-glow: rgba(139, 92, 246, 0.45);
  --accent-teal: #06B6D4;
  --accent-teal-glow: rgba(6, 182, 212, 0.45);
  --accent-pink: #EC4899;
  
  --text-primary: #FFFFFF;    /* Pure White for Headings */
  --text-secondary: #E2E8F0;  /* High contrast Slate-White for body text */
  --text-muted: #94A3B8;      /* Slate-Gray for subtitles/labels */
  --text-dark: #0A0A0A;
  
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* ==========================================
   RESET & CORE STYLES
   ========================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border-glass) transparent;
}

html {
}

body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.75; /* Increased line-height for readability */
  letter-spacing: -0.01em;
}

/* Custom Cursor Glow */
.custom-glow-mouse {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-purple-glow) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  mix-blend-mode: screen;
  transition: width 0.3s ease, height 0.3s ease;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border-glass);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
}

/* ==========================================
   REUSABLE UTILITIES & GLASSMORPHISM
   ========================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px; /* Increased border radius for modern luxury feel */
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: translateY(-5px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: var(--accent-purple);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-mini {
  display: inline-block;
  color: var(--accent-teal);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-purple);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent-purple);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 25px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
  background: var(--bg-glass-heavy);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
}

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

/* SECTION HEADER STYLE */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px auto;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.section-header h2 span {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  display: flex;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid var(--border-glass-light);
  background: rgba(3, 3, 3, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-teal);
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.btn-nav {
  padding: 10px 22px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

/* ==========================================
   1. HERO SECTION
   ========================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 130px;
  overflow: hidden;
  background: radial-gradient(circle at 75% 25%, rgba(139, 92, 246, 0.12) 0%, rgba(0,0,0,0) 60%),
              radial-gradient(circle at 25% 75%, rgba(6, 182, 212, 0.12) 0%, rgba(0,0,0,0) 60%);
}

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

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
  z-index: 10;
  flex-grow: 1;
  padding-bottom: 30px;
}

.hero-content {
  max-width: 680px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  margin: 24px 0;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

/* Floating interactive dashboard visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
}

.visual-card {
  position: absolute;
}

.main-visual {
  width: 330px;
  height: 300px;
  padding: 28px;
}

.card-header-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}

.card-header-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.card-header-dots .red { background-color: #EF4444; }
.card-header-dots .yellow { background-color: #F59E0B; }
.card-header-dots .green { background-color: #10B981; }

.visual-growth-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.status-indicator {
  color: var(--accent-teal);
  position: relative;
  padding-left: 14px;
}

.status-indicator::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-teal);
}

.chart-mockup {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.chart-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 110px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 10px;
}

.chart-bar {
  width: 32px;
  height: var(--height);
  background: linear-gradient(180deg, var(--accent-purple), rgba(139, 92, 246, 0.05));
  border-radius: 6px;
  animation: heightPulse 4s infinite ease-in-out;
}

.chart-bar:nth-child(even) {
  background: linear-gradient(180deg, var(--accent-teal), rgba(6, 182, 212, 0.05));
}

.chart-metrics {
  display: flex;
  justify-content: space-around;
}

.metric {
  text-align: center;
}

.metric .label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.metric .value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--text-primary);
}

.float-badge-1 {
  top: 40px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  transform: rotate(-3deg);
}

.float-badge-2 {
  bottom: 40px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  transform: rotate(3deg);
}

.float-badge-1 h4, .float-badge-2 h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
}

.float-badge-1 p, .float-badge-2 p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Counters banner */
.counters-banner {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass-light);
  border-bottom: 1px solid var(--border-glass-light);
  padding: 50px 0;
  margin-top: 80px;
  z-index: 10;
}

.counters-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.counter-item h3 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.counter-item p {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* Animations */
@keyframes heightPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; filter: brightness(1.25); }
}

/* ==========================================
   2. WHY CHOOSE BRILLIANT P
   ========================================== */

.why-choose-section {
  padding: 140px 0; /* Increased section padding */
  background-color: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  padding: 44px 34px;
  text-align: left;
}

.why-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  margin-bottom: 26px;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon-box {
  background: var(--accent-teal);
  color: #000;
  box-shadow: 0 0 20px var(--accent-teal-glow);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================
   3. SERVICES SECTION
   ========================================== */

.services-section {
  padding: 140px 0;
  background-color: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  padding: 44px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent-purple);
  margin-bottom: 26px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--accent-purple);
  color: #FFFFFF;
  box-shadow: 0 0 25px var(--accent-purple-glow);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.service-card .service-desc {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin-bottom: 24px;
}

.service-expandable {
  border-top: 1px solid var(--border-glass-light);
  padding-top: 24px;
  margin-bottom: 34px;
}

.service-expandable h5 {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-teal);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-weight: 800;
}

.service-expandable ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-expandable li {
  font-size: 13.5px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 22px;
}

.service-expandable li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-purple);
  font-weight: 700;
}

.btn-service-inquire {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
}

.btn-service-inquire:hover {
  color: var(--accent-teal);
}

/* ==========================================
   4. REDESIGNED PORTFOLIO SHOWCASE & SIMULATOR
   ========================================== */

.portfolio-showcase-section {
  padding: 140px 0;
  background-color: var(--bg-primary);
}

.showcase-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: flex-start;
}

/* Left Switcher list */
.mockup-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 700px;
  overflow-y: auto;
  padding-right: 15px;
}

.demo-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass-light);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.demo-card:hover, .demo-card.active {
  background: var(--bg-glass-heavy);
  border-color: var(--accent-purple);
}

.demo-num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1;
  transition: var(--transition-fast);
}

.demo-card:hover .demo-num, .demo-card.active .demo-num {
  color: var(--accent-purple);
}

.demo-card-body {
  flex-grow: 1;
}

.demo-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.demo-overview {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Specific features badge list */
.demo-features-included {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.demo-features-included span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.demo-features-included span i {
  width: 12px;
  height: 12px;
  color: var(--accent-teal);
  opacity: 1;
  transform: none;
}

.demo-card > i {
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-smooth);
  margin-top: 4px;
}

.demo-card:hover > i, .demo-card.active > i {
  opacity: 1;
  transform: translateX(0);
  color: var(--accent-purple);
}

/* Demo card visual SVG wrappers */
.demo-card-visual {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass-light);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}

.demo-card:hover .demo-card-visual, .demo-card.active .demo-card-visual {
  border-color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.08);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.demo-card-visual svg {
  width: 32px;
  height: 32px;
  display: block;
}

/* Micro-animations inside SVGs */

/* 1. Cloche/Platter Spark animation */
@keyframes sparkFloat {
  0%, 100% { transform: translateY(0) scale(0.8); opacity: 0.3; }
  50% { transform: translateY(-4px) scale(1.2); opacity: 1; }
}
.cloche-visual .spark {
  animation: sparkFloat 2s infinite ease-in-out;
  transform-origin: center;
}
.cloche-visual .spark-2 { animation-delay: 0.6s; }
.cloche-visual .spark-3 { animation-delay: 1.2s; }

/* 2. Gym Barbell rotation/shake on hover */
@keyframes barbellWobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}
.demo-card:hover .gym-visual svg, .demo-card.active .gym-visual svg {
  animation: barbellWobble 1s infinite ease-in-out;
}

/* 3. Cafe Steam floating up */
@keyframes steamRise {
  0% { transform: translateY(2px) scaleX(1); opacity: 0.2; }
  50% { transform: translateY(-3px) scaleX(1.1); opacity: 0.8; }
  100% { transform: translateY(-6px) scaleX(0.9); opacity: 0; }
}
.cafe-visual .steam {
  animation: steamRise 2s infinite linear;
  transform-origin: bottom center;
}
.cafe-visual .steam-2 { animation-delay: 0.6s; }
.cafe-visual .steam-3 { animation-delay: 1.2s; }

/* 4. Coaching Graduation Cap float */
@keyframes capFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.coaching-visual svg {
  animation: capFloat 3s infinite ease-in-out;
}

/* 5. Real Estate Building Glow pulse */
@keyframes windowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; fill: #22D3EE; filter: drop-shadow(0 0 2px #22D3EE); }
}
.real-estate-visual rect[fill="#FFF"] {
  animation: windowPulse 3s infinite ease-in-out;
}
.real-estate-visual rect[fill="#FFF"]:nth-child(even) {
  animation-delay: 1.5s;
}

/* 6. Watch Second Hand Sweeping */
@keyframes watchSweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.ecommerce-visual .watch-hand-second {
  animation: watchSweep 6s infinite linear;
  transform-origin: 16px 16px;
}

/* 7. Healthcare ECG Pulse Wave */
@keyframes ecgPulse {
  0% { stroke-dashoffset: 48; }
  100% { stroke-dashoffset: 0; }
}
.clinic-visual .ecg-pulse-line {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: ecgPulse 2.5s infinite linear;
}

/* 8. Corporate Arrow path bounce */
@keyframes arrowBounce {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(2px, -2px); }
}
.demo-card:hover .corporate-visual .corporate-arrow,
.demo-card:hover .corporate-visual .corporate-arrow-head,
.demo-card.active .corporate-visual .corporate-arrow,
.demo-card.active .corporate-visual .corporate-arrow-head {
  animation: arrowBounce 1.5s infinite ease-in-out;
}

/* Right Device Simulator frame wrapper */
.device-preview-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
}

/* Simulator Meta Details Card Panel */
.simulator-meta-details {
  padding: 30px;
  background: rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid var(--border-glass-light);
}

.simulator-meta-details h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.simulator-meta-details p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sim-view-demo-btn-row {
  display: flex;
  justify-content: flex-start;
}

.btn-sim-view {
  padding: 10px 20px;
  font-size: 13px;
}

.device-controls {
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.browser-address {
  background: var(--bg-primary);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  width: 65%;
}

.secure-icon {
  width: 13px;
  height: 13px;
}

.device-toggles {
  display: flex;
  gap: 10px;
}

.device-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-glass-light);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.device-toggle-btn:hover, .device-toggle-btn.active {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.08);
}

.device-toggle-btn i {
  width: 18px;
  height: 18px;
}

.mockup-frame-outer {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060608;
  min-height: 520px;
  transition: var(--transition-smooth);
}

.mockup-iframe {
  border: 1px solid var(--border-glass);
  background: #000;
  width: 100%;
  height: 470px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

/* Device transitions sizes */
.device-preview-wrapper.desktop-mode .mockup-frame-outer {
  max-width: 100%;
}
.device-preview-wrapper.tablet-mode .mockup-iframe {
  max-width: 480px;
  height: 540px;
}
.device-preview-wrapper.mobile-mode .mockup-iframe {
  max-width: 320px;
  height: 540px;
}

/* ==========================================
   5. SOCIAL MEDIA PORTFOLIO
   ========================================== */

.social-media-portfolio-section {
  padding: 140px 0;
  background-color: var(--bg-secondary);
}

.social-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.social-card-showcase {
  overflow: hidden;
}

.social-img-container {
  height: 300px;
  overflow: hidden;
  position: relative;
  background: #111;
}

.social-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.social-card-showcase:hover .social-img-container img {
  transform: scale(1.05);
}

.social-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0,0,0,0.85);
  border: 1px solid var(--accent-teal);
  color: var(--accent-teal);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.08em;
}

.social-info-panel {
  padding: 26px;
}

.social-info-panel h4 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.social-info-panel p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Growth metrics card calculator */
.growth-metrics-slider-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.growth-metrics-slider-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.growth-metrics-slider-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 34px;
}

.growth-toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  padding: 14px 24px;
  border-radius: 30px;
  margin-bottom: 34px;
}

.state-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.state-label.active {
  color: var(--text-primary);
}

.slide-control {
  width: 90px;
  display: flex;
  align-items: center;
}

.slide-control input[type="range"] {
  width: 100%;
  cursor: pointer;
  accent-color: var(--accent-purple);
}

.growth-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  text-align: center;
}

.growth-stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.growth-stat-item .label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.growth-stat-item .val {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-teal);
  transition: var(--transition-smooth);
}

/* ==========================================
   6. VIDEO EDITING PORTFOLIO
   ========================================== */

.video-editing-portfolio-section {
  padding: 140px 0;
  background-color: var(--bg-primary);
}

.video-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.video-filter-btn {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass-light);
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.video-filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: var(--border-glass);
}

.video-filter-btn.active {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  color: #FFFFFF;
  box-shadow: 0 0 15px var(--accent-purple-glow);
}

.video-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transition: all 0.5s ease-in-out;
}

.video-portfolio-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease, visibility 0.4s ease;
  opacity: 1;
  visibility: visible;
  display: flex;
  flex-direction: column;
}

.video-portfolio-card.hide {
  opacity: 0;
  visibility: hidden;
  display: none !important;
}

.video-portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--border-glass-light);
}

.video-thumbnail-container {
  position: relative;
  overflow: hidden;
  background: #000;
  width: 100%;
}

.video-thumbnail-container.landscape {
  aspect-ratio: 16 / 9;
}

.video-thumbnail-container.portrait {
  aspect-ratio: 9 / 16;
  max-height: 480px;
}

.video-thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.video-portfolio-card:hover .video-thumbnail-container img {
  transform: scale(1.05);
  opacity: 0.55;
}

.video-overlay-play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-circle i {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 2px;
}

.video-portfolio-card:hover .play-circle {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  transform: scale(1.15);
  box-shadow: 0 0 20px var(--accent-purple-glow);
}

.video-length-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(10, 10, 15, 0.85);
  color: var(--text-primary);
  border: 1px solid var(--border-glass-light);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  pointer-events: none;
  font-family: var(--font-body);
}

.video-content-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.video-title-row h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
}

.video-tag {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass-light);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.video-content-info p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.video-results {
  font-size: 12.5px;
  color: var(--accent-teal);
  font-weight: 700;
  margin-top: auto;
  border-top: 1px solid var(--border-glass-light);
  padding-top: 12px;
}

/* ==========================================
   VIDEO LIGHTBOX PLAYER
   ========================================== */

.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.video-lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(15px);
}

.video-lightbox-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  width: 90%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-glass);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: var(--bg-glass);
}

.video-lightbox.active .video-lightbox-content {
  transform: scale(1);
}

.video-lightbox-content.portrait-mode {
  max-width: 420px;
}

.video-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass-light);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}

.video-lightbox-close:hover {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  color: #FFFFFF;
  box-shadow: 0 0 10px var(--accent-purple-glow);
}

.video-player-container {
  width: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-player-container.landscape {
  aspect-ratio: 16 / 9;
}

.video-player-container.portrait {
  aspect-ratio: 9 / 16;
}

.video-player-container video, 
.video-player-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* Video Placeholder Style in Modal */
.video-placeholder-modal-content {
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid var(--accent-teal);
  color: var(--accent-teal);
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.placeholder-icon i {
  width: 32px;
  height: 32px;
}

.video-placeholder-modal-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.placeholder-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 30px;
  max-width: 480px;
  line-height: 1.5;
}

.placeholder-instructions {
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass-light);
  padding: 24px;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.placeholder-instructions h4 {
  font-family: var(--font-heading);
  color: var(--accent-purple);
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.placeholder-instructions ol {
  color: var(--text-secondary);
  font-size: 13px;
  padding-left: 20px;
}

.placeholder-instructions ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.placeholder-instructions code {
  font-family: monospace;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 12px;
}

/* ==========================================
   7. AI SOLUTIONS SHOWCASE
   ========================================== */

.ai-solutions-section {
  padding: 140px 0;
  background-color: var(--bg-secondary);
}

.ai-showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
}

/* Bot chat panels */
.chatbot-mockup-widget {
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 430px;
}

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border-glass-light);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.bot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-header h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
}

.chatbot-header p {
  font-size: 11px;
  color: var(--text-muted);
}

.chatbot-messages {
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  padding-right: 8px;
}

.msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.5;
}

.bot-msg {
  background: var(--bg-glass-heavy);
  color: var(--text-primary);
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.user-msg {
  background: var(--accent-purple);
  color: #FFFFFF;
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.chatbot-input-area {
  display: flex;
  gap: 12px;
}

.chat-input-control {
  flex-grow: 1;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-glass-light);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
}

.chat-input-control:focus {
  border-color: var(--accent-purple);
}

.chat-send-btn {
  background: var(--accent-purple);
  color: #FFFFFF;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.chat-send-btn:hover {
  background: var(--accent-teal);
  color: #000;
}

/* Workflow charts card */
.ai-workflow-card {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-workflow-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.ai-workflow-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin-bottom: 44px;
}

.workflow-graph {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.workflow-node {
  background: var(--bg-glass-heavy);
  border: 1px solid var(--border-glass-light);
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 120px;
  transition: var(--transition-smooth);
}

.workflow-node i {
  color: var(--text-muted);
}

.workflow-node span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.workflow-node.active {
  border-color: var(--accent-teal);
  box-shadow: 0 0 20px var(--accent-teal-glow);
}

.workflow-node.active i {
  color: var(--accent-teal);
}

.connector-line {
  flex-grow: 1;
  height: 2px;
  background: var(--border-glass-light);
  position: relative;
}

.flowing-pulse {
  position: absolute;
  top: -2px;
  left: 0;
  width: 8px;
  height: 6px;
  background: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-teal);
  animation: lineFlow 2s infinite linear;
}

.workflow-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  border-left: 2px solid var(--accent-teal);
  padding-left: 18px;
  line-height: 1.6;
}

@keyframes lineFlow {
  0% { left: 0%; }
  100% { left: 100%; }
}

/* ==========================================
   8. OUR PROCESS
   ========================================== */

.process-section {
  padding: 140px 0;
  background-color: var(--bg-primary);
}

.process-timeline-container {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-indicator-line {
  position: absolute;
  left: 30px;
  top: 20px;
  width: 2px;
  height: calc(100% - 40px);
  background: var(--border-glass-light);
}

.timeline-indicator-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--accent-purple), var(--accent-teal));
  transition: height 0.5s ease-out;
}

.timeline-step {
  position: relative;
  margin-left: 90px;
  padding: 34px;
}

.step-badge {
  position: absolute;
  left: -90px;
  top: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.timeline-step:hover .step-badge {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  box-shadow: 0 0 12px var(--accent-purple-glow);
}

.timeline-step h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 850;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.timeline-step p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================
   9. CLIENT RESULTS
   ========================================== */

.results-section {
  padding: 140px 0;
  background-color: var(--bg-secondary);
}

.results-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

.results-tabs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.case-tab {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass-light);
  padding: 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.case-tab:hover, .case-tab.active {
  background: var(--bg-glass-heavy);
  border-color: var(--accent-teal);
}

.case-tab h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 750;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.case-tab p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.results-details-panel {
  padding: 44px;
}

.results-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-glass-light);
  padding-bottom: 24px;
  margin-bottom: 34px;
}

.results-panel-header h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
}

.case-tag-indicator {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--accent-teal);
  border: 1px solid var(--accent-teal);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.case-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 44px;
}

.case-metric-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass-light);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-teal);
  display: block;
  margin-bottom: 8px;
  transition: var(--transition-smooth);
}

.metric-lbl {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.chart-container-panel {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-glass-light);
  border-radius: 10px;
  padding: 26px;
}

.chart-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 600;
}

.growth-green {
  color: #10B981;
  font-weight: 800;
}

.metric-svg-chart {
  width: 100%;
  height: 130px;
}

.svg-line-chart {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* ==========================================
   10. TESTIMONIALS
   ========================================== */

.testimonials-section {
  padding: 140px 0;
  background-color: var(--bg-primary);
}

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

.testimonial-track {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  position: relative;
}

.testimonial-slide {
  grid-area: 1 / 1 / 2 / 2;
  padding: 44px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s;
}

.stars {
  color: #F59E0B;
  display: flex;
  gap: 5px;
  margin-bottom: 22px;
}

.stars i {
  width: 18px;
  height: 18px;
  fill: #F59E0B;
}

.quote {
  font-size: 19px;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 26px;
  line-height: 1.6;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
}

.author-info p {
  font-size: 12.5px;
  color: var(--text-muted);
}

.carousel-nav-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 24px;
}

.arrow-btn {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass-light);
  color: var(--text-primary);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.arrow-btn:hover {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-purple-glow);
}

/* ==========================================
   11. PRICING SECTION
   ========================================== */

.pricing-section {
  padding: 140px 0;
  background-color: var(--bg-secondary);
}

.pricing-billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 60px;
}

.pricing-billing-toggle span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.discount-badge {
  background: var(--accent-teal);
  color: #000;
  font-weight: 900;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toggle-switch-wrapper {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.toggle-switch-wrapper input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-glass-heavy);
  border: 1px solid var(--border-glass);
  transition: .4s;
  border-radius: 34px;
}

.toggle-switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--accent-purple);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-switch-slider:before {
  transform: translateX(24px);
  background-color: var(--accent-teal);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent-purple);
  transform: scale(1.03);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-purple);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 30px;
  letter-spacing: 0.08em;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.price-row {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-end;
}

.currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}

.billing-term {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 6px;
  margin-bottom: 6px;
}

.price-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 34px;
  line-height: 1.6;
}

.price-features {
  list-style: none;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.price-features li {
  font-size: 13.5px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li i {
  color: var(--accent-teal);
  width: 18px;
  height: 18px;
}

/* ==========================================
   12. ABOUT US
   ========================================== */

.about-section {
  padding: 140px 0;
  background-color: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-info-content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  margin: 22px 0;
  line-height: 1.25;
  color: var(--text-primary);
}

.about-info-content h2 span {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-para {
  color: var(--text-secondary);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-tab-buttons {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--border-glass-light);
  padding-bottom: 12px;
}

.about-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding-bottom: 8px;
  position: relative;
}

.about-tab-btn.active {
  color: var(--text-primary);
}

.about-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-purple);
}

.about-tab-panels {
  min-height: 90px;
}

.about-panel {
  display: none;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-panel.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

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

.about-visual-panel {
  display: flex;
  justify-content: center;
}

.values-display-card {
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: 100%;
  max-width: 380px;
}

.value-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.value-number {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--accent-teal);
  line-height: 1;
}

.value-item h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   13. FAQ
   ========================================== */

.faq-section {
  padding: 140px 0;
  background-color: var(--bg-secondary);
}

.faq-accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass-light);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-glass);
}

.faq-header {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-icon {
  color: var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.faq-icon i {
  width: 18px;
  height: 18px;
}

.faq-content {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--accent-purple);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-content {
  padding: 0 28px 22px 28px;
  max-height: 180px;
}

/* ==========================================
   14. CONTACT & CONSULTATION
   ========================================== */

.contact-section {
  padding: 140px 0;
  background-color: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-details-left h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  margin: 22px 0;
  line-height: 1.25;
  color: var(--text-primary);
}

.contact-details-left h2 span {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-details-left p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.contact-links-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 44px;
}

.contact-link-item {
  display: flex;
  gap: 18px;
  align-items: center;
}

.link-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
}

.contact-link-item .lbl {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-link-item a, .contact-link-item span {
  font-size: 15px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
}

.contact-social-icons {
  display: flex;
  gap: 18px;
}

.contact-social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass-light);
  border-radius: 6px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.contact-social-icons a:hover {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  box-shadow: 0 0 8px var(--accent-purple-glow);
}

/* Form inputs styling */
.contact-form-wrapper {
  padding: 44px;
  position: relative;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.form-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-glass-light);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-purple);
}

.scheduler-controls {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.contact-success-msg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 3, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  z-index: 10;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px;
  text-align: center;
}

.success-icon {
  font-size: 52px;
  color: var(--accent-teal);
  margin-bottom: 24px;
}

.contact-success-msg h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-success-msg p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ==========================================
   15. FOOTER
   ========================================== */

.footer-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-glass-light);
  padding: 90px 0 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}

.footer-branding {
  max-width: 300px;
}

.footer-branding p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-top: 18px;
  line-height: 1.6;
}

.footer-contact-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  transition: var(--transition-fast);
}

.footer-contact-link:hover {
  color: var(--accent-purple);
}

.footer-links-group h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-group a {
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-glass-light);
  padding-top: 44px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */

.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-ping {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background-color: #EF4444;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: pingEffect 1.5s infinite;
}

@keyframes pingEffect {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================
   RESPONSIVENESS & MEDIA QUERIES
   ========================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    height: 400px;
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .showcase-container {
    grid-template-columns: 1fr;
  }
  
  .device-preview-wrapper {
    order: -1;
  }
  
  .social-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .video-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ai-showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .results-layout {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-visual-panel {
    display: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    height: 75px;
  }
  
  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: var(--bg-primary);
    border-top: 1px solid var(--border-glass-light);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .counters-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .social-grid-layout {
    grid-template-columns: 1fr;
  }
  
  .video-portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}
