/* ============================================
   VipRix — Software Solutions
   Design System: "Minimalist Corporate"
   Inspired by: Stripe · Linear · Notion
   ============================================ */

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

/* ── CSS Variables ── */
:root {
  /* Canvas */
  --bg: #FFFFFF;
  --bg-muted: #FAFAFA;
  --bg-subtle: #F7F7F8;

  /* Text */
  --text: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-subtle: #94A3B8;

  /* Borders / dividers */
  --border: #E5E7EB;
  --border-strong: #D1D5DB;

  /* Accent (CTA only) */
  --accent: #635BFF;
  --accent-hover: #524AE8;
  --accent-subtle: #EEF0FF;
  --accent-border: rgba(99, 91, 255, 0.18);

  /* State */
  --danger: #E11D48;
  --success: #10B981;
  --warning: #F59E0B;

  /* Aliases (keep old variable names working for any cached references) */
  --ink: var(--bg);
  --ink-2: var(--bg-muted);
  --ink-3: var(--bg-subtle);
  --canvas: var(--text);
  --signal: var(--accent);
  --signal-deep: var(--accent-hover);
  --indigo: var(--accent);

  --primary: var(--accent);
  --primary-light: var(--accent);
  --primary-dark: var(--accent-hover);
  --primary-glow: rgba(99, 91, 255, 0.15);
  --primary-subtle: var(--accent-subtle);

  --bg-dark: var(--bg);
  --bg-section: var(--bg-muted);
  --bg-card: var(--bg);
  --bg-card-hover: var(--bg-subtle);

  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: var(--border);
  --glass-border-hover: var(--border-strong);

  --text-white: var(--text);
  --text-light: var(--text-secondary);

  --gradient-primary: var(--accent);
  --gradient-hero: none;
  --gradient-text: var(--text);

  --section-padding: 120px 0;
  --container-width: 1200px;
  --container-padding: 0 32px;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 1px 2px rgba(13,13,26, 0.04);
  --shadow-card: 0 1px 3px rgba(13,13,26, 0.06), 0 1px 2px rgba(13,13,26, 0.04);
  --shadow-md: 0 4px 6px rgba(13,13,26, 0.05), 0 2px 4px rgba(13,13,26, 0.04);
  --shadow-lg: 0 10px 30px rgba(13,13,26, 0.08), 0 4px 12px rgba(13,13,26, 0.04);
  --shadow-btn: 0 1px 2px rgba(99, 91, 255, 0.2);
  --shadow-glow: 0 12px 32px rgba(99, 91, 255, 0.18);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}

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

ul { list-style: none; }

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

button, input, textarea, select {
  font-family: inherit;
  border: none;
  outline: none;
}

::selection {
  background: var(--accent-subtle);
  color: var(--accent);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--text-subtle); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ── Section Titles ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: none;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.6;
  font-weight: 400;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--border-strong);
  background: var(--bg-subtle);
}

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

.btn-secondary:hover {
  background: var(--bg);
  border-color: var(--border-strong);
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }
.reveal-delay-4 { transition-delay: 0.24s; }
.reveal-delay-5 { transition-delay: 0.3s; }
.reveal-delay-6 { transition-delay: 0.36s; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: #000000 !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition-smooth);
}

