/* =============================================
   PATIDAR DIGITAL HUB — style.css
   Design: Deep Navy + Electric Cyan + Saffron Gold
   Fonts: Bricolage Grotesque + Plus Jakarta Sans
   ============================================= */

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

:root {
  /* Colors */
  --bg:          #060B18;
  --bg-alt:      #080E20;
  --bg-card:     #0C1426;
  --bg-card2:    #0F1830;
  --border:      rgba(0,201,255,0.1);
  --border-soft: rgba(255,255,255,0.06);
  --cyan:        #00C9FF;
  --cyan-dim:    rgba(0,201,255,0.15);
  --cyan-glow:   rgba(0,201,255,0.25);
  --gold:        #FFB800;
  --gold-dim:    rgba(255,184,0,0.15);
  --gold-glow:   rgba(255,184,0,0.25);
  --text:        #E8F0FF;
  --text-muted:  #7A90B8;
  --text-dim:    #3A4F72;
  --white:       #ffffff;

  /* Gradients */
  --grad-cyan:   linear-gradient(135deg, #00C9FF 0%, #0066CC 100%);
  --grad-gold:   linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
  --grad-mix:    linear-gradient(135deg, #00C9FF 0%, #0066CC 50%, #6600CC 100%);

  /* Radii & Spacing */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Typography */
  --font-head: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:  0.3s var(--ease);
  --ts: 0.5s var(--ease);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

@media (pointer: coarse) { body { cursor: auto; } }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }

.text-cyan {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; opacity: 0.5; }
::selection { background: rgba(0,201,255,0.2); color: var(--white); }

/* ---------- Custom Cursor ---------- */
.cursor {
  width: 10px; height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}

.cursor-trail {
  width: 28px; height: 28px;
  border: 1.5px solid rgba(0,201,255,0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform 0.12s linear, width 0.3s, height 0.3s;
}

.cursor.active { width: 20px; height: 20px; opacity: 0.6; }
.cursor-trail.active { width: 50px; height: 50px; border-color: rgba(0,201,255,0.2); }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0;
  background: #020510;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.loader.done { opacity: 0; visibility: hidden; }

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-cyan);
  border-radius: 2px;
  transition: width 0.05s linear;
}

.loader-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ---------- Layout Helpers ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); }
.mt-btn { margin-top: 32px; display: inline-flex; }

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,201,255,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-cyan);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  transition: var(--t);
  box-shadow: 0 0 30px rgba(0,201,255,0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0,201,255,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-soft);
  transition: var(--t);
}

.btn-secondary:hover {
  background: rgba(0,201,255,0.08);
  border-color: rgba(0,201,255,0.3);
  color: var(--cyan);
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
}

.navbar.scrolled {
  background: rgba(6,11,24,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark { display: flex; align-items: center; }

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--cyan);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--cyan);
  transition: width var(--t);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--cyan); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--t);
}

.nav-phone:hover { color: var(--cyan); }

.btn-nav-cta {
  background: var(--grad-cyan);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  transition: var(--t);
  box-shadow: 0 0 20px rgba(0,201,255,0.25);
}

.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 35px rgba(0,201,255,0.45); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,201,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 80% at 40% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 60px 0;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  max-width: calc(590px + max(24px, calc((100vw - 1180px) / 2 + 24px)));
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid;
}

.badge-msme {
  color: var(--gold);
  border-color: rgba(255,184,0,0.25);
  background: var(--gold-dim);
}

.badge-rating {
  color: var(--text);
  border-color: var(--border-soft);
  background: rgba(255,255,255,0.04);
}

.star-fill { color: #FFB800; }

.badge-clients {
  color: #4ADE80;
  border-color: rgba(74,222,128,0.25);
  background: rgba(74,222,128,0.08);
}

.pulse-green {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(74,222,128,0.8);
  animation: pGreen 2s infinite;
}

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

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--white);
}

.typewriter-wrap {
  display: inline-block;
  position: relative;
}

