/* ============================================
   ORDERLY X DEV — Awwwards-Level Agency Site
   Dark. Bold. Cinematic. Conversion-focused.
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --white: #f5f5f3;
  --cream: #e8e6e1;
  --muted: #888888;
  --accent: #c8ff00;
  --accent-dim: rgba(200,255,0,0.15);
  --blue: #4361ee;
  --radius: 12px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: 'Inter Tight', 'Inter', -apple-system, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--accent); color: var(--black); }

/* --- Custom Cursor --- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transition: transform 0.12s var(--ease), width 0.25s var(--ease), height 0.25s var(--ease);
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor.hovering { width: 60px; height: 60px; }

@media (pointer: coarse), (max-width: 768px) {
  .cursor { display: none; }
  body, a, button { cursor: auto; }
}

/* --- Noise Overlay --- */
.noise {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* --- Preloader --- */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
}
.loader__text {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 800; letter-spacing: -0.04em;
  color: var(--white); opacity: 0;
}
.loader__bar { width: 180px; height: 2px; background: var(--dark-3); border-radius: 2px; overflow: hidden; opacity: 0; }
.loader__bar-fill { height: 100%; width: 0; background: var(--accent); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
h1 { font-size: clamp(3rem, 8vw, 8rem); font-weight: 800; }
h2 { font-size: clamp(2.25rem, 5.5vw, 5rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
p { font-size: clamp(1rem, 1.2vw, 1.25rem); line-height: 1.7; color: var(--muted); font-weight: 300; }
.large-text { font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.5; font-weight: 300; }

/* Text reveal wrappers */
.line-wrap { overflow: hidden; display: block; }
.line-inner { display: block; transform: translateY(110%); }

/* --- Layout --- */
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 80px); }
.container--wide { max-width: 1600px; }
.section { padding: clamp(80px, 12vw, 180px) 0; position: relative; }

/* --- Tag / Label --- */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--accent);
  padding: 10px 20px;
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}
.tag::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-size: 0.9375rem; font-weight: 600;
  border: none; border-radius: var(--radius-full);
  padding: 16px 36px; transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.btn span { position: relative; z-index: 2; }
.btn--primary { background: var(--accent); color: var(--black); }
.btn--primary:hover { transform: scale(1.05); box-shadow: 0 0 50px rgba(200,255,0,0.25); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
.btn--outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--white { background: var(--white); color: var(--black); }
.btn--white:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(245,245,243,0.15); }
.btn--large { padding: 20px 48px; font-size: 1.0625rem; }
.btn--full { width: 100%; }
.btn-arrow { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover .btn-arrow { transform: translate(3px, -3px); }
.magnetic { display: inline-block; }

/* --- Header --- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 0; transition: all 0.5s var(--ease);
}
.header.scrolled { padding: 14px 0; background: rgba(10,10,10,0.9); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; z-index: 1001; }
.header__logo em { font-style: normal; color: var(--accent); }
.header__nav { display: flex; align-items: center; gap: 36px; }
.header__nav a { font-size: 0.875rem; font-weight: 500; color: var(--muted); transition: color 0.3s ease; position: relative; }
.header__nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.3s var(--ease); }
.header__nav a:hover, .header__nav a.active { color: var(--white); }
.header__nav a:hover::after, .header__nav a.active::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__actions .btn { padding: 11px 26px; font-size: 0.8125rem; }

/* Mobile Menu */
.menu-toggle { display: none; width: 32px; height: 24px; position: relative; background: none; border: none; z-index: 1001; }
.menu-toggle span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--white); transition: all 0.3s var(--ease); }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 968px) {
  .menu-toggle { display: block; }
  .header__nav {
    position: fixed; inset: 0; background: var(--black);
    flex-direction: column; justify-content: center; gap: 0;
    opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
  }
  .header__nav.open { opacity: 1; pointer-events: all; }
  .header__nav a { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 700; color: var(--white); padding: 8px 0; letter-spacing: -0.02em; }
  .header__nav a::after { display: none; }
  .header__actions { display: none; }
}

/* --- Hero --- */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(60px, 8vw, 120px);
  position: relative; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200,255,0,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(67,97,238,0.04) 0%, transparent 45%);
}
.hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
}
.hero__content { position: relative; z-index: 2; width: 100%; }
.hero__title { margin-bottom: 32px; }
.hero__title em { font-style: normal; color: var(--accent); }
.hero__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: 48px; }
.hero__desc { max-width: 480px; }
.hero__cta { display: flex; gap: 16px; flex-shrink: 0; }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted);
}
.hero__scroll-line { width: 1px; height: 48px; background: var(--dark-3); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--accent); animation: scrollLine 2s cubic-bezier(0.65,0,0.35,1) infinite;
}
@keyframes scrollLine { 0%{top:-100%} 50%{top:0} 100%{top:100%} }

