/* ============================================================
   InnovateReach — Premium Website CSS
   Breaking Boundaries, Driving Innovation
   ============================================================ */

/* ── Google Fonts are loaded via <link> in HTML ── */

/* ============================================================
   CSS CUSTOM PROPERTIES (TOKENS)
   ============================================================ */
:root {
  /* Brand Colors */
  --brand-orange:      #FF6B1A;
  --brand-orange-dark: #E05010;
  --brand-orange-glow: rgba(255, 107, 26, 0.35);
  --brand-orange-soft: rgba(255, 107, 26, 0.12);

  /* Light Mode Palette */
  --bg:          #FAFAFA;
  --bg-alt:      #F2F2F5;
  --bg-card:     #FFFFFF;
  --text-primary: #0D0D0F;
  --text-secondary: #3C3C44;
  --text-muted:  #8888A0;
  --border:      rgba(0, 0, 0, 0.09);
  --border-hover: rgba(0, 0, 0, 0.18);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.13);
  --shadow-glow: 0 0 40px var(--brand-orange-glow);

  /* Typography */
  --font-primary:  'Outfit', 'Space Grotesk', system-ui, sans-serif;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-mono:     'Space Grotesk', monospace;

  /* Spacing */
  --section-py:  120px;
  --container:   1280px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --t-fast:      0.2s;
  --t-mid:       0.45s;
  --t-slow:      0.75s;

  /* Nav */
  --nav-bg:      rgba(250, 250, 250, 0.85);
  --nav-h:       76px;
}

[data-theme="dark"] {
  --bg:          #0A0A0F;
  --bg-alt:      #111118;
  --bg-card:     #17171F;
  --text-primary: #F0F0F8;
  --text-secondary: #AAAABB;
  --text-muted:  #666677;
  --border:      rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.5);
  --nav-bg:      rgba(10, 10, 15, 0.85);
}

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

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

body {
  font-family: var(--font-primary);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background var(--t-mid) var(--ease-out), color var(--t-mid) var(--ease-out);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
select, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
em { font-style: italic; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  width: 12px; height: 12px;
  background: var(--brand-orange);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s, width 0.3s var(--ease-out), height 0.3s var(--ease-out);
  mix-blend-mode: normal;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--brand-orange);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: top 0.15s var(--ease-out), left 0.15s var(--ease-out), width 0.35s var(--ease-out), height 0.35s var(--ease-out), opacity 0.3s;
  opacity: 0.6;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 20px; height: 20px; }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 56px; height: 56px; opacity: 0.3; }

/* ============================================================
   PAGE LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo img { width: 200px; margin: 0 auto 32px; animation: loaderPulse 1.5s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(0.97); } }
.loader-bar-wrap {
  width: 220px; height: 3px;
  background: var(--border);
  border-radius: 9px;
  margin: 0 auto 20px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-orange), #FF9F55);
  border-radius: 9px;
  transition: width 0.3s var(--ease-out);
}
.loader-text {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-mid), background var(--t-mid), box-shadow var(--t-mid);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 44px; width: auto; transition: opacity var(--t-fast); }
.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--brand-orange);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--t-mid) var(--ease-out);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 60%; }
.nav-link.nav-cta {
  background: var(--brand-orange);
  color: #fff;
  padding: 9px 22px;
  border-radius: 10px;
  font-weight: 600;
  margin-left: 8px;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--brand-orange-glow);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Theme Toggle */
