:root {
  --orange: #F46B1B;
  --orange-light: #FF8C42;
  --orange-deep: #D4520A;
  --orange-pale: #FFF0E6;
  --black: #0E0E0E;
  --dark: #1A1A1A;
  --gray: #6B6B6B;
  --light-gray: #F5F5F3;
  --white: #FAFAF8;
  --border: #E8E4DF;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--orange); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease; mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 1.5px solid var(--orange); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: transform 0.4s ease, width 0.3s, height 0.3s; mix-blend-mode: multiply;
}
.cursor-ring.expanded { width: 70px; height: 70px; border-color: var(--orange-light); }

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform-origin: left; transform: scaleX(0); z-index: 2000;
}

/* BACK TO TOP */
.back-top {
  position: fixed; bottom: 40px; right: 40px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: none;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  z-index: 999; text-decoration: none;
  box-shadow: 0 8px 24px rgba(244,107,27,0.4);
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--orange-deep); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo img { height: 38px; }
.nav-logo-text {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: var(--black); letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--dark);
  text-decoration: none; letter-spacing: 0.01em; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--orange); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--black); color: var(--white) !important;
  padding: 10px 24px; border-radius: 100px; font-weight: 500 !important;
  transition: background 0.3s ease, transform 0.2s ease !important;
}
.nav-cta:hover { background: var(--orange) !important; transform: scale(1.03); }
.nav-cta::after { display: none !important; }

/* BREADCRUMB */
.breadcrumb-bar {
  margin-top: 80px;
  padding: 14px 48px;
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray);
}
.breadcrumb-bar a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.breadcrumb-bar a:hover { color: var(--orange); }
.breadcrumb-bar .sep { color: var(--border); }
.breadcrumb-bar .current { color: var(--orange); font-weight: 500; }