.typewriter-text {
  background: var(--grad-mix);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typewriter-cursor {
  color: var(--cyan);
  animation: blink 0.9s step-end infinite;
  -webkit-text-fill-color: var(--cyan);
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hstat { display: flex; flex-direction: column; gap: 2px; }

.hstat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.hstat-plus {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cyan);
}

.hstat-label {
  font-size: 0.76rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hstat-sep {
  width: 1px; height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  display: flex;
  justify-content: flex-end;
}

.dashboard-mock {
  width: 360px;
  background: rgba(12,20,38,0.9);
  border: 1px solid rgba(0,201,255,0.2);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 80px rgba(0,201,255,0.1), 0 40px 80px rgba(0,0,0,0.5);
  animation: dashFloat 5s ease-in-out infinite;
}

@keyframes dashFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(0,201,255,0.05);
  border-bottom: 1px solid rgba(0,201,255,0.1);
}

.dash-dots {
  display: flex;
  gap: 5px;
}

.dash-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FFBD2E; }
.dash-dots span:nth-child(3) { background: #28CA41; }

.dash-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.dash-body { padding: 20px 18px; display: flex; flex-direction: column; gap: 14px; }

.dash-metric { display: flex; flex-direction: column; gap: 6px; }

.dm-label { font-size: 0.75rem; color: var(--text-dim); }

.dm-val {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
}

.dm-val.cyan { color: var(--cyan); }
.dm-val.gold { color: var(--gold); }

.dm-bar {
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.dm-fill {
  height: 100%;
  width: var(--w, 50%);
  background: var(--grad-cyan);
  border-radius: 3px;
  animation: fillAnim 2s ease-out both;
}

.dm-fill.gold-fill { background: var(--grad-gold); }

@keyframes fillAnim {
  from { width: 0%; }
  to { width: var(--w); }
}

.dash-chart { margin-top: 4px; }

.mini-chart { width: 100%; height: 60px; overflow: visible; }

.chart-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 2.5s ease forwards 0.5s;
}

.chart-area {
  opacity: 0;
  animation: fadeInArea 1s ease forwards 2s;
}

@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeInArea { to { opacity: 1; } }

.dash-clients-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.dc-label { font-size: 0.75rem; color: var(--text-dim); }

.dc-avatars { display: flex; align-items: center; gap: 0; }

.dc-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: hsl(var(--hue, 200), 60%, 30%);
  border: 2px solid var(--bg-card);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
}

.dc-av:first-child { margin-left: 0; }

.dc-more {
  font-size: 0.7rem;
  color: var(--cyan);
  font-weight: 600;
  margin-left: 8px;
}

.dash-notif {
  background: rgba(74,222,128,0.08);
  border-top: 1px solid rgba(74,222,128,0.15);
  padding: 10px 18px;
  font-size: 0.75rem;
  color: #4ADE80;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: notifSlide 0.5s ease 3s both;
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(0,201,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* =============================================
   TICKER
   ============================================= */
.ticker-strip {
  background: rgba(0,201,255,0.06);
  border-top: 1px solid rgba(0,201,255,0.1);
  border-bottom: 1px solid rgba(0,201,255,0.1);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0 32px;
  letter-spacing: 0.02em;
}

.tick-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.tick-dot.gold-dot { background: var(--gold); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   ABOUT
   ============================================= */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  height: 460px;
}

.about-img-card {
  width: 100%; height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}

.about-img-inner {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(0,201,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(255,184,0,0.08) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px;
}

.about-city-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
  padding: 6px 14px;
  border-radius: 100px;
}

.about-number-display { text-align: center; }

.and-big {
  display: block;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.and-big sup {
  font-size: 2.5rem;
  -webkit-text-fill-color: var(--cyan);
}

.and-sub {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.about-badges-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 12px 16px;
}

.cert-badge div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cert-badge strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

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

.about-float-card {
  position: absolute;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

.about-float-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.about-float-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.fc1 {
  bottom: 30px; right: -30px;
  animation: floatCard 4s ease-in-out infinite;
}

.fc2 {
  top: 40px; right: -24px;
  animation: floatCard 5s ease-in-out infinite 1s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-right { display: flex; flex-direction: column; gap: 0; }

.about-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 32px;
}

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

.pillar-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

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

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--ts);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-cyan);
  transform: scaleX(0);
  transition: transform var(--ts);
}

.svc-card:hover {
  border-color: rgba(0,201,255,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(0,201,255,0.08);
}

.svc-card:hover::before { transform: scaleX(1); }

.svc-featured {
  border-color: rgba(0,201,255,0.25) !important;
  background: linear-gradient(160deg, rgba(0,201,255,0.06) 0%, var(--bg-card) 50%);
  box-shadow: 0 0 50px rgba(0,201,255,0.1);
}

.svc-featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  background: var(--grad-cyan);
  padding: 4px 10px;
  border-radius: 100px;
}

.svc-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(0,201,255,0.08);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--t);
}