@media (max-width: 768px) {
  .hero { align-items: center; padding-top: 120px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .hero__scroll { display: none; }
}

/* --- Marquee --- */
.marquee { overflow: hidden; padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.marquee__track { display: flex; gap: 48px; animation: marquee 35s linear infinite; width: max-content; }
.marquee__item {
  font-size: clamp(0.875rem, 1.2vw, 1.125rem); font-weight: 500; color: var(--muted);
  white-space: nowrap; display: flex; align-items: center; gap: 48px;
}
.marquee__item::after { content: ''; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* --- Stats --- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.07); }
.stat { padding: clamp(36px, 5vw, 56px) clamp(16px, 3vw, 32px); border-right: 1px solid rgba(255,255,255,0.07); text-align: center; }
.stat:last-child { border-right: none; }
.stat__number { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -0.04em; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat__number span { color: var(--accent); }
.stat__label { font-size: 0.8125rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(255,255,255,0.07); }
}

/* --- Services --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card {
  background: var(--dark); padding: clamp(32px, 4vw, 52px);
  position: relative; overflow: hidden; transition: all 0.5s var(--ease);
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,255,0,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--dark-2); }
.service-card__number { font-size: 0.7rem; font-weight: 700; color: var(--accent); letter-spacing: 0.12em; margin-bottom: 28px; display: block; }
.service-card__icon { width: 44px; height: 44px; margin-bottom: 20px; color: var(--accent); }
.service-card__title { font-size: clamp(1.25rem, 2vw, 1.625rem); margin-bottom: 14px; color: var(--white); }
.service-card__text { font-size: 0.9375rem; line-height: 1.7; color: var(--muted); }
.service-card__arrow {
  position: absolute; top: clamp(32px, 4vw, 52px); right: clamp(32px, 4vw, 52px);
  width: 28px; height: 28px; color: var(--muted);
  opacity: 0; transform: translate(-8px, 8px); transition: all 0.4s var(--ease);
}
.service-card:hover .service-card__arrow { opacity: 1; transform: translate(0,0); color: var(--accent); }
@media (max-width: 968px) { .services-grid { grid-template-columns: 1fr; } }

/* --- Steps (How It Works) --- */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step-item { position: relative; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); }
.step-item__num {
  font-size: clamp(3.5rem, 5vw, 5rem); font-weight: 900;
  color: rgba(200,255,0,0.07); line-height: 1;
  position: absolute; top: -16px; right: 0; letter-spacing: -0.05em;
}
.step-item__title { margin-bottom: 14px; color: var(--white); }
.step-item__text { font-size: 0.9375rem; }
@media (max-width: 768px) { .steps-row { grid-template-columns: 1fr; gap: 36px; } }

