/* ═══════════════════════════════════════════════
   FileLift — Main Stylesheet
═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg-darkest:   #05051A;
  --bg-dark:      #0A0A22;
  --bg-medium:    #111130;
  --primary:      #6C63FF;
  --primary-dim:  rgba(108,99,255,0.15);
  --accent:       #F97316;
  --accent-dim:   rgba(249,115,22,0.12);
  --accent-light: #FB923C;
  --accent-yellow:#FBBF24;
  --white:        #FFFFFF;
  --gray-50:      #F8FAFC;
  --gray-100:     #F1F5F9;
  --gray-200:     #E2E8F0;
  --gray-400:     #94A3B8;
  --gray-500:     #64748B;
  --gray-700:     #334155;
  --gray-900:     #0F172A;
  --text:         #1E293B;
  --text-muted:   #475569;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow:       0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.18);
  --shadow-xl:    0 24px 80px rgba(0,0,0,0.25);
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; }

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

/* ── Utilities ── */
.accent-text { color: var(--accent); }

.gradient-text {
  background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #FB923C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.45);
}
.btn-outline-nav {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.btn-outline-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.08);
}
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.reveal-right {
  transform: translateX(28px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* ══════════════════════════════════════════
   LOADER
══════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.7s ease;
}

#starsCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.loader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.folder-char-wrapper {
  width: 180px;
  animation: folderFloat 2.2s ease-in-out infinite;
  transform-origin: center bottom;
  filter: drop-shadow(0 0 40px rgba(249,115,22,0.25));
}

.folder-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Flame flicker */
.flame-group {
  animation: flameFlicker 0.15s ease-in-out infinite alternate;
  transform-origin: center 205px;
}

.folder-char-wrapper.powering-up .flame-group {
  animation: flamePowerUp 0.55s ease-in-out forwards;
  transform-origin: center 205px;
}

.folder-char-wrapper.launching .flame-group {
  animation: flameBlazing 0.1s ease-in-out infinite alternate;
  transform-origin: center 205px;
  transform: scaleY(2.8) scaleX(1.4);
}

.folder-char-wrapper.launching {
  animation: folderLaunch 1.05s cubic-bezier(0.25, 0.1, 0.4, 1) forwards !important;
  filter: drop-shadow(0 0 60px rgba(249,115,22,0.6));
}

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

.loader-logo-text {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}

.loader-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