.svc-card:hover .svc-num { color: rgba(0,201,255,0.15); }

.svc-icon-wrap {
  width: 52px; height: 52px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,201,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
  transition: var(--t);
}

.svc-card:hover .svc-icon-wrap {
  background: rgba(0,201,255,0.2);
  border-color: rgba(0,201,255,0.4);
  box-shadow: 0 0 20px rgba(0,201,255,0.2);
}

.svc-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.svc-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
  margin-bottom: 24px;
}

.svc-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.svc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.8rem;
}

.svc-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  transition: gap var(--t), letter-spacing var(--t);
  letter-spacing: 0;
}

.svc-card:hover .svc-link { letter-spacing: 0.04em; }

/* =============================================
   STATS
   ============================================= */
.stats-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stats-line {
  position: absolute;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,201,255,0.15), transparent);
}

.sl1 { top: 30%; }
.sl2 { top: 70%; }

.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.stat-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px;
  border-radius: var(--r-md);
  background: rgba(0,201,255,0.03);
  border: 1px solid var(--border);
  transition: var(--t);
}

.stat-block:hover {
  background: rgba(0,201,255,0.06);
  border-color: rgba(0,201,255,0.2);
  transform: translateY(-3px);
}

.sb-icon {
  width: 44px; height: 44px;
  background: var(--cyan-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 4px;
}

.sb-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.sb-plus {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan);
  margin-top: -4px;
  display: inline;
}

.sb-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* =============================================
   PROCESS
   ============================================= */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  align-items: start;
  margin-top: 20px;
}

.process-line {
  position: absolute;
  top: 28px; left: 10%;
  width: 80%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), var(--cyan), transparent);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.ps-dot {
  width: 56px; height: 56px;
  background: var(--bg-card);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(0,201,255,0.2);
  flex-shrink: 0;
}

.ps-num {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cyan);
}

.ps-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ps-icon {
  width: 50px; height: 50px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,201,255,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 6px;
}

.ps-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.ps-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.pf-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
}

.pf-btn.active, .pf-btn:hover {
  background: var(--cyan-dim);
  border-color: rgba(0,201,255,0.3);
  color: var(--cyan);
}

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

.pf-card { border-radius: var(--r-lg); overflow: hidden; cursor: pointer; }

.pf-large {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.pf-thumb {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 40% 40%,
      hsl(var(--h), var(--s), 18%) 0%,
      hsl(var(--h), calc(var(--s) - 20%), 10%) 100%
    );
}

.pf-large .pf-thumb { height: 100%; min-height: 416px; }

.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,11,24,0.95) 0%, rgba(6,11,24,0.3) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--ts);
}

.pf-card:hover .pf-overlay {
  opacity: 1;
  transform: translateY(0);
}

.pf-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  background: rgba(0,201,255,0.12);
  border: 1px solid rgba(0,201,255,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  width: fit-content;
}