/* ——— SERVICE HERO ——— */
.service-hero {
  padding: 80px 48px 100px;
  position: relative; overflow: hidden;
  background: var(--white);
}
.service-hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px; opacity: 0.4;
}
.service-hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(244,107,27,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.service-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1300px;
}
.service-hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.service-hero-label::before { content: ''; width: 24px; height: 1.5px; background: var(--orange); }
.service-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -2.5px; color: var(--black);
  margin-bottom: 24px;
}
.service-hero-title .accent { color: var(--orange); }
.service-hero-sub {
  font-size: 18px; font-weight: 300; color: var(--gray);
  line-height: 1.7; max-width: 500px; margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: white;
  padding: 16px 36px; border-radius: 100px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(244,107,27,0.3);
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(244,107,27,0.4); }
.btn-secondary {
  color: var(--black); font-size: 15px; font-weight: 500;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1.5px solid var(--black); padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-secondary:hover { color: var(--orange); border-color: var(--orange); }

/* Hero Right — Visual */
.service-hero-visual {
  position: relative; height: 500px;
  border-radius: 28px; overflow: hidden;
  background: var(--light-gray);
  opacity: 0; transform: translateX(40px);
}
.hero-visual-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
}
/* Fake browser mockup */
.browser-mock {
  width: 88%; background: white; border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
  overflow: hidden;
}
.browser-bar {
  background: #F0EDE8; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #FF5F57; }
.browser-dot:nth-child(2) { background: #FEBC2E; }
.browser-dot:nth-child(3) { background: #28C840; }
.browser-url {
  flex: 1; background: white; border-radius: 6px;
  padding: 4px 10px; font-size: 11px; color: var(--gray);
  font-family: var(--font-body); margin-left: 8px;
}
.browser-body { padding: 20px; }
.browser-hero-block {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-radius: 10px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-display); font-size: 16px; font-weight: 700;
  margin-bottom: 14px;
}
.browser-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.browser-card { background: var(--light-gray); border-radius: 8px; height: 50px; }
.browser-card:nth-child(2) { background: var(--orange-pale); }
.browser-text-lines { display: flex; flex-direction: column; gap: 6px; }
.browser-line { background: var(--light-gray); border-radius: 4px; height: 8px; }
.browser-line:nth-child(1) { width: 90%; }
.browser-line:nth-child(2) { width: 75%; }
.browser-line:nth-child(3) { width: 60%; }

/* Floating chips on visual */
.hero-visual-chips {
  position: absolute; bottom: 24px; left: 20px; right: 20px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero-chip {
  background: white; border-radius: 100px; padding: 7px 14px;
  font-size: 12px; font-weight: 500; color: var(--dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 6px;
  animation: floatChip 3s ease-in-out infinite;
}
.hero-chip:nth-child(2) { animation-delay: 0.5s; }
.hero-chip:nth-child(3) { animation-delay: 1s; }
.hero-chip:nth-child(4) { animation-delay: 1.5s; }
.hero-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Hero stats strip */
.hero-stats-strip {
  margin-top: 48px; display: flex; gap: 0;
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; background: white;
  opacity: 0;
}
.hstat {
  flex: 1; padding: 24px 28px;
  border-right: 1px solid var(--border);
  position: relative;
}
.hstat:last-child { border-right: none; }
.hstat-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 800;
  color: var(--black); line-height: 1;
}
.hstat-num span { color: var(--orange); }
.hstat-label { font-size: 13px; color: var(--gray); margin-top: 4px; }

/* MARQUEE */
.marquee-section {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 18px 0;
  background: var(--light-gray);
}
.marquee-track {
  display: flex; gap: 0; animation: marquee 25s linear infinite; width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 16px; padding: 0 32px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); white-space: nowrap;
}
.marquee-item .sep { color: var(--orange); font-size: 18px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* COMMON SECTION STYLES */
section { padding: 100px 48px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.section-label::before { content: ''; width: 24px; height: 1.5px; background: var(--orange); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; line-height: 1.0; letter-spacing: -1.5px;
  color: var(--black); margin-bottom: 20px;
}
.section-title .accent { color: var(--orange); }
.section-sub {
  font-size: 17px; font-weight: 300; color: var(--gray);
  line-height: 1.7; max-width: 560px;
}

/* ——— WHAT WE BUILD / OFFER ——— */
.what-we-build, .what-we-offer { background: var(--light-gray); }
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 56px;
}
.build-card {
  background: white; border-radius: 20px; padding: 36px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s;
  opacity: 0; transform: translateY(40px);
}
.build-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  border-color: var(--orange);
}
.build-card.featured {
  background: var(--black); border-color: var(--black); color: white;
}
.build-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 24px;
}
.build-card.featured .build-icon { background: rgba(244,107,27,0.2); }
.build-card h3 {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 700; margin-bottom: 12px;
}
.build-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.build-card.featured p { color: rgba(255,255,255,0.65); }
.build-tag {
  position: absolute; top: 24px; right: 24px;
  background: var(--orange-pale); color: var(--orange-deep);
  border-radius: 100px; padding: 4px 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
}
.build-card.featured .build-tag { background: rgba(244,107,27,0.25); color: var(--orange-light); }
.build-list {
  margin-top: 16px; display: flex; flex-direction: column; gap: 8px;
}
.build-list-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray);
}
.build-card.featured .build-list-item { color: rgba(255,255,255,0.6); }
.build-list-item::before {
  content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0;
}

/* ——— TECH STACK ——— */
.tech-stack { background: var(--white); }
.tech-header { margin-bottom: 56px; }
.tech-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.tech-category {
  background: var(--light-gray); border-radius: 20px;
  padding: 32px; opacity: 0; transform: translateY(30px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tech-category:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.07); }
.tech-cat-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.tech-cat-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  margin-bottom: 20px; color: var(--black);
}
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag {
  background: white; border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 12px;
  font-size: 12px; font-weight: 500; color: var(--dark);
  transition: border-color 0.3s, background 0.3s;
}
.tech-tag:hover { border-color: var(--orange); background: var(--orange-pale); }