.theme-toggle {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover { background: var(--brand-orange-soft); color: var(--brand-orange); transform: rotate(15deg); }
.theme-icon { position: absolute; transition: opacity var(--t-mid), transform var(--t-mid); }
.sun-icon { opacity: 1; transform: rotate(0); }
.moon-icon { opacity: 0; transform: rotate(-90deg); }
[data-theme="dark"] .sun-icon { opacity: 0; transform: rotate(90deg); }
[data-theme="dark"] .moon-icon { opacity: 1; transform: rotate(0); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--t-mid) var(--ease-out), opacity var(--t-mid);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 20px 40px 28px;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--t-mid) var(--ease-out), opacity var(--t-mid);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 10px;
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-nav-link:hover { background: var(--brand-orange-soft); color: var(--brand-orange); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: var(--brand-orange-soft);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 107, 26, 0.2);
  margin-bottom: 20px;
}
.section-tag.light {
  color: rgba(255, 107, 26, 0.9);
  background: rgba(255, 107, 26, 0.15);
  border-color: rgba(255, 107, 26, 0.25);
}
.section-title {
  font-family: var(--font-primary);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-orange);
}
.section-title.light { color: #F0F0F8; }
.section-lead {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}
.section-lead.light { color: rgba(240, 240, 248, 0.75); }
.section-header.centered { text-align: center; margin-bottom: 64px; }
.section-header.centered .section-lead { margin: 0 auto; }
.body-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.body-text.light { color: rgba(240, 240, 248, 0.75); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: 0 4px 16px var(--brand-orange-glow);
}
.btn-primary:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--brand-orange-glow);
}
.btn-primary:active { transform: translateY(0); }
.btn-glow { animation: btnGlowPulse 3s ease-in-out infinite; }
@keyframes btnGlowPulse {
  0%,100% { box-shadow: 0 4px 16px var(--brand-orange-glow); }
  50% { box-shadow: 0 4px 32px rgba(255,107,26,0.55); }
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform var(--t-mid) var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Data AOS */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos].animated {
  opacity: 1;
  transform: translate(0);
}



/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0A0A0F;
}
[data-theme="light"] .hero { background: #080B16; }

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#heroCanvas { width: 100%; height: 100%; }

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(255,107,26,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,107,26,0.07) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8,11,22,0.3) 0%, rgba(8,11,22,0.85) 100%);
}

/* Floating Cards */
.hero-3d-elements { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatCard 5s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.float-card-1 { top: 22%; right: 8%; animation-delay: 0s; }
.float-card-2 { bottom: 28%; right: 12%; animation-delay: 1.5s; }
.float-card-3 { top: 35%; left: 6%; animation-delay: 0.8s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(0.8deg); }
  66% { transform: translateY(-5px) rotate(-0.4deg); }
}
.fc-icon { font-size: 26px; }
.fc-text { display: flex; flex-direction: column; gap: 2px; }
.fc-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.fc-val { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,26,0.25) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(255,107,26,0.15) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation-delay: 3s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(120, 60, 255, 0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 880px;
  padding: 0 24px;
  padding-top: var(--nav-h);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,26,0.12);
  border: 1px solid rgba(255,107,26,0.3);
  color: #FFB380;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInDown 0.8s var(--ease-out) 0.5s forwards;
}
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.badge-dot {
  width: 8px; height: 8px;
  background: var(--brand-orange);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.hero-headline {
  display: flex;
  flex-direction: column;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 28px;
}
.hl-line { display: block; opacity: 0; }
.hl-line-1 { animation: slideUp 0.9s var(--ease-out) 0.8s forwards; }
.hl-line-2 { animation: slideUp 0.9s var(--ease-out) 1.0s forwards; }
.hl-line-3 { animation: slideUp 0.9s var(--ease-out) 1.2s forwards; }
@keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
.hl-accent {
  color: var(--brand-orange);
  text-shadow: 0 0 60px rgba(255,107,26,0.5);
}

/* Word Rotate */
.word-rotate { display: inline-block; position: relative; }

.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.68);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeIn 0.9s var(--ease-out) 1.5s forwards;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.9s var(--ease-out) 1.7s forwards;
}

/* Scroll Hint */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.9s var(--ease-out) 2.2s forwards;
}
.scroll-mouse {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--brand-orange);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: 0.3; } }