.header.scrolled {
  padding: 12px 0;
  background: #000000 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.viprix-top-bar { background: #000000 !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
.header .logo-text,
.header .nav-links a { color: #F1F5F9 !important; }
.header .nav-links a:hover,
.header .nav-links a.active { color: #00d4ff !important; }
.header .mobile-toggle span { background: #F1F5F9; }

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.logo-icon img { border-radius: 8px; }

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

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after { content: none; }

.nav-links a:hover,
.nav-links a.active {
  color: #00d4ff;
}

.nav-cta {
  margin-left: 12px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 100px;
  background: #FFFFFF;
  color: var(--text);
  overflow: hidden;
}
html[data-theme="dark"] .hero {
  background: #0d0d1a;
  color: #F1F5F9;
}
html[data-theme="dark"] .hero .hero-title,
html[data-theme="dark"] .hero .hero-description,
html[data-theme="dark"] .hero .hero-stats .stat-number,
html[data-theme="dark"] .hero .hero-stats .stat-label,
html[data-theme="dark"] .hero .hero-badge { color: #F1F5F9; }
html[data-theme="dark"] .hero .hero-badge { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(99, 91, 255, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,13,26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,13,26, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  opacity: 0.6;
}

.hero-orb { display: none; }

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-content {
  flex: 1;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 5px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.6s ease forwards;
}

.hero-badge::before {
  content: 'NEW';
  padding: 3px 10px;
  background: var(--accent-subtle);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
}

.hero-badge i { font-size: 0.72rem; color: var(--accent); }

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-title .highlight {
  color: var(--accent);
  font-style: normal;
  font-family: inherit;
}

.hero-description {
  font-size: 1.18rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 540px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.hero-stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-number::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 4px;
  transform: translateY(-12px);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 400;
}

/* Hero visual */
.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero-code-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: fadeInRight 0.8s ease 0.3s forwards;
  opacity: 0;
}

.code-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}

.code-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.code-dot.red { background: #FF5F57; }
.code-dot.yellow { background: #FEBC2E; }
.code-dot.green { background: #28C840; }

.code-card-title {
  margin-left: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'SF Mono', ui-monospace, monospace;
}

.code-card-body {
  padding: 24px;
  font-family: 'SF Mono', 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--text);
  background: var(--bg);
}

.code-card-body .code-keyword { color: #D946EF; }
.code-card-body .code-function { color: #2563EB; }
.code-card-body .code-string { color: #059669; }
.code-card-body .code-comment { color: var(--text-subtle); font-style: italic; }
.code-card-body .code-bracket { color: var(--text-secondary); }
.code-card-body .code-number { color: #DC2626; }

.floating-element {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatElement 6s ease-in-out infinite;
  box-shadow: var(--shadow-md);
}

.floating-element i { color: var(--accent); }

.float-el-1 { top: 8%; right: -6%; animation-delay: 0s; }
.float-el-2 { bottom: 14%; left: -4%; animation-delay: 2s; }
.float-el-3 { bottom: 2%; right: 6%; animation-delay: 4s; }

@keyframes floatElement {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-padding);
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.services::before { display: none; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.service-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-smooth);
}

.service-card::before { display: none; }

.service-card:hover {
  background: var(--bg);
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before { display: none; }

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-subtle);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: all var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.015em;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 400;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: var(--section-padding);
  background: var(--bg-muted);
  position: relative;
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-text .section-label,
.why-us-text .section-title,
.why-us-text .section-subtitle {
  text-align: left;
}

.why-us-features {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 36px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--accent-subtle);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--accent);
}

.feature-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
  color: var(--text);
}

.feature-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 400;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
}

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

.stat-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
  padding: var(--section-padding);
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.portfolio::before { display: none; }

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

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

.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  transition: all var(--transition-smooth);
}

.portfolio-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,26, 0.85) 0%, rgba(13,13,26, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}

.portfolio-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 10px;
  align-self: flex-start;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  background: var(--bg-muted);
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-smooth);
}

.testimonial-card {
  min-width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 24px;
  color: var(--warning);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.55;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.testimonial-text::before { display: none; }

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.testimonial-author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.testimonial-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 999px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-padding);
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact::before { display: none; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info { padding-top: 4px; }

.contact-info h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.contact-info > p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  font-size: 1rem;
  font-weight: 400;
}

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

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

.contact-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--accent-subtle);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.95rem;
}

.contact-item-text h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.contact-item-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Form */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 400;
  transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748B'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

.form-group select option {
  background: var(--bg);
  color: var(--text);
}

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

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 13px 24px;
  font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 5px 0 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-brand-row { padding-top: 5px; display: flex; justify-content: flex-start; align-items: center; }
.footer-brand-row .logo { display: inline-flex; align-items: center; }
.footer-brand-row .logo-icon { width: 120px; height: 80px; overflow: hidden; }

.footer::before { display: none; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
  align-items: start;
}

.footer-brand .logo { margin-bottom: 20px; }

.footer-brand .logo-icon {
  width: 150px;
  height: 100px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.5;
  max-width: 300px;
  margin-bottom: 16px;
  font-weight: 400;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.footer-column h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
  text-transform: none;
  letter-spacing: -0.005em;
}

.footer-column h4::after { display: none; }

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  font-weight: 400;
}