.loader-dots {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.loader-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  animation: dotPulse 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

/* ── Loader Keyframes ── */
@keyframes folderFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

@keyframes flameFlicker {
  0%   { transform: scaleY(1)    scaleX(1); }
  100% { transform: scaleY(1.08) scaleX(0.96); }
}

@keyframes flamePowerUp {
  0%   { transform: scaleY(1)   scaleX(1); }
  60%  { transform: scaleY(2)   scaleX(1.3); }
  100% { transform: scaleY(2.4) scaleX(1.35); }
}

@keyframes flameBlazing {
  0%   { transform: scaleY(2.8) scaleX(1.3); }
  100% { transform: scaleY(3.2) scaleX(1.5); }
}

@keyframes folderLaunch {
  0%   { transform: translateY(0px)   scale(1);    filter: drop-shadow(0 0 40px rgba(249,115,22,0.3)); }
  8%   { transform: translateY(18px)  scale(0.97); }
  18%  { transform: translateY(-30px) scale(1.02); }
  100% { transform: translateY(-130vh) scale(0.55) rotate(-4deg); filter: drop-shadow(0 0 80px rgba(249,115,22,0.7)); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

/* ══════════════════════════════════════════
   MAIN SITE
══════════════════════════════════════════ */
.site-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.site-visible {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.nav-link:hover {
  background: var(--accent-dim);
  color: var(--accent);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--accent); }
.mobile-cta { margin-top: 16px; text-align: center; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--bg-darkest) 0%, #0D0D2B 40%, #12102A 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,99,255,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-row {
  display: flex;
  align-items: baseline;
}
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}
.hero-stat-suf {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* Hero Visual Cards */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.card-main {
  width: 320px;
  padding: 0;
  overflow: hidden;
  animation: cardFloat 5s ease-in-out infinite;
}

.card-top-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #EF4444; }
.dot-yellow { background: #FBBF24; }
.dot-green  { background: #22C55E; }
.card-top-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  margin-left: 6px;
}

.card-list { padding: 12px 0; }

.card-file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: background 0.2s;
}
.card-file:hover { background: rgba(255,255,255,0.04); }
.card-file span:nth-child(2) { flex: 1; }
.file-ico { font-size: 1rem; }

.active-file {
  background: rgba(249,115,22,0.08) !important;
  color: rgba(255,255,255,0.8);
}

.file-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}
.file-badge.done    { background: rgba(34,197,94,0.15);  color: #4ADE80; }
.file-badge.lifting { background: rgba(249,115,22,0.2);  color: var(--accent-light); animation: badgePulse 1.4s ease-in-out infinite; }
.file-badge.queue   { background: rgba(148,163,184,0.12); color: var(--gray-400); }

.card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
}
.card-float-1 {
  top: 20px;
  right: -20px;
  animation: cardFloat2 4.5s ease-in-out infinite;
}
.card-float-2 {
  bottom: 60px;
  right: -10px;
  animation: cardFloat3 5.5s ease-in-out infinite;
}

.float-icon { font-size: 1.4rem; }
.float-val  { font-size: 1rem; font-weight: 700; color: var(--white); }
.float-label{ font-size: 0.75rem; color: rgba(255,255,255,0.4); }

@keyframes cardFloat  { 0%,100%{transform:translateY(0)}   50%{transform:translateY(-12px)} }
@keyframes cardFloat2 { 0%,100%{transform:translateY(0)}   50%{transform:translateY(-8px)}  }
@keyframes cardFloat3 { 0%,100%{transform:translateY(-6px)} 50%{transform:translateY(6px)}  }
@keyframes badgePulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(249,115,22,0.2);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.badge-light {
  background: rgba(249,115,22,0.15);
  color: #FB923C;
  border-color: rgba(249,115,22,0.25);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.light-title { color: var(--white); }
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}
.light-sub { color: rgba(255,255,255,0.45); }
.left-aligned { margin: 0; }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(249,115,22,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card[data-service] {
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,0.25);
  box-shadow: 0 12px 40px rgba(249,115,22,0.12);
}
.service-card:hover::before { opacity: 1; }

.service-card.featured {
  background: linear-gradient(145deg, #FFF7F0, #FFFAF7);
  border-color: rgba(249,115,22,0.2);
  box-shadow: 0 4px 24px rgba(249,115,22,0.1);
}

.svc-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}
.svc-icon-wrap svg { width: 30px; height: 30px; }
.service-card:hover .svc-icon-wrap {
  background: var(--accent);
}
.service-card:hover .svc-icon-wrap svg * {
  stroke: white !important;
  fill-opacity: 0.25 !important;
}

.svc-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(249,115,22,0.1);
  padding: 2px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.card-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.svc-link {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.svc-link:hover { gap: 8px; }
.svc-link span { transition: transform 0.2s ease; }
.svc-link:hover span { transform: translateX(3px); }

/* ══════════════════════════════════════════
   WHY US (dark)
══════════════════════════════════════════ */
.dark-section {
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
}

.why-us { padding: 100px 0; }

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

.why-content .section-badge { margin-bottom: 16px; }
.why-content .section-title { margin-bottom: 16px; }
.why-content .section-sub   { margin-bottom: 40px; }

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

.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit-icon-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(249,115,22,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid rgba(249,115,22,0.2);
}
.benefit-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.benefit-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
}

/* Stats Board */
.stats-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(249,115,22,0.2);
  transform: translateY(-3px);
}
.stat-card.accent-stat {
  background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(249,115,22,0.06));
  border-color: rgba(249,115,22,0.2);
}

.stat-big {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  display: inline;
}
.stat-suf {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  display: inline;
}
.stat-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}
.stat-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.step {
  flex: 1;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1.5px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,0.2);
  box-shadow: 0 8px 32px rgba(249,115,22,0.08);
}

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(249,115,22,0.1);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.step-emoji {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.step-arrow {
  font-size: 1.8rem;
  color: var(--gray-200);
  flex-shrink: 0;
  font-weight: 300;
  margin-top: -60px;
}

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner { padding: 90px 0; }

.cta-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.cta-icon { font-size: 3rem; margin-bottom: 20px; }
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--bg-darkest);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-wordmark {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.social-btn-ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.coming-soon-link { font-style: italic; opacity: 0.6; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.2);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { justify-content: center; }
  .hero-visual {
    display: none;
  }

  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-board { grid-template-columns: repeat(2, 1fr); }

  .steps {
    flex-direction: column;
    gap: 0;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 8px 0;
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-actions { display: none; }
  .hamburger  { display: flex; }

  .services-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero { padding: 100px 0 60px; }

  .section-title { letter-spacing: -0.5px; }

  .folder-char-wrapper { width: 140px; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 13px 22px; font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .stats-board  { grid-template-columns: 1fr; }
}