/* Marquee */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  overflow: hidden;
  background: rgba(255,107,26,0.1);
  border-top: 1px solid rgba(255,107,26,0.2);
  padding: 14px 0;
  backdrop-filter: blur(4px);
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0 28px;
}
.marquee-inner .sep { color: var(--brand-orange); padding: 0; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left .section-tag,
.about-left .section-title,
.about-left .body-text { margin-bottom: 20px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-sym { font-size: 28px; font-weight: 900; color: var(--brand-orange); display: inline; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-top: 6px; }

.about-right { }
.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.about-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transition: transform var(--t-slow) var(--ease-out);
}
.about-img-wrap:hover .about-img { transform: scale(1.02); }
.about-badge-float {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  animation: floatCard 6s ease-in-out infinite;
}
.abf-icon { font-size: 30px; }
.about-badge-float strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-primary); }
.about-badge-float span { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.services-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.04;
}
[data-theme="dark"] .services-bg img { opacity: 0.06; }
.services-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, transparent 30%, transparent 70%, var(--bg-alt) 100%);
}
.services .container { position: relative; z-index: 1; }

/* Horizontal Scroll Services */
.services-h-scroll-wrap { position: relative; }
.services-h-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scroll-snap-type: x mandatory;
  scroll-padding: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
}
.services-h-scroll:active { cursor: grabbing; }
.services-h-scroll::-webkit-scrollbar { display: none; }

.service-card {
  flex: 0 0 380px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  scroll-snap-align: start;
  transition: transform var(--t-mid) var(--ease-out), border-color var(--t-mid), box-shadow var(--t-mid);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-orange-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-mid);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(255,107,26,0.3); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }

.sc-icon {
  width: 64px; height: 64px;
  background: var(--brand-orange-soft);
  border: 1px solid rgba(255,107,26,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  margin-bottom: 20px;
  transition: background var(--t-mid), transform var(--t-mid);
}
.service-card:hover .sc-icon { background: var(--brand-orange); color: #fff; transform: scale(1.05); }
.sc-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.sc-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.sc-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.sc-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.sc-features li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}
.sc-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 8px; height: 2px;
  background: var(--brand-orange);
  border-radius: 1px;
}
.sc-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  transition: gap var(--t-mid) var(--ease-out);
}
.sc-link:hover { gap: 10px; }

.h-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.why-us .section-header { margin-bottom: 64px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform var(--t-mid) var(--ease-out), border-color var(--t-mid), box-shadow var(--t-mid);
  position: relative;
  overflow: hidden;
}
.why-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), #FF9F55);
  transition: width var(--t-mid) var(--ease-out);
  border-radius: 3px;
}
.why-item:hover { transform: translateY(-6px); border-color: rgba(255,107,26,0.2); box-shadow: var(--shadow-md); }
.why-item:hover::after { width: 100%; }
.why-icon {
  width: 52px; height: 52px;
  background: var(--brand-orange-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  margin-bottom: 20px;
  transition: background var(--t-mid), transform var(--t-mid);
}
.why-item:hover .why-icon { background: var(--brand-orange); color: #fff; transform: scale(1.08) rotate(5deg); }
.why-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.why-item p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.portfolio-item { border-radius: 20px; overflow: hidden; }
.pi-large { grid-row: span 2; }
.pi-img-wrap { position: relative; overflow: hidden; height: 100%; }
.pi-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.portfolio-item:hover .pi-img-wrap img { transform: scale(1.06); }
.pi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,11,22,0.95) 0%, rgba(8,11,22,0.3) 55%, transparent 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: opacity var(--t-mid) var(--ease-out);
}
.portfolio-item:hover .pi-overlay { opacity: 1; }
.pi-info { transform: translateY(16px); transition: transform var(--t-mid) var(--ease-out); }
.portfolio-item:hover .pi-info { transform: translateY(0); }
.pi-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-orange);
  display: block;
  margin-bottom: 8px;
}
.pi-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}
.pi-result {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.pi-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color var(--t-fast), border-color var(--t-fast), gap var(--t-mid) var(--ease-out);
}
.pi-cta:hover { color: var(--brand-orange); border-color: var(--brand-orange); gap: 10px; }

/* Placeholder for portfolio items without image loaded */
.pi-img-wrap:not(:has(img[src])) {
  background: var(--bg-alt);
  min-height: 300px;
}