/* ——— PROCESS ——— */
.process { background: var(--light-gray); }
.process-steps {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; margin-top: 56px;
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
.process-step {
  padding: 36px 28px; border-right: 1px solid var(--border);
  position: relative; background: white;
  opacity: 0; transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--orange-pale); }
.step-num {
  font-family: var(--font-display); font-size: 42px; font-weight: 800;
  color: var(--orange); opacity: 0.2; line-height: 1; margin-bottom: 14px;
}
.step-icon { font-size: 24px; margin-bottom: 12px; }
.step-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ——— AI EDGE ——— */
.ai-edge { background: var(--white); position: relative; overflow: hidden; }
.ai-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 20px;
}
.ai-visual {
  position: relative; height: 480px; border-radius: 24px;
  overflow: hidden; background: var(--black);
  opacity: 0; transform: translateX(-40px);
}
.ai-visual-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px;
}
.ai-orb {
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--orange-light), var(--orange-deep));
  box-shadow: 0 0 80px rgba(244,107,27,0.5);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.ai-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ai-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(244,107,27,0.2);
  animation: expand 4s ease-in-out infinite;
}
.ai-ring:nth-child(1) { width: 200px; height: 200px; }
.ai-ring:nth-child(2) { width: 290px; height: 290px; animation-delay: 0.5s; }
.ai-ring:nth-child(3) { width: 380px; height: 380px; animation-delay: 1s; }
@keyframes expand { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.04); } }
.ai-bottom-chips {
  position: absolute; bottom: 24px; left: 20px; right: 20px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ai-chip {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 6px 14px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.8);
  display: flex; align-items: center; gap: 6px;
}
.ai-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.ai-text-content { opacity: 0; transform: translateX(40px); }
.ai-features { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.ai-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: 16px;
  border: 1px solid var(--border); transition: border-color 0.3s, background 0.3s;
}
.ai-feature:hover { border-color: var(--orange); background: var(--orange-pale); }
.ai-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px; background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.ai-feature h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.ai-feature p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ——— PORTFOLIO ——— */
.portfolio { background: var(--light-gray); overflow: hidden; }
.portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.portfolio-track-wrap { overflow: hidden; position: relative; }
.portfolio-track {
  display: flex; gap: 24px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); will-change: transform;
}
.portfolio-card {
  min-width: 380px; border-radius: 20px; overflow: hidden;
  background: white; flex-shrink: 0;
  opacity: 0; box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.portfolio-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.12); transform: translateY(-4px); }
.portfolio-img {
  height: 240px; background: var(--light-gray);
  position: relative; overflow: hidden;
}
.portfolio-img-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; font-size: 60px;
}
.portfolio-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-card:hover .portfolio-img-overlay { opacity: 0.9; }
.portfolio-img-overlay span {
  color: white; font-family: var(--font-display);
  font-size: 18px; font-weight: 700; letter-spacing: -0.5px;
}
.portfolio-info { padding: 24px; }
.portfolio-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.portfolio-tag {
  background: var(--orange-pale); color: var(--orange-deep);
  border-radius: 100px; padding: 3px 10px; font-size: 11px; font-weight: 600;
}
.portfolio-info h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.portfolio-info p { font-size: 13px; color: var(--gray); }
.slider-controls { display: flex; gap: 10px; }
.slider-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--border); background: white;
  cursor: none; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--dark);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.slider-btn:hover { background: var(--orange); border-color: var(--orange); color: white; }

