/* ============================================================
   GM DIGITAL EDGE — shared stylesheet
   Design system carried over from brand reference:
   dark canvas, Syne/DM Sans pairing, acid-green accent.
   ============================================================ */

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

:root {
  --black: #0a0a0f;
  --white: #f5f3ee;
  --accent: #c8ff57;
  --accent2: #57c8ff;
  --accent3: #ff6b35;
  --surface: #131318;
  --surface2: #1c1c24;
  --muted: #6b6b7e;
  --text: #e8e6df;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--accent); color: var(--black);
  padding: 0.75rem 1.25rem; font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem clamp(1.5rem, 4vw, 6rem);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.4rem;
  color: var(--white); letter-spacing: -0.02em;
  text-decoration: none;
  display: flex; align-items: baseline; gap: 0.15rem;
}
.nav-logo .dot { color: var(--accent); }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.875rem; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: var(--black);
  padding: 0.6rem 1.4rem; border-radius: 100px;
  font-size: 0.875rem; font-weight: 500;
  text-decoration: none; font-family: var(--font-body);
  transition: transform 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); opacity: 0.9; }
.nav-toggle {
  display: none; background: none; border: none; color: var(--white);
  font-size: 1.6rem; cursor: pointer; line-height: 1;
}

@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0; width: 100%;
    background: var(--black); flex-direction: column;
    align-items: flex-start; gap: 0; padding: 1.5rem;
    transform: translateX(100%); opacity: 0; pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow-y: auto; z-index: 100;
  }
  .nav-links.open { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .nav-cta { margin-top: 1rem; text-align: center; }
  .nav-toggle { display: block; }
}

/* ── HERO (home) ── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem clamp(1.5rem, 4vw, 6rem) 4rem;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,255,87,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,255,87,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(200,255,87,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,255,87,0.08);
  border: 1px solid rgba(200,255,87,0.2);
  color: var(--accent); padding: 0.4rem 1rem;
  border-radius: 100px; font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
  margin-bottom: 2rem; width: fit-content;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -0.03em; color: var(--white);
  animation: fadeUp 0.8s 0.1s ease both;
  max-width: 900px;
}
h1 .accent { color: var(--accent); }
h1 .stroke { -webkit-text-stroke: 1px rgba(255,255,255,0.3); color: transparent; }

.hero-sub {
  font-size: 1.15rem; color: var(--muted);
  max-width: 520px; margin: 2rem 0 3rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
.btn-primary {
  background: var(--accent); color: var(--black);
  padding: 0.9rem 2rem; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; font-family: var(--font-body);
  transition: all 0.25s; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,255,87,0.25); }
.btn-secondary {
  color: var(--text); padding: 0.9rem 2rem;
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 0.95rem; text-decoration: none;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); color: var(--white); }

.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--border);
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 9.5rem clamp(1.5rem, 4vw, 6rem) 4rem;
  position: relative; overflow: hidden; border-bottom: 1px solid var(--border);
}
.page-hero .hero-grid { opacity: 0.7; }
.breadcrumb {
  font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem;
  display: flex; gap: 0.5rem; align-items: center; position: relative; z-index: 1;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: 0.5; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); position: relative; z-index: 1; }
.page-hero .hero-sub { position: relative; z-index: 1; margin-bottom: 0; }

/* ── LOGOS STRIP ── */
.logos-strip { padding: 2.5rem clamp(1.5rem, 4vw, 6rem); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.logos-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1.5rem; }
.logos-track { display: flex; gap: 4rem; align-items: center; animation: scroll-logos 20s linear infinite; width: max-content; }
.logo-item { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: rgba(255,255,255,0.2); white-space: nowrap; letter-spacing: 0.05em; }
@keyframes scroll-logos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { padding: 6rem clamp(1.5rem, 4vw, 6rem); }
.section-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent);
  font-weight: 500; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; flex: none; width: 24px; height: 1px; background: var(--accent); }
h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--white); }
h2 .accent { color: var(--accent); }
h3 { font-family: var(--font-display); font-weight: 700; color: var(--white); }
p { color: var(--text); }
.lede { color: var(--muted); font-size: 1.05rem; max-width: 640px; }