.portfolio-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  transition: background var(--t-mid) var(--ease-out);
}
[data-theme="dark"] .process { background: #0C0C14; }
.process-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.process-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.04; }
[data-theme="dark"] .process-bg img { opacity: 0.08; }
.process-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,107,26,0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-alt) 0%, transparent 30%, transparent 70%, var(--bg-alt) 100%);
}
[data-theme="dark"] .process-bg-overlay {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,107,26,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0C0C14 0%, transparent 30%, transparent 70%, #0C0C14 100%);
}
.process .container { position: relative; z-index: 1; }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 34px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-orange) 0%, rgba(255,107,26,0.1) 100%);
}
.process-step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.ps-num {
  flex-shrink: 0;
  width: 70px; height: 70px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(255,107,26,0.15), 0 0 30px rgba(255,107,26,0.3);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid);
}
.process-step:hover .ps-num { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255,107,26,0.12), 0 0 40px rgba(255,107,26,0.4); }
.ps-content { flex: 1; padding-top: 12px; }
.ps-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
[data-theme="dark"] .ps-title { color: #F0F0F8; }
.ps-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
[data-theme="dark"] .ps-desc { color: rgba(240,240,248,0.65); }
.ps-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.ps-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
[data-theme="dark"] .ps-list li { color: rgba(240,240,248,0.55); }
.ps-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 2px;
  background: var(--brand-orange);
  border-radius: 1px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--bg);
  overflow: hidden;
}
.testimonials-slider { position: relative; }
.tslider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease-out);
}
.t-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease-out), border-color var(--t-mid), box-shadow var(--t-mid);
}
.t-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 24px;
  font-family: var(--font-serif);
  font-size: 120px;
  color: var(--brand-orange);
  opacity: 0.08;
  line-height: 1;
}
.t-card:hover { transform: translateY(-6px); border-color: rgba(255,107,26,0.2); box-shadow: var(--shadow-md); }
.t-stars { font-size: 16px; color: #FFB800; margin-bottom: 16px; letter-spacing: 2px; }
.t-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 48px; height: 48px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 700; color: var(--text-primary); display: block; margin-bottom: 2px; font-style: normal; }
.t-role { font-size: 12px; color: var(--text-muted); }

.tslider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.tslider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
}
.tslider-btn:hover { background: var(--brand-orange); border-color: var(--brand-orange); color: #fff; }
.tslider-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--t-mid) var(--ease-out);
  border: none;
}
.t-dot.active { background: var(--brand-orange); width: 24px; border-radius: 4px; }

/* Trusted By */
.trusted-by { text-align: center; margin-top: 72px; padding-top: 48px; border-top: 1px solid var(--border); }
.trusted-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px; }
.trusted-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 28px; }
.tl-item { font-size: 16px; font-weight: 700; color: var(--text-muted); transition: color var(--t-fast); opacity: 0.65; }
.tl-item:hover { color: var(--brand-orange); opacity: 1; }
.tl-sep { color: var(--border); font-size: 20px; }

/* ============================================================
   SEO CONTENT SECTION
   ============================================================ */