/* --- Pricing --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.pricing-card {
  background: var(--dark);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 44px);
  position: relative; transition: all 0.5s var(--ease);
}
.pricing-card--featured { background: var(--dark-2); border: 1px solid rgba(200,255,0,0.12); }
.pricing-card--featured::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(200,255,0,0.035) 0%, transparent 50%);
}
.pricing-badge {
  display: inline-block; background: var(--accent); color: var(--black);
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 5px 14px;
  border-radius: var(--radius-full); margin-bottom: 20px;
  position: relative; z-index: 2;
}
.pricing-card__name { font-size: 1.0625rem; font-weight: 600; color: var(--white); margin-bottom: 6px; position: relative; z-index: 2; }
.pricing-card__desc { font-size: 0.8125rem; color: var(--muted); margin-bottom: 28px; position: relative; z-index: 2; }
.pricing-card__price { margin-bottom: 36px; position: relative; z-index: 2; }
.pricing-card__amount { font-size: clamp(2.75rem, 4vw, 3.75rem); font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.pricing-card__amount small { font-size: 0.4em; font-weight: 500; color: var(--muted); }
.pricing-card__period { font-size: 0.8125rem; color: var(--muted); margin-top: 4px; }
.pricing-card__features { margin-bottom: 36px; position: relative; z-index: 2; }
.pricing-card__features li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; font-size: 0.9375rem; color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.pricing-card .btn { position: relative; z-index: 2; width: 100%; }
@media (max-width: 968px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* --- Portfolio / Work --- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.work-card { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--dark); }
.work-card__image {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.7s var(--ease);
}
.work-card:hover .work-card__image { transform: scale(1.05); }
.work-card--1 .work-card__image { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.work-card--2 .work-card__image { background: linear-gradient(135deg, #1b2a1b 0%, #2d5016 50%, #4a7c23 100%); }
.work-card--3 .work-card__image { background: linear-gradient(135deg, #2d132c 0%, #6a1b4d 50%, #c72c41 100%); }
.work-card--4 .work-card__image { background: linear-gradient(135deg, #0a3d62 0%, #3c6382 50%, #60a3bc 100%); }
.work-card--5 .work-card__image { background: linear-gradient(135deg, #2c003e 0%, #512b58 50%, #8b2f97 100%); }
.work-card--6 .work-card__image { background: linear-gradient(135deg, #1b1a17 0%, #5c4a1e 50%, #8b7434 100%); }
.work-card__image svg { width: 56px; height: 56px; color: rgba(255,255,255,0.2); }
.work-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(20px, 3vw, 36px); z-index: 2;
}
.work-card__tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 6px; }
.work-card__title { font-size: clamp(1.125rem, 2vw, 1.75rem); color: var(--white); margin-bottom: 6px; }
.work-card__desc { font-size: 0.8125rem; color: var(--muted); max-width: 360px; opacity: 0; transform: translateY(10px); transition: all 0.5s var(--ease); }
.work-card:hover .work-card__desc { opacity: 1; transform: translateY(0); }
.work-card__link {
  position: absolute; top: clamp(20px, 3vw, 36px); right: clamp(20px, 3vw, 36px);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); z-index: 3;
  opacity: 0; transform: scale(0.8); transition: all 0.4s var(--ease);
}
.work-card:hover .work-card__link { opacity: 1; transform: scale(1); }
.work-card__link:hover { background: var(--accent); color: var(--black); }
@media (max-width: 768px) { .work-grid { grid-template-columns: 1fr; } }

/* --- Testimonials --- */
.testimonials-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding-bottom: 20px;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial {
  flex: 0 0 clamp(300px, 38vw, 440px); scroll-snap-align: start;
  background: var(--dark); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg); padding: clamp(28px, 3.5vw, 44px);
  transition: all 0.4s var(--ease);
}
.testimonial:hover { border-color: var(--accent-dim); background: var(--dark-2); }
.testimonial__stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testimonial__stars svg { width: 16px; height: 16px; fill: var(--accent); }
.testimonial__text { font-size: 1rem; line-height: 1.7; color: var(--cream); margin-bottom: 28px; font-weight: 300; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8125rem; color: var(--black);
}
.testimonial__name { font-weight: 600; font-size: 0.875rem; color: var(--white); }
.testimonial__role { font-size: 0.75rem; color: var(--muted); }

/* --- CTA Section --- */
.cta-section {
  position: relative; padding: clamp(100px, 15vw, 200px) 0;
  text-align: center; overflow: hidden;
}
.cta-section__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,255,0,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(67,97,238,0.05) 0%, transparent 45%);
}
.cta-section h2 { position: relative; z-index: 2; max-width: 900px; margin: 0 auto 20px; }
.cta-section p { position: relative; z-index: 2; max-width: 520px; margin: 0 auto 44px; font-size: clamp(1rem, 1.3vw, 1.25rem); }
.cta-section .btn { position: relative; z-index: 2; }

/* --- Page Hero (internal pages) --- */
.page-hero { padding: clamp(160px, 20vw, 240px) 0 clamp(60px, 8vw, 100px); position: relative; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(200,255,0,0.04) 0%, transparent 50%); }
.page-hero h1 { position: relative; z-index: 2; }
.page-hero p { position: relative; z-index: 2; margin-top: 16px; max-width: 560px; font-size: clamp(1rem, 1.4vw, 1.25rem); }

/* --- Section Header --- */
.section-header { margin-bottom: clamp(44px, 6vw, 72px); }
.section-header h2 { margin-top: 14px; }
.section-header p { margin-top: 14px; max-width: 540px; }
.section-header--center { text-align: center; }
.section-header--center p { margin-left: auto; margin-right: auto; }