.pf-overlay h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.pf-overlay p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pf-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  margin-top: 4px;
  transition: letter-spacing var(--t);
}

.pf-card:hover .pf-cta { letter-spacing: 0.04em; }

/* Card visual patterns */
.pf-card .pf-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,201,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* =============================================
   WHY US
   ============================================= */
.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.why-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 28px;
}

.why-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: var(--r-md);
  padding: 20px 24px;
}

.wh-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.why-highlight strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.why-highlight span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.wg-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 24px;
  transition: var(--t);
}

.wg-card:hover {
  border-color: rgba(0,201,255,0.2);
  transform: translateY(-3px);
}

.wgc-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.wgc-icon.cyan-icon {
  background: var(--cyan-dim);
  border: 1px solid rgba(0,201,255,0.2);
  color: var(--cyan);
}

.wgc-icon.gold-icon {
  background: var(--gold-dim);
  border: 1px solid rgba(255,184,0,0.2);
  color: var(--gold);
}

.wg-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.wg-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-slider { position: relative; overflow: hidden; }

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease);
}

.testi-card {
  min-width: calc(50% - 10px);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 36px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(0,201,255,0.05);
  line-height: 1;
}

.testi-card:hover {
  border-color: rgba(0,201,255,0.2);
}

.testi-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--av-hue), 60%, 25%), hsl(var(--av-hue), 70%, 45%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(0,201,255,0.2);
}

.testi-info { flex: 1; }
.testi-info strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--white); }
.testi-info span { font-size: 0.78rem; color: var(--text-muted); }

.testi-result {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,201,255,0.2);
  padding: 5px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}

.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.testi-btn {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--t);
}

.testi-btn:hover {
  border-color: rgba(0,201,255,0.3);
  color: var(--cyan);
  background: var(--cyan-dim);
}

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

.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-soft);
  cursor: pointer;
  transition: var(--t);
}

.testi-dot.active {
  background: var(--cyan);
  width: 24px;
  border-radius: 4px;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
}

.ptl {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ptl.active { color: var(--white); }

.save-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
  background: var(--grad-gold);
  padding: 2px 8px;
  border-radius: 100px;
}

.ptoggle {
  width: 44px; height: 24px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  position: relative;
  cursor: pointer;
  transition: background var(--t);
}

.ptoggle.active { background: var(--cyan-dim); border-color: rgba(0,201,255,0.3); }

.ptoggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform var(--t), background var(--t);
}

.ptoggle.active .ptoggle-knob {
  transform: translateX(20px);
  background: var(--cyan);
}

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

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.price-popular {
  border-color: rgba(0,201,255,0.3) !important;
  background: linear-gradient(160deg, rgba(0,201,255,0.07) 0%, var(--bg-card) 50%);
  box-shadow: 0 0 60px rgba(0,201,255,0.15);
  transform: scale(1.02);
}

.price-popular:hover { transform: scale(1.02) translateY(-4px); }

.pc-popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-cyan);
  color: #000;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pc-tier {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.pc-price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 6px;
  line-height: 1;
}

.pc-currency {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cyan);
  padding-bottom: 4px;
}

.pc-amount {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
}

.pc-period {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-bottom: 6px;
}

.pc-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}

.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.feat-yes { color: var(--text); }
.feat-yes::before {
  content: '';
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300C9FF' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
  flex-shrink: 0;
}

.feat-no { color: var(--text-dim); }
.feat-no::before {
  content: '';
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233A4F72' stroke-width='2'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center / contain no-repeat;
  flex-shrink: 0;
}

.btn-primary-card {
  display: block;
  text-align: center;
  background: var(--grad-cyan);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px;
  border-radius: var(--r-sm);
  transition: var(--t);
  box-shadow: 0 0 25px rgba(0,201,255,0.3);
}

.btn-primary-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,201,255,0.5);
}

.btn-outline-card {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-soft);
  transition: var(--t);
}