.seo-content {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.seo-col-main .section-tag,
.seo-col-main .section-title { margin-bottom: 20px; }
.seo-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.seo-block:last-child { border-bottom: none; margin-bottom: 0; }
.seo-block h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.35;
}
.seo-block p {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.seo-block p:last-child { margin-bottom: 0; }

/* Side Widgets */
.seo-col-side { position: sticky; top: calc(var(--nav-h) + 32px); display: flex; flex-direction: column; gap: 24px; }
.side-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.side-widget h4 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.expertise-list { display: flex; flex-direction: column; gap: 10px; }
.expertise-list li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast);
}
.expertise-list li:last-child { border-bottom: none; }
.expertise-list li:hover { color: var(--brand-orange); }
.expertise-list li span { color: var(--brand-orange); font-size: 12px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all var(--t-fast);
}
.tech-tag:hover { background: var(--brand-orange-soft); border-color: rgba(255,107,26,0.3); color: var(--brand-orange); }
.highlight-widget {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #FF9F55 100%);
  border-color: transparent;
  text-align: center;
}
.highlight-widget .hw-icon { font-size: 32px; margin-bottom: 12px; }
.highlight-widget h4 { color: #fff; }
.highlight-widget p { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.highlight-widget .btn-primary { background: #fff; color: var(--brand-orange); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.highlight-widget .btn-primary:hover { background: #F0F0F0; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: var(--section-py) 0;
  background: #0C0C14;
  position: relative;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(255,107,26,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 0%, rgba(255,107,26,0.08) 0%, transparent 60%);
}
.contact .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-left { padding-top: 20px; }
.contact-left .section-tag { margin-bottom: 20px; }
.contact-left .section-title { margin-bottom: 20px; }
.contact-left .body-text { margin-bottom: 40px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-item { display: flex; align-items: center; gap: 16px; }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(255,107,26,0.15);
  border: 1px solid rgba(255,107,26,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  flex-shrink: 0;
}
.ci-text { font-size: 15px; color: rgba(240,240,248,0.75); }
.ci-item a.ci-text:hover { color: var(--brand-orange); }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(16px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(240,240,248,0.7);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 13px 16px;
  color: #F0F0F8;
  font-size: 15px;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  width: 100%;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,240,248,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-orange);
  background: rgba(255,107,26,0.06);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.12);
}
.form-group select option { background: #1A1A28; color: #F0F0F8; }
.form-success {
  margin-top: 16px;
  text-align: center;
  font-size: 15px;
  color: #6AEDAA;
  font-weight: 500;
}
.form-success[hidden] { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #070710;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { }
.footer-brand img { height: 44px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--t-fast);
}
.social-link:hover { background: var(--brand-orange); border-color: var(--brand-orange); color: #fff; }
.footer-link-title { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-link-list { display: flex; flex-direction: column; gap: 12px; }
.footer-link-list li a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-link-list li a:hover { color: rgba(255,255,255,0.85); padding-left: 4px; }
.footer-bottom {
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-sub { font-size: 12px; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 40px; right: 40px;
  width: 52px; height: 52px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px var(--brand-orange-glow);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-mid), transform var(--t-mid), background var(--t-fast), box-shadow var(--t-fast);
  pointer-events: none;
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { background: var(--brand-orange-dark); box-shadow: 0 8px 32px var(--brand-orange-glow); transform: translateY(-4px); }

/* ============================================================
   SECTION TRANSITIONS / PARALLAX EFFECTS
   ============================================================ */
.parallax-section { will-change: transform; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .about-grid { gap: 48px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-grid { grid-template-columns: 1fr 300px; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-right { order: -1; }
  .about-img { max-height: 380px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .pi-large { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .seo-grid { grid-template-columns: 1fr; }
  .seo-col-side { position: static; }
  .tslider-track { overflow: hidden; }
  .t-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; --nav-h: 68px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-container { padding: 0 20px; }
  .hero-content { padding: 0 20px; padding-top: var(--nav-h); }
  .hero-headline { font-size: clamp(42px, 12vw, 72px); }
  .float-card-1 { top: 18%; right: 4%; }
  .float-card-2 { display: none; }
  .float-card-3 { display: none; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .service-card { flex: 0 0 300px; padding: 28px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .pi-large { grid-row: auto; }
  .process-steps::before { left: 28px; }
  .ps-num { width: 58px; height: 58px; font-size: 12px; }
  .process-step { gap: 24px; }
  .ps-list { grid-template-columns: 1fr; }
  .t-card { flex: 0 0 100%; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .scroll-top { bottom: 20px; right: 20px; width: 46px; height: 46px; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(36px, 13vw, 56px); }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 320px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .service-card { flex: 0 0 280px; }
}

/* ============================================================
   DARK MODE SPECIFICS
   ============================================================ */
[data-theme="dark"] .about-img-wrap .about-badge-float {
  background: #1A1A28;
}
[data-theme="dark"] .services { background: #0D0D16; }
[data-theme="dark"] .portfolio { background: #0D0D16; }
[data-theme="dark"] .seo-content { background: #0D0D16; }
[data-theme="dark"] .testimonials { background: #0A0A12; }
[data-theme="dark"] .about-strip { background: #0A0A12; }
[data-theme="dark"] .why-us { background: #0A0A12; }
[data-theme="dark"] .footer-brand img { opacity: 1; }