/* --- About --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); align-items: center; }
.about-image { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.about-image__inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 50%, #1a2332 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-image__inner svg { width: 72px; height: 72px; color: rgba(200,255,0,0.15); }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.value-item {
  padding: 24px; background: var(--dark); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04); transition: all 0.4s var(--ease);
}
.value-item:hover { border-color: var(--accent-dim); }
.value-item h4 { color: var(--white); margin-bottom: 6px; font-size: 1rem; }
.value-item p { font-size: 0.8125rem; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } .values-grid { grid-template-columns: 1fr; } }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); }
.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail__icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--dark-2); display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.contact-detail__icon svg { width: 20px; height: 20px; }
.contact-detail h4 { color: var(--white); font-size: 0.9375rem; margin-bottom: 2px; }
.contact-detail p { font-size: 0.875rem; }
.contact-detail a { color: var(--accent); }
.contact-detail a:hover { opacity: 0.7; }

/* Contact Form */
.contact-form {
  background: var(--dark); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 700; color: var(--cream);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; font-size: 0.9375rem;
  font-family: inherit; border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); background: var(--dark-2);
  color: var(--white); transition: all 0.3s var(--ease); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #555; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,255,0,0.06);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' fill='none' stroke='%23888' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-message { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.875rem; display: none; }
.form-message--success { background: rgba(16,185,129,0.08); color: #34d399; border: 1px solid rgba(16,185,129,0.15); display: block; }
.form-message--error { background: rgba(239,68,68,0.08); color: #f87171; border: 1px solid rgba(239,68,68,0.15); display: block; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 24px 0; background: none; border: none;
  font-size: clamp(1rem, 1.3vw, 1.25rem); font-weight: 600;
  color: var(--white); font-family: inherit; text-align: left;
}
.faq-question svg { width: 20px; height: 20px; color: var(--muted); flex-shrink: 0; transition: transform 0.4s var(--ease), color 0.3s ease; }
.faq-item.active .faq-question svg { transform: rotate(45deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer__inner { padding-bottom: 24px; font-size: 0.9375rem; line-height: 1.8; color: var(--muted); max-width: 620px; }

/* --- Comparison --- */
.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: var(--radius-lg); overflow: hidden; }
.comparison__col { padding: clamp(36px, 5vw, 52px); }
.comparison__col--old { background: var(--dark); }
.comparison__col--new { background: var(--dark-2); border: 1px solid rgba(200,255,0,0.08); }
.comparison__title { font-size: 1.125rem; margin-bottom: 20px; }
.comparison__title--bad { color: #f87171; }
.comparison__title--good { color: var(--accent); }
.comparison__list li { display: flex; align-items: center; gap: 10px; padding: 10px 0; font-size: 0.9375rem; }
.comparison__list li svg { width: 16px; height: 16px; flex-shrink: 0; }
.comparison__list--bad li { color: var(--muted); }
.comparison__list--bad li svg { color: #f87171; }
.comparison__list--good li { color: var(--cream); }
.comparison__list--good li svg { color: var(--accent); }
@media (max-width: 768px) { .comparison { grid-template-columns: 1fr; } }

/* --- Footer --- */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); }
.footer__upper { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: clamp(56px, 8vw, 88px) 0; }
.footer__brand p { margin-top: 16px; font-size: 0.8125rem; max-width: 300px; }
.footer__heading { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin-bottom: 20px; }
.footer__links a { display: block; padding: 5px 0; font-size: 0.875rem; color: var(--cream); transition: color 0.3s ease; }
.footer__links a:hover { color: var(--accent); }
.footer__lower {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem; color: var(--muted);
}
@media (max-width: 768px) { .footer__upper { grid-template-columns: 1fr 1fr; } .footer__lower { flex-direction: column; gap: 10px; text-align: center; } }
@media (max-width: 480px) { .footer__upper { grid-template-columns: 1fr; } }

/* --- Divider --- */
.divider { height: 1px; background: rgba(255,255,255,0.05); }

/* --- Reveal Animations --- */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
[data-reveal="stagger"].revealed > * { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"].revealed > *:nth-child(1) { transition-delay: 0s; }
[data-reveal="stagger"].revealed > *:nth-child(2) { transition-delay: 0.08s; }
[data-reveal="stagger"].revealed > *:nth-child(3) { transition-delay: 0.16s; }
[data-reveal="stagger"].revealed > *:nth-child(4) { transition-delay: 0.24s; }
[data-reveal="stagger"].revealed > *:nth-child(5) { transition-delay: 0.32s; }
[data-reveal="stagger"].revealed > *:nth-child(6) { transition-delay: 0.4s; }
[data-reveal="scale"] { transform: scale(0.96) translateY(24px); }
[data-reveal="scale"].revealed { transform: scale(1) translateY(0); }