/* ——— REGIONS ——— */
.regions { background: var(--black); color: white; }
.regions .section-label { color: var(--orange-light); }
.regions .section-label::before { background: var(--orange-light); }
.regions .section-title { color: white; }
.regions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.region-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 40px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
  opacity: 0; transform: translateY(30px);
}
.region-card:hover { border-color: var(--orange); background: rgba(244,107,27,0.04); }
.region-flag { font-size: 48px; margin-bottom: 20px; display: block; }
.region-card h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 800;
  margin-bottom: 8px; color: white;
}
.region-card h4 { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 20px; font-weight: 400; }
.region-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }
.region-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.region-city {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; padding: 4px 12px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.region-glow {
  position: absolute; top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(244,107,27,0.12), transparent 70%);
  pointer-events: none;
}

/* ——— PRICING ——— */
.pricing { background: var(--white); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px; align-items: start;
}
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: 24px; padding: 40px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0; transform: translateY(30px);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.08); border-color: var(--orange); }
.pricing-card.featured {
  background: var(--black); border-color: var(--orange);
  color: white; transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.pricing-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white;
  padding: 5px 20px; border-radius: 0 0 12px 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.pricing-name {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display); font-size: 48px; font-weight: 800;
  line-height: 1; color: var(--black); margin-bottom: 4px;
}
.pricing-card.featured .pricing-price { color: white; }
.pricing-price span { font-size: 20px; font-weight: 400; color: var(--gray); }
.pricing-card.featured .pricing-price span { color: rgba(255,255,255,0.5); }
.pricing-price-sub { font-size: 13px; color: var(--gray); margin-bottom: 28px; }
.pricing-card.featured .pricing-price-sub { color: rgba(255,255,255,0.4); }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--dark);
}
.pricing-card.featured .pricing-feat { color: rgba(255,255,255,0.75); }
.pricing-feat-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.pricing-card.featured .pricing-feat-check { background: rgba(244,107,27,0.3); color: var(--orange-light); }
.btn-pricing {
  width: 100%; background: var(--black); color: white;
  padding: 15px; border-radius: 12px; border: none;
  font-size: 15px; font-weight: 600; font-family: var(--font-body);
  cursor: none; transition: background 0.3s, transform 0.2s;
  text-decoration: none; display: block; text-align: center;
}
.btn-pricing:hover { background: var(--orange); transform: translateY(-1px); }
.pricing-card.featured .btn-pricing { background: var(--orange); }
.pricing-card.featured .btn-pricing:hover { background: var(--orange-light); }
.pricing-note {
  text-align: center; margin-top: 24px;
  font-size: 13px; color: var(--gray);
}
.pricing-note a { color: var(--orange); text-decoration: none; }

/* ——— WHY VEERHAN ——— */
.why { background: var(--light-gray); }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 56px;
}
.why-item {
  background: white; border-radius: 20px; padding: 36px;
  display: flex; gap: 20px;
  opacity: 0; transition: transform 0.3s, box-shadow 0.3s;
}
.why-item:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.why-num {
  font-family: var(--font-display); font-size: 48px; font-weight: 800;
  color: var(--orange); opacity: 0.15; line-height: 1; flex-shrink: 0;
}
.why-item h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ——— TESTIMONIALS ——— */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.testi-card {
  border: 1px solid var(--border); border-radius: 20px; padding: 32px;
  position: relative; opacity: 0; transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.testi-stars { font-size: 14px; color: var(--orange); margin-bottom: 12px; }
.testi-quote { font-size: 40px; color: var(--orange); line-height: 1; margin-bottom: 16px; font-family: Georgia, serif; }
.testi-text { font-size: 15px; line-height: 1.7; color: var(--dark); margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-family: var(--font-display); font-size: 16px;
}
.testi-name { font-weight: 600; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--gray); }