.btn-outline-card:hover {
  border-color: rgba(0,201,255,0.3);
  color: var(--cyan);
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-note a { color: var(--cyan); }
.pricing-note a:hover { text-decoration: underline; }

/* =============================================
   FAQ
   ============================================= */
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 16px 0 28px;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  transition: var(--t);
}

.whatsapp-cta:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.faq-item.open { border-color: rgba(0,201,255,0.25); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: color var(--t);
}

.faq-q:hover { color: var(--cyan); }

.faq-arrow {
  font-size: 1.3rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--t), color var(--t);
  font-weight: 300;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  color: var(--cyan);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,201,255,0.06) 0%, transparent 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.cta-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,201,255,0.15);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 0 60px rgba(0,201,255,0.08);
}

.cta-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  transition: var(--t);
}

.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 16px 0 32px;
}

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

.cd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: var(--t);
}

.cd-item:hover {
  border-color: rgba(0,201,255,0.2);
  transform: translateX(4px);
}

.cd-icon {
  width: 38px; height: 38px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,201,255,0.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.cd-icon-wa {
  background: rgba(37,211,102,0.1) !important;
  border-color: rgba(37,211,102,0.2) !important;
  color: #25D366 !important;
}

.cd-item div span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.cd-item div strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.whatsapp-item:hover {
  border-color: rgba(37,211,102,0.25) !important;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.contact-form { padding: 40px; display: flex; flex-direction: column; gap: 18px; }

.cf-header {
  margin-bottom: 8px;
}

.cf-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cf-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  padding: 11px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--t);
  outline: none;
  resize: vertical;
}

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

.form-field select option { background: #0C1426; color: var(--text); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0,201,255,0.4);
  background: rgba(0,201,255,0.03);
  box-shadow: 0 0 0 3px rgba(0,201,255,0.08);
}

.btn-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad-cyan);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: var(--t);
  box-shadow: 0 0 25px rgba(0,201,255,0.25);
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,201,255,0.45);
}

.form-success-msg {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 12px 16px;
  background: rgba(0,201,255,0.06);
  border: 1px solid rgba(0,201,255,0.2);
  border-radius: var(--r-sm);
}

.form-success-msg.show { display: flex; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #040810; }

.footer-top {
  border-top: 1px solid var(--border);
  padding: 72px 0;
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 80px;
}

.footer-about {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 16px 0 16px;
  max-width: 300px;
}

.footer-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }

.fsoc {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--t);
}

.fsoc:hover {
  background: var(--cyan-dim);
  border-color: rgba(0,201,255,0.3);
  color: var(--cyan);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

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

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t);
}

.footer-col a:hover { color: var(--cyan); }

.footer-col li:not(:has(a)) {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

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

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--t);
}

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

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--t);
  animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: #25D366;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--t);
  pointer-events: none;
}

@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 100px 24px 60px; max-width: 100%; }
  .hero-visual { padding: 0 24px 60px; justify-content: flex-start; }
  .dashboard-mock { width: 100%; max-width: 400px; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process-line { display: none; }
  .about-wrapper { grid-template-columns: 1fr; }
  .about-img-wrap { height: 320px; max-width: 500px; }
  .fc1, .fc2 { right: 0; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-large { grid-column: auto; grid-row: auto; }
  .pf-large .pf-thumb { min-height: 200px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-popular { transform: none; }
  .price-popular:hover { transform: translateY(-4px); }
  .faq-wrapper { grid-template-columns: 1fr; }
  .testi-card { min-width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(4,8,16,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--ts);
    z-index: 999;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu li { border-bottom: 1px solid var(--border); }
  .nav-link { display: block; padding: 16px 24px; font-size: 1rem; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }
  .hero-headline { font-size: 2.2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-slider { overflow: visible; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; }
  .hero-stats-row { gap: 16px; }
  .hstat-sep { display: none; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; }
  .process-timeline { grid-template-columns: 1fr; }
  .testi-controls { gap: 12px; }
}