.footer-column ul a:hover {
  color: var(--text);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #FFFFFF !important;
  font-weight: 700 !important;
}
.footer-bottom-links a { color: #FFFFFF !important; font-weight: 700 !important; transition: color .2s ease; }
.footer-bottom-links a:hover { color: #00d4ff !important; }
html[data-theme="dark"] .footer-bottom p,
html[data-theme="dark"] .footer-bottom-links a { color: #FFFFFF !important; }
html[data-theme="dark"] .footer-bottom-links a:hover { color: #0d0d1a !important; }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 700;
}

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  .hero-content { max-width: 100%; }
  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-content { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 80px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--transition-smooth);
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { right: 0; }
  .nav-cta { margin-left: 0; }
  .mobile-toggle { display: flex; }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,13,26, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
  }
  .mobile-overlay.active { opacity: 1; visibility: visible; }

  .hero { padding-top: 120px; padding-bottom: 80px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-stats { gap: 28px; flex-wrap: wrap; justify-content: center; }
  .hero-visual { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-filters { gap: 6px; }
  .filter-btn { padding: 8px 14px; font-size: 0.8rem; }
  .testimonial-card { padding: 36px 24px; }
  .testimonial-text { font-size: 1.05rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: center; gap: 22px; }
  .hero-stat { text-align: center; }
  .btn { padding: 10px 18px; font-size: 0.88rem; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
}

/* ===== Theme toggle switch ===== */
.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 58px;
  height: 28px;
  margin-left: 10px;
  padding: 0;
  background: rgba(99,91,255,0.12);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
  box-sizing: border-box;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--accent, var(--primary)); }
.theme-toggle .theme-toggle-sun,
.theme-toggle .theme-toggle-moon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  pointer-events: none;
  line-height: 1;
}
.theme-toggle .theme-toggle-sun  { left: 8px;  color: #F59E0B; }
.theme-toggle .theme-toggle-moon { right: 8px; color: #64748B; }
.theme-toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  transition: transform .28s cubic-bezier(.4,0,.2,1), background .25s;
  z-index: 2;
}
html[data-theme="dark"] .theme-toggle { background: rgba(0,212,255,0.22); border-color: rgba(0,212,255,0.5); }
html[data-theme="dark"] .theme-toggle .theme-toggle-sun  { color: #94A3B8; }
html[data-theme="dark"] .theme-toggle .theme-toggle-moon { color: #FBBF24; }
html[data-theme="dark"] .theme-toggle-knob { transform: translateX(30px); background: #0d0d1a; }

/* ===== Dark Mode overrides ===== */
html[data-theme="dark"] {
  --bg: #0d0d1a;
  --bg-muted: #0d0d1a;
  --bg-subtle: #0d0d1a;
  --text: #F1F5F9;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-subtle: #64748B;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --accent: #8B85FF;
  --accent-hover: #A5A0FF;
  --accent-subtle: rgba(139, 133, 255, 0.15);
  /* aliases */
  --surface: #0d0d1a;
  --surface-2: #0d0d1a;
  --primary: #8B85FF;
  --primary-dark: #A5A0FF;
  --ink: #0d0d1a;
  --paper: #F1F5F9;
  --signal: #8B85FF;
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-bg: rgba(15, 20, 32, 0.75);
  color-scheme: dark;
}
html[data-theme="dark"] body { background: var(--bg); color: var(--text); }
html[data-theme="dark"] .header { background: #0d0d1a !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; border-bottom-color: var(--border); }
html[data-theme="dark"] .header.scrolled { background: #0d0d1a !important; border-bottom-color: var(--border); }
html[data-theme="dark"] .btn-primary { color: #0d0d1a; }
html[data-theme="dark"] .grid-bg,
html[data-theme="dark"] .hero-grid-bg { opacity: 0.05; }

/* Surfaces */
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .portfolio-card,
html[data-theme="dark"] .testimonial-card,
html[data-theme="dark"] .why-us-card,
html[data-theme="dark"] .pricing-card,
html[data-theme="dark"] .stat-card,
html[data-theme="dark"] .hero-code-card,
html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .contact-info-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .process-step {
  background: var(--surface);
  border-color: var(--border);
}

/* Inputs */
html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--text);
}
html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder { color: var(--text-muted); }

/* Footer */
html[data-theme="dark"] .footer,
html[data-theme="dark"] footer {
  background: var(--bg-muted);
  border-top-color: var(--border);
  color: var(--text-secondary);
}

/* Filter buttons active — stay light accent on dark */
html[data-theme="dark"] .filter-btn.active {
  background: var(--accent);
  color: #0d0d1a;
  border-color: var(--accent);
}

/* Mobile menu */
html[data-theme="dark"] .nav-links { background: var(--bg-muted); }

/* Code card syntax colors still readable */
html[data-theme="dark"] .code-card-body .code-keyword { color: #F0ABFC; }
html[data-theme="dark"] .code-card-body .code-function { color: #93C5FD; }
html[data-theme="dark"] .code-card-body .code-string { color: #86EFAC; }
html[data-theme="dark"] .code-card-body .code-comment { color: #64748B; }

/* ================================================================
   TechStart Pro — visual upgrade layer
   Vibrant tech-SaaS aesthetic: gradient accents, pill CTAs,
   gradient icon squares, decorative orbs, softer bigger shadows.
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --ts-purple: #635BFF;
  --ts-indigo: #4F46E5;
  --ts-blue: #2563EB;
  --ts-cyan: #06B6D4;
  --ts-pink: #EC4899;
  --ts-orange: #F59E0B;
  --ts-grad: linear-gradient(135deg, #2563EB 0%, #7C3AED 50%, #E11D48 100%);
  --ts-grad-soft: linear-gradient(135deg, #DBEAFE 0%, #FCE7F3 100%);
  --ts-grad-pink: linear-gradient(135deg, #E11D48 0%, #7C3AED 100%);
  --ts-grad-cyan: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
  --ts-grad-orange: linear-gradient(135deg, #E11D48 0%, #F59E0B 100%);
  --ts-shadow-card: 0 10px 30px rgba(13,13,26, 0.06), 0 1px 2px rgba(13,13,26, 0.04);
  --ts-shadow-lift: 0 20px 50px rgba(99, 91, 255, 0.18);
  --ts-shadow-btn: 0 10px 30px rgba(99, 91, 255, 0.35);
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}
h1, h2, h3, h4, .hero-title, .section-title {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Hero — decorative gradient orbs */
.hero { position: relative; overflow: hidden; }
.hero-orb { display: block !important; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.45; pointer-events: none; z-index: 0; }
.hero-orb-1 { width: 500px; height: 500px; background: #2563EB; top: -150px; left: -150px; }
.hero-orb-2 { width: 420px; height: 420px; background: #E11D48; bottom: -160px; right: -120px; opacity: 0.32; }
.hero-orb-3 { width: 300px; height: 300px; background: #7C3AED; top: 40%; right: 15%; opacity: 0.22; }
.hero > .container { position: relative; z-index: 2; }

/* Hero title — gradient highlight */
.hero-title { font-size: clamp(2.4rem, 5.2vw, 4.2rem); line-height: 1.08; }
.hero-title .highlight {
  background: var(--ts-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Hero badge — gradient pill */
.hero-badge {
  background: var(--ts-grad-soft);
  border: 1px solid rgba(99, 91, 255, 0.2);
  color: var(--ts-indigo);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}
.hero-badge::before { background: var(--ts-grad); }

/* Stats numbers — gradient */
.hero-stat-number {
  background: var(--ts-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
}

/* Primary button — pill + gradient + glow */
.btn-primary,
.nav-cta,
a.btn-primary {
  background: var(--ts-grad) !important;
  border: none !important;
  border-radius: 999px !important;
  color: #fff !important;
  padding: 14px 28px;
  font-weight: 600;
  box-shadow: var(--ts-shadow-btn);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover,
.nav-cta:hover,
a.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(99, 91, 255, 0.45);
}

/* Outline button — pill, clean */
.btn-outline {
  border-radius: 999px !important;
  border: 1.5px solid var(--border-strong) !important;
  padding: 13px 26px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  border-color: var(--ts-purple) !important;
  color: var(--ts-purple) !important;
  background: var(--accent-subtle);
}

/* Section badges */
.section-badge,
.section-header .badge,
.section-header .section-label,
.section-label,
.section-tag {
  display: inline-block;
  background: var(--ts-grad-soft);
  color: var(--ts-indigo);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Cards — bigger radius, softer bigger shadow, lift on hover */
.service-card,
.portfolio-card,
.testimonial-card,
.why-us-card,
.pricing-card,
.faq-item,
.process-step {
  border-radius: 20px !important;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--ts-shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover,
.portfolio-card:hover,
.testimonial-card:hover,
.why-us-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ts-shadow-lift);
  border-color: rgba(99, 91, 255, 0.25);
}

/* Service icons — gradient-filled rounded squares (rotating palette) */
.service-card .service-icon,
.why-us-card .why-icon,
.why-us-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff !important;
  background: var(--ts-grad);
  box-shadow: 0 8px 24px rgba(99, 91, 255, 0.3);
  margin-bottom: 20px;
}
.service-card:nth-child(2n) .service-icon { background: var(--ts-grad-pink); box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3); }
.service-card:nth-child(3n) .service-icon { background: var(--ts-grad-cyan); box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3); }
.service-card:nth-child(4n) .service-icon { background: var(--ts-grad-orange); box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3); }

/* Header — dark glass */
.header {
  background: rgba(13,13,26, 0.85) !important;
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header.scrolled { background: rgba(13,13,26, 0.95) !important; }
.header .logo-text,
.header .nav-links a { color: #F1F5F9; }
.header .nav-links a:hover,
.header .nav-links a.active { color: #00d4ff; }
.header .mobile-toggle span { background: #F1F5F9; }
.header .theme-toggle {
  border-color: rgba(255, 255, 255, 0.18);
  color: #CBD5E1;
}
.header .theme-toggle:hover {
  border-color: #A5A0FF;
  color: #A5A0FF;
}

/* Logo dot gradient */
.logo-dot {
  background: var(--ts-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Contact / CTA — gradient banner feel */
.contact-form,
.contact-info-card {
  border-radius: 24px !important;
  box-shadow: var(--ts-shadow-card);
}

/* Filter buttons — pill */
.filter-btn {
  border-radius: 999px !important;
  padding: 8px 18px;
  font-weight: 600;
}
.filter-btn.active {
  background: var(--ts-grad) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 20px rgba(99, 91, 255, 0.3);
}

/* Portfolio card — rounded image + overlay polish */
.portfolio-card { overflow: hidden; }
.portfolio-card img { transition: transform 0.5s ease; }
.portfolio-card:hover img { transform: scale(1.05); }
.portfolio-tag {
  background: var(--ts-grad);
  color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 600;
  font-size: 0.72rem;
}

/* Back to top — gradient circle */
.back-to-top {
  background: var(--ts-grad) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: var(--ts-shadow-btn);
  border-radius: 50%;
}

/* Theme toggle — more prominent */
.theme-toggle { border-radius: 999px; }

/* Section title — bigger, tighter */
.section-title { font-size: clamp(2rem, 4vw, 3rem); }
.section-subtitle { font-size: 1.05rem; color: var(--text-secondary); max-width: 640px; margin-inline: auto; }

/* Dark-theme pairing — swap gradients to brighter hues on dark */
html[data-theme="dark"] {
  --ts-grad: linear-gradient(135deg, #8B85FF 0%, #6366F1 50%, #60A5FA 100%);
  --ts-grad-soft: linear-gradient(135deg, rgba(139,133,255,0.18) 0%, rgba(96,165,250,0.12) 100%);
  --ts-shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
  --ts-shadow-lift: 0 20px 50px rgba(139, 133, 255, 0.25);
  --ts-shadow-btn: 0 10px 30px rgba(139, 133, 255, 0.35);
}
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .portfolio-card,
html[data-theme="dark"] .testimonial-card,
html[data-theme="dark"] .why-us-card,
html[data-theme="dark"] .pricing-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .process-step { background: var(--surface); }
html[data-theme="dark"] .hero-badge { background: var(--ts-grad-soft); color: #C7D2FE; border-color: rgba(139,133,255,0.3); }
html[data-theme="dark"] .btn-outline { border-color: rgba(255,255,255,0.2) !important; color: var(--text) !important; }
html[data-theme="dark"] .btn-outline:hover { background: rgba(139,133,255,0.1); border-color: #8B85FF !important; color: #8B85FF !important; }
html[data-theme="dark"] .btn-primary { color: #fff !important; }

@media (max-width: 768px) {
  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2, .hero-orb-3 { width: 240px; height: 240px; }
  .service-card .service-icon { width: 56px; height: 56px; border-radius: 16px; }
}