/* ——— FAQ ——— */
.faq { background: var(--light-gray); }
.faq-list { margin-top: 56px; display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
.faq-item {
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0; transform: translateY(20px);
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--orange); }
.faq-q {
  padding: 22px 28px; display: flex; justify-content: space-between; align-items: center;
  cursor: none; font-family: var(--font-display);
  font-size: 16px; font-weight: 700; color: var(--black);
  user-select: none;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange-pale); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: white; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a-inner {
  padding: 0 28px 22px;
  font-size: 15px; color: var(--gray); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ——— CONTACT ——— */
.contact { background: var(--black); color: white; }
.contact .section-label { color: var(--orange-light); }
.contact .section-label::before { background: var(--orange-light); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 56px; align-items: start;
}
.contact-info .section-title { color: white; margin-bottom: 20px; }
.contact-info .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(244,107,27,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.contact-detail span { font-size: 14px; color: rgba(255,255,255,0.7); display: block; margin-bottom: 2px; }
.contact-detail a { color: white; text-decoration: none; font-weight: 500; font-size: 15px; }
.contact-detail a:hover { color: var(--orange-light); }
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 40px;
  opacity: 0; transform: translateX(40px);
  will-change: transform, opacity;
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 8px; font-weight: 500; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 14px 16px; color: white; font-size: 14px;
  font-family: var(--font-body); outline: none; transition: border-color 0.3s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: var(--orange); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row select option { background: var(--dark); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-form {
  width: 100%; background: var(--orange); color: white;
  padding: 16px; border-radius: 12px; border: none;
  font-size: 15px; font-weight: 600; font-family: var(--font-body);
  cursor: pointer; transition: background 0.3s, transform 0.2s; margin-top: 8px;
}
.btn-form:hover { background: var(--orange-light); transform: translateY(-1px); }

/* CTA STRIP */
.cta-strip {
  background: var(--orange); padding: 64px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-strip-text h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; color: white; letter-spacing: -1px; margin-bottom: 8px;
}
.cta-strip-text p { font-size: 16px; color: rgba(255,255,255,0.8); }
.btn-cta-white {
  background: white; color: var(--orange);
  padding: 16px 36px; border-radius: 100px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }

/* FOOTER */
footer {
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 48px 32px; color: white;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo-text { color: white; font-size: 24px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 12px; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  margin-bottom: 16px; color: white; letter-spacing: 0.02em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--orange-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom p span { color: var(--orange); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(244,107,27,0.1); }

/* OTHER SERVICES NAV */
.other-services { background: var(--white); padding: 80px 48px; }
.other-services-header { margin-bottom: 40px; }
.services-nav-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.svc-nav-card {
  border: 1.5px solid var(--border); border-radius: 16px;
  padding: 24px 20px; text-decoration: none; color: var(--black);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-nav-card:hover { border-color: var(--orange); transform: translateY(-4px); background: var(--orange-pale); }
.svc-nav-icon { font-size: 28px; }
.svc-nav-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.svc-nav-arrow { color: var(--orange); font-size: 18px; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .build-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(3) { border-right: none; }
  .process-step:nth-child(3) ~ .process-step { border-top: 1px solid var(--border); }
  .regions-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .services-nav-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .service-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-hero-visual { display: none; }
  .ai-split { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  section, .other-services { padding: 60px 20px; }
  .service-hero { padding: 60px 20px 80px; }
  .breadcrumb-bar { padding: 12px 20px; }
  .build-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .services-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip { flex-direction: column; text-align: center; padding: 48px 20px; }
  .hero-stats-strip { flex-direction: column; }
  .hstat { border-right: none; border-bottom: 1px solid var(--border); }
  .hstat:last-child { border-bottom: none; }
  .contact-inner { gap: 40px; }
  .contact-form { padding: 28px 20px; }
  .contact-detail { gap: 12px; }
  footer { padding: 48px 20px 28px; }
}
@media (max-width: 480px) {
  .services-nav-grid { grid-template-columns: 1fr; }
  .contact-form { border-radius: 16px; }
  .service-hero { padding: 48px 16px 64px; }
  section, .other-services { padding: 48px 16px; }
  nav { padding: 14px 16px; }
  footer { padding: 40px 16px 24px; }
  .cta-strip { padding: 40px 16px; }
}