/* ── SERVICES GRID ── */
.services-header { margin-bottom: 4rem; max-width: 640px; }
.services-header p { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.service-card { background: var(--surface); padding: 2.5rem; position: relative; overflow: hidden; transition: background 0.3s; }
.service-card:hover { background: var(--surface2); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity 0.3s; }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 48px; height: 48px; background: rgba(200,255,87,0.08); border: 1px solid rgba(200,255,87,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.5rem; }
.service-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.service-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.service-tag { display: inline-block; margin-top: 1.25rem; font-size: 0.72rem; padding: 0.25rem 0.75rem; border-radius: 100px; background: rgba(200,255,87,0.06); border: 1px solid rgba(200,255,87,0.12); color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase; }
.service-link { display: inline-block; margin-top: 1.25rem; font-size: 0.85rem; color: var(--accent2); text-decoration: none; }
.service-link:hover { text-decoration: underline; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* ── AI SECTION ── */
.ai-section { background: var(--surface); position: relative; overflow: hidden; }
.ai-bg-glow { position: absolute; top: 50%; right: -100px; transform: translateY(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(87,200,255,0.06) 0%, transparent 60%); pointer-events: none; }
.ai-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ai-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.ai-feature { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; border-radius: 12px; border: 1px solid var(--border); background: rgba(255,255,255,0.02); transition: border-color 0.3s, background 0.3s; }
.ai-feature:hover { border-color: rgba(87,200,255,0.2); background: rgba(87,200,255,0.04); }
.ai-feature-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ai-feature > div:last-child { min-width: 0; flex: 1; }
.ai-feature-title { font-weight: 500; color: var(--white); margin-bottom: 0.25rem; font-size: 0.95rem; overflow-wrap: break-word; }
.ai-feature-desc { font-size: 0.85rem; color: var(--muted); overflow-wrap: break-word; }
.ai-demo { background: var(--black); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.ai-demo-header { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.75rem; }
.ai-dot { width: 8px; height: 8px; border-radius: 50%; }
.ai-demo-title { font-size: 0.8rem; color: var(--muted); margin-left: auto; letter-spacing: 0.05em; }
.ai-messages { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; min-height: 280px; }
.msg { max-width: 85%; padding: 0.75rem 1rem; border-radius: 12px; font-size: 0.85rem; line-height: 1.6; animation: fadeUp 0.4s ease both; }
.msg-ai { background: var(--surface2); color: var(--text); border-bottom-left-radius: 4px; border: 1px solid var(--border); }
.msg-user { background: var(--accent); color: var(--black); align-self: flex-end; font-weight: 500; border-bottom-right-radius: 4px; }
.ai-input-row { padding: 1rem 1.25rem; border-top: 1px solid var(--border); display: flex; gap: 0.75rem; }
.ai-input { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 0.6rem 0.9rem; color: var(--text); font-family: var(--font-body); font-size: 0.85rem; outline: none; }
.ai-input::placeholder { color: var(--muted); }
.ai-input:focus { border-color: rgba(87,200,255,0.3); }
.ai-send { background: var(--accent2); color: var(--black); border: none; border-radius: 8px; padding: 0.6rem 1rem; cursor: pointer; font-weight: 600; font-size: 0.8rem; font-family: var(--font-body); transition: opacity 0.2s; }
.ai-send:hover { opacity: 0.85; }
.ai-typing { display: flex; gap: 4px; align-items: center; padding: 0.5rem 0; }
.ai-typing span { width: 6px; height: 6px; background: var(--muted); border-radius: 50%; animation: typing 1.2s infinite; }
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,100%{opacity:0.3;transform:translateY(0)} 50%{opacity:1;transform:translateY(-3px)} }
@media (max-width: 960px) { .ai-layout { grid-template-columns: 1fr; gap: 3rem; } }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; }
.process-step { position: relative; }
.process-step::after { content: ''; position: absolute; top: 24px; left: calc(100% + 0px); right: calc(-100% - 0px); height: 1px; background: linear-gradient(90deg, rgba(200,255,87,0.3), transparent); width: 2rem; pointer-events: none; }
.process-step:last-child::after { display: none; }
.step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: rgba(200,255,87,0.12); line-height: 1; margin-bottom: 1rem; }
.step-title { font-weight: 600; color: var(--white); margin-bottom: 0.5rem; font-family: var(--font-display); }
.step-desc { font-size: 0.875rem; color: var(--muted); }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } .process-step::after { display: none; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--surface); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.testimonial { padding: 2rem; border-radius: 16px; background: var(--black); border: 1px solid var(--border); transition: border-color 0.3s; }
.testimonial:hover { border-color: rgba(200,255,87,0.15); }
.testimonial-text { font-size: 0.95rem; color: var(--text); line-height: 1.8; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; color: var(--black); font-family: var(--font-display); }
.author-name { font-weight: 500; color: var(--white); font-size: 0.875rem; }
.author-role { font-size: 0.75rem; color: var(--muted); }
.stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.pricing-card { padding: 2.5rem; border-radius: 16px; background: var(--surface); border: 1px solid var(--border); transition: border-color 0.3s; position: relative; }
.pricing-card.featured { border-color: var(--accent); background: linear-gradient(135deg, rgba(200,255,87,0.05), var(--surface)); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--black); font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.9rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-display); white-space: nowrap; }
.pricing-plan { font-family: var(--font-display); font-size: 0.85rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.pricing-price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--white); margin: 0.75rem 0; letter-spacing: -0.02em; }
.pricing-price sub { font-size: 1rem; color: var(--muted); font-weight: 400; }
.pricing-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.5rem; min-height: 2.6em; }
.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-features li { font-size: 0.875rem; color: var(--text); padding-left: 1.4rem; position: relative; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing-features li.muted { color: var(--muted); }
.pricing-features li.muted::before { content: '–'; color: var(--muted); }
.btn-plan { display: block; text-align: center; padding: 0.85rem; border-radius: 100px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all 0.25s; }
.btn-plan-outline { border: 1px solid var(--border); color: var(--text); }
.btn-plan-outline:hover { border-color: rgba(255,255,255,0.25); }
.btn-plan-fill { background: var(--accent); color: var(--black); }
.btn-plan-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,255,87,0.25); }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 2.5rem; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ── PORTFOLIO ── */
.portfolio-filters { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-pill { border: 1px solid var(--border); color: var(--muted); background: transparent; padding: 0.5rem 1.1rem; border-radius: 100px; font-size: 0.82rem; font-family: var(--font-body); }
.filter-pill.active { border-color: var(--accent); color: var(--accent); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.portfolio-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.portfolio-card:hover { border-color: rgba(200,255,87,0.2); transform: translateY(-4px); }
.portfolio-thumb { height: 170px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; color: rgba(245,243,238,0.85); }
.portfolio-body { padding: 1.75rem; }
.portfolio-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent2); margin-bottom: 0.6rem; display: block; }
.portfolio-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--white); margin-bottom: 0.6rem; }
.portfolio-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.25rem; }
.portfolio-stats { display: flex; gap: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.portfolio-stat-num { font-family: var(--font-display); font-weight: 800; color: var(--accent); font-size: 1.3rem; }
.portfolio-stat-label { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 960px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.3s, transform 0.3s; text-decoration: none; display: block; }
.blog-card:hover { border-color: rgba(200,255,87,0.2); transform: translateY(-4px); }
.blog-thumb { height: 150px; }
.blog-body { padding: 1.75rem; }
.blog-meta { display: flex; gap: 0.75rem; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.9rem; }
.blog-meta .cat { color: var(--accent); }
.blog-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--white); margin-bottom: 0.75rem; line-height: 1.3; }
.blog-excerpt { font-size: 0.88rem; color: var(--muted); }
.blog-readmore { display: inline-block; margin-top: 1.25rem; font-size: 0.82rem; color: var(--accent2); }
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; margin-bottom: 3.5rem; }
.blog-featured .blog-thumb { height: 260px; border-radius: 12px; }
@media (max-width: 960px) { .blog-grid { grid-template-columns: 1fr 1fr; } .blog-featured { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.thumb-gradient-1 { background: linear-gradient(135deg, #1c2b18, #0a0a0f); }
.thumb-gradient-2 { background: linear-gradient(135deg, #182530, #0a0a0f); }
.thumb-gradient-3 { background: linear-gradient(135deg, #301c14, #0a0a0f); }
.thumb-gradient-4 { background: linear-gradient(135deg, #241830, #0a0a0f); }
.thumb-gradient-5 { background: linear-gradient(135deg, #143028, #0a0a0f); }
.thumb-gradient-6 { background: linear-gradient(135deg, #302818, #0a0a0f); }

/* ── ABOUT / TEAM / VALUES ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card { padding: 2rem; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; margin-top: 3rem; }
.team-card { text-align: center; }
.team-avatar { width: 100%; aspect-ratio: 1; border-radius: 16px; background: linear-gradient(135deg, var(--surface2), var(--surface)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--accent); margin-bottom: 1rem; border: 1px solid var(--border); }
.team-name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.team-role { font-size: 0.8rem; color: var(--muted); }
@media (max-width: 960px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } .team-grid { grid-template-columns: 1fr 1fr; } .values-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--white); font-family: var(--font-body); font-size: 1rem; padding: 1.5rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q .icon { color: var(--accent); font-family: var(--font-display); font-size: 1.3rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--muted); font-size: 0.92rem; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.5rem; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; }
.contact-info-item { display: flex; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.contact-info-icon { font-size: 1.3rem; }
.contact-info-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.35rem; }
.contact-info-value { color: var(--white); font-size: 0.95rem; }
.contact-info-value a { color: var(--white); text-decoration: none; }
.contact-info-value a:hover { color: var(--accent); }
.map-embed { margin-top: 2rem; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); height: 220px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.92) contrast(0.85); }
@media (max-width: 960px) { .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── LEAD / CONTACT FORM ── */
.lead-section { text-align: center; position: relative; overflow: hidden; }
.lead-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; background: radial-gradient(ellipse, rgba(200,255,87,0.07) 0%, transparent 65%); pointer-events: none; }
.lead-section h2 { margin: 0.5rem 0 1rem; }
.lead-section > p { color: var(--muted); max-width: 560px; margin: 0 auto 3rem; }
.lead-form { max-width: 600px; margin: 0 auto; text-align: left; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; position: relative; }
.ai-powered-badge { position: absolute; top: -14px; right: 2rem; background: var(--accent2); color: var(--black); font-size: 0.7rem; font-weight: 700; padding: 0.3rem 0.9rem; border-radius: 100px; font-family: var(--font-display); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.form-input { width: 100%; background: var(--black); border: 1px solid var(--border); border-radius: 10px; padding: 0.8rem 1rem; color: var(--text); font-family: var(--font-body); font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: rgba(200,255,87,0.4); }
.form-input::placeholder { color: var(--muted); }
.form-select { appearance: none; cursor: pointer; }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; background: var(--accent); color: var(--black); border: none; padding: 1rem; border-radius: 100px; font-weight: 700; font-size: 0.95rem; font-family: var(--font-body); cursor: pointer; transition: all 0.25s; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,255,87,0.25); }
.form-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 1.25rem; }
.success-msg { display: none; max-width: 500px; margin: 0 auto; padding: 3rem; text-align: center; }
.success-msg.show { display: block; }
.success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.success-title { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--white); margin-bottom: 0.75rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } .lead-form { padding: 1.75rem; } }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.legal-content li { padding-left: 1.4rem; position: relative; }
.legal-content li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.legal-updated { font-size: 0.85rem; color: var(--muted); margin-bottom: 3rem; display: inline-block; padding: 0.4rem 1rem; border: 1px solid var(--border); border-radius: 100px; }

/* ── CTA BAND ── */
.cta-band { background: var(--surface); text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--muted); max-width: 500px; margin: 0 auto 2rem; }

/* ── FOOTER ── */
footer { padding: 5rem clamp(1.5rem, 4vw, 6rem) 2rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; border-top: 1px solid var(--border); }
.footer-brand { max-width: 300px; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--white); margin-bottom: 1rem; }
.footer-logo .dot { color: var(--accent); }
.footer-tagline { font-size: 0.85rem; color: var(--muted); }
.footer-col h4 { font-family: var(--font-display); font-size: 0.85rem; color: var(--white); margin-bottom: 1.25rem; letter-spacing: 0.02em; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { padding: 1.5rem clamp(1.5rem, 4vw, 6rem) 2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: var(--muted); }
@media (max-width: 960px) { footer { grid-template-columns: 1fr 1fr; padding: 3.5rem 1.5rem 1.5rem; } .footer-brand { max-width: none; grid-column: 1 / -1; } }
@media (max-width: 560px) { footer { grid-template-columns: 1fr; } .footer-bottom { padding: 1.5rem; flex-direction: column; } }

/* ── RESPONSIVE base ── */
@media (max-width: 960px) {
  .hero, .page-hero, section { padding-left: 1.5rem; padding-right: 1.5rem; }
  section { padding-top: 4rem; padding-bottom: 4rem; }
  .hero { padding-top: 7rem; padding-bottom: 3rem; }
  .page-hero { padding-top: 7rem; padding-bottom: 3rem; }
  .services-grid, .team-grid, .portfolio-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .logos-strip { padding: 2rem 1.5rem; }
  .process-grid, .testimonials-grid, .pricing-grid { gap: 1.25rem; }
}
@media (max-width: 640px) {
  .services-grid, .portfolio-grid, .blog-grid, .team-grid, .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  .hero { padding-top: 6.5rem; }
  .page-hero { padding-top: 6.5rem; }
}

/* ── SMALL PHONES (≤480px) ── */
@media (max-width: 480px) {
  .hero, .page-hero, section { padding-left: 1.1rem; padding-right: 1.1rem; }
  nav { padding: 0.85rem 1.1rem; }
  .nav-logo { font-size: 1.15rem; }
  h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero-sub, .page-hero .hero-sub { font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.5rem 2rem; margin-top: 3rem; padding-top: 2rem; }
  .stat-num { font-size: 2rem; }
  .lead-form { padding: 1.5rem 1.25rem; }
  .ai-powered-badge { position: static; display: inline-block; margin-bottom: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card, .value-card, .service-card, .portfolio-body, .blog-body { padding: 1.5rem; }
  .blog-featured { padding: 1.5rem; }
  .contact-info-item { gap: 0.75rem; }
  .map-embed { height: 180px; }
  .footer-bottom { text-align: center; justify-content: center; }
  .step-num { font-size: 2.25rem; }
}
