/* ================================================================
   Design This — styles.css
   A web design branch of Picture This Productions
   ================================================================ */

/* ----------------------------------------------------------------
   Cursor Spotlight
---------------------------------------------------------------- */
:root {
  --cx: -500px;
  --cy: -500px;
}

.cursor-spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(
    700px circle at var(--cx) var(--cy),
    rgba(125, 87, 241, 0.09),
    transparent 45%
  );
}

/* ----------------------------------------------------------------
   Hero headline — line reveal animation
---------------------------------------------------------------- */
.headline-line-1 {
  display: inline;
  clip-path: inset(0 100% 0 0);
  animation: line-reveal 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0.3s forwards;
}

@keyframes line-reveal {
  to { clip-path: inset(0 0% 0 0); }
}

/* ----------------------------------------------------------------
   Marquee strip
---------------------------------------------------------------- */
.marquee-strip {
  overflow: hidden;
  background: linear-gradient(90deg, rgba(83,45,196,0.06), rgba(0,136,243,0.06));
  border-top: 1px solid rgba(125, 87, 241, 0.12);
  border-bottom: 1px solid rgba(125, 87, 241, 0.12);
  padding: 14px 0;
  cursor: default;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  font-family: var(--f-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gray-400);
  white-space: nowrap;
  transition: color 0.2s;
}

.marquee-strip:hover .marquee-item {
  color: var(--c-gray-200);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-purple-500);
  flex-shrink: 0;
  opacity: 0.6;
}

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

/* ----------------------------------------------------------------
   Custom Properties
---------------------------------------------------------------- */
:root {
  /* Brand colours */
  --c-purple-700:  #3d1fa3;
  --c-purple-600:  #532dc4;
  --c-purple-500:  #7d57f1;
  --c-purple-400:  #9b7af8;
  --c-purple-300:  #bda6fb;
  --c-blue-600:    #0066cc;
  --c-blue-500:    #0088f3;
  --c-blue-400:    #04a6ec;
  --c-blue-300:    #4dc6f8;

  /* Dark backgrounds */
  --c-dark-950:    #04030d;
  --c-dark-900:    #080715;
  --c-dark-800:    #0e0d1e;
  --c-dark-700:    #161530;
  --c-dark-600:    #1e1c3a;

  /* Text */
  --c-gray-500:    #5a5878;
  --c-gray-400:    #7c7a9a;
  --c-gray-200:    #b8b6d0;
  --c-gray-100:    #dcdaf0;
  --c-white:       #ffffff;
  --c-light:       #e8e6ff;

  /* Gradients */
  --grad-purple:   linear-gradient(135deg, var(--c-purple-600) 0%, var(--c-blue-500) 100%);
  --grad-glow:     radial-gradient(ellipse 70% 50% at 50% 0%, rgba(125,87,241,0.35) 0%, transparent 70%);
  --grad-card:     linear-gradient(160deg, rgba(125,87,241,0.08) 0%, rgba(0,136,243,0.04) 100%);

  /* Typography */
  --f-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py:  clamp(64px, 8vw, 112px);
  --container:   1100px;
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   20px;

  /* Transitions */
  --t-fast:    150ms ease;
  --t-base:    250ms ease;
  --t-slow:    400ms ease;
}

/* ----------------------------------------------------------------
   Picture This Productions link
---------------------------------------------------------------- */
.ptp-link {
  display: inline-block;
  color: var(--c-purple-400);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--t-base), transform var(--t-base), text-shadow var(--t-base);
}

.ptp-link:hover {
  color: var(--c-white);
  transform: scale(1.06);
  text-shadow:
    0 0 12px rgba(125, 87, 241, 0.8),
    0 0 28px rgba(4, 166, 236, 0.5);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-gray-100);
  background-color: var(--c-dark-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--f-heading);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-white);
}

/* ----------------------------------------------------------------
   Container
---------------------------------------------------------------- */
.container {
  width: min(var(--container), 100% - 2 * clamp(20px, 5vw, 60px));
  margin-inline: auto;
}

/* ----------------------------------------------------------------
   Buttons
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: transform var(--t-base), box-shadow var(--t-base), opacity var(--t-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-purple);
  color: var(--c-white);
  box-shadow: 0 0 0 1px rgba(125,87,241,0.3), 0 8px 24px rgba(83,45,196,0.4);
}
.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(125,87,241,0.5), 0 12px 32px rgba(83,45,196,0.55);
  opacity: 0.95;
}

.btn-ghost {
  background: transparent;
  color: var(--c-purple-300);
  border: 1.5px solid rgba(125,87,241,0.4);
}
.btn-ghost:hover {
  background: rgba(125,87,241,0.08);
  border-color: rgba(125,87,241,0.7);
  color: var(--c-white);
}

.btn-full { width: 100%; }

/* ----------------------------------------------------------------
   Section helpers
---------------------------------------------------------------- */
.section-eyebrow {
  font-family: var(--f-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--c-gray-200);
  line-height: 1.7;
}

section {
  padding-block: var(--section-py);
}

.section-dark {
  background-color: var(--c-dark-800);
  border-top: 1px solid rgba(125,87,241,0.12);
  border-bottom: 1px solid rgba(125,87,241,0.12);
}

/* ----------------------------------------------------------------
   Scroll Reveal
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ----------------------------------------------------------------
   NAVBAR
---------------------------------------------------------------- */
#navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--t-slow), padding var(--t-slow), backdrop-filter var(--t-slow);
}

#navbar.scrolled {
  padding: 14px 0;
  background: rgba(8, 7, 21, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(125,87,241,0.15);
}

.nav-inner {
  width: min(var(--container), 100% - 2 * clamp(20px, 5vw, 60px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Brand wordmark */
.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}

.brand-design {
  font-family: var(--f-heading);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--c-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-this {
  font-family: var(--f-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--c-purple-400);
  margin-left: 2px;
  animation: blink 1.1s step-end infinite;
  vertical-align: text-bottom;
  border-radius: 1px;
}

/* Override for nav-brand: inline layout */
.nav-brand .brand-design,
.nav-brand .brand-this {
  display: inline;
}
.nav-brand {
  flex-direction: row;
  align-items: center;
}
.nav-brand .brand-sub {
  display: none; /* hidden in nav */
}

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

.brand-sub {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--c-gray-400);
  letter-spacing: 0;
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--f-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-gray-200);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-white);
  background: rgba(125,87,241,0.12);
}

.nav-links .nav-cta {
  color: var(--c-purple-300);
  border: 1.5px solid rgba(125,87,241,0.4);
  padding: 7px 16px;
  margin-left: 8px;
}

.nav-links .nav-cta:hover {
  background: rgba(125,87,241,0.15);
  border-color: rgba(125,87,241,0.7);
  color: var(--c-white);
}

/* Easter egg trigger */
.nav-game-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 10px;
  color: var(--c-gray-200);
  opacity: 0.65;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-game-trigger svg { width: 20px; height: 20px; display: block; }
.nav-game-trigger:hover {
  color: #e03030;
  opacity: 1;
  transform: scale(1.35);
}

@media (max-width: 768px) { .nav-game-trigger { display: none; } }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(120px, 15vw, 160px) clamp(64px, 8vw, 96px);
  overflow: hidden;
  background: var(--c-dark-950);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(83,45,196,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(0,136,243,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125,87,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,87,241,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--f-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-purple-400);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--c-purple-400);
}

.hero-headline {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 24px;
}

.headline-accent {
  display: block;
  background: linear-gradient(90deg, var(--c-purple-400) 0%, var(--c-blue-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
  clip-path: inset(0 100% 0 0);
  animation: line-reveal 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0.75s forwards;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--c-gray-200);
  max-width: 560px;
  margin-bottom: 36px;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(125,87,241,0.2);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--c-gray-400);
  font-weight: 400;
  max-width: 130px;
  line-height: 1.4;
}

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

.service-card {
  background: var(--grad-card);
  border: 1px solid rgba(125,87,241,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.service-card:hover {
  border-color: rgba(125,87,241,0.45);
  box-shadow: 0 20px 60px rgba(83,45,196,0.25);
}

/* Specular light sheen — driven by JS --glow-x / --glow-y */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(255, 255, 255, 0.07) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--c-purple-400);
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c-white);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--c-gray-200);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-list li {
  font-size: 0.8rem;
  color: var(--c-gray-400);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-purple-500);
}

/* ----------------------------------------------------------------
   PROCESS
---------------------------------------------------------------- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--c-purple-600), var(--c-blue-500), transparent);
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  padding: 0 0 48px 0;
  position: relative;
}

.process-step:last-child { padding-bottom: 0; }

.step-num {
  font-family: var(--f-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--c-purple-400);
  background: var(--c-dark-700);
  border: 1px solid rgba(125,87,241,0.3);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: 12px;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c-white);
}

.step-content p {
  font-size: 0.95rem;
  color: var(--c-gray-200);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 16px;
}

.step-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}

.step-details li {
  font-size: 0.82rem;
  color: var(--c-gray-400);
  padding-left: 14px;
  position: relative;
}

.step-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-purple-500);
  font-size: 0.7rem;
}

/* ----------------------------------------------------------------
   WHY US
---------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 64px;
}

.why-col-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(125,87,241,0.15);
  color: var(--c-gray-400);
}

.why-col-title--accent {
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom-color: rgba(125,87,241,0.4);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.why-list--bad li {
  color: var(--c-gray-400);
}

.why-list--bad li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: rgba(239, 68, 68, 0.6);
  font-size: 0.8rem;
  top: 1px;
}

.why-list--good li {
  color: var(--c-gray-100);
}

.why-list--good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-blue-400);
  font-size: 0.85rem;
  font-weight: 700;
  top: 1px;
}

.why-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}

.why-divider span {
  font-family: var(--f-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--c-dark-700);
  border: 1px solid rgba(125,87,241,0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(83,45,196,0.15) 0%, rgba(0,136,243,0.1) 100%);
  border: 1px solid rgba(125,87,241,0.25);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 0 20px;
}

.proof-num {
  font-family: var(--f-heading);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.proof-label {
  font-size: 0.82rem;
  color: var(--c-gray-200);
  line-height: 1.4;
  max-width: 200px;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(125,87,241,0.25);
}

/* ----------------------------------------------------------------
   CONTACT
---------------------------------------------------------------- */
.section-contact {
  background: var(--c-dark-950);
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(83,45,196,0.25) 0%, transparent 65%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-copy p {
  font-size: 0.95rem;
  color: var(--c-gray-200);
  line-height: 1.7;
  margin-bottom: 28px;
}

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

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-purple-300);
  transition: color var(--t-fast);
}

.contact-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-link:hover { color: var(--c-white); }

.contact-service-area {
  font-size: 0.82rem;
  color: var(--c-gray-400);
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125,87,241,0.1);
  border: 1px solid rgba(125,87,241,0.25);
  border-radius: var(--radius-sm);
  color: var(--c-gray-200);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.contact-social a svg {
  width: 16px;
  height: 16px;
}

.contact-social a:hover {
  background: rgba(125,87,241,0.2);
  border-color: rgba(125,87,241,0.5);
  color: var(--c-white);
}

/* Form */
.contact-form {
  background: rgba(14,13,30,0.7);
  border: 1px solid rgba(125,87,241,0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  backdrop-filter: blur(8px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--f-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-gray-200);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(125,87,241,0.2);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--c-white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239b7af8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--c-gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(125,87,241,0.6);
  background: rgba(125,87,241,0.06);
}

.form-group textarea { resize: vertical; }

.contact-form .btn-full {
  grid-column: 1 / -1;
  margin-top: 4px;
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.site-footer {
  background: var(--c-dark-950);
  border-top: 1px solid rgba(125,87,241,0.12);
  padding-block: 36px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Re-use brand wordmark styles inline in footer */
.footer-brand .brand-design,
.footer-brand .brand-this {
  font-family: var(--f-heading);
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer-brand .brand-design {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--c-white);
}

.footer-brand .brand-this {
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--c-gray-500);
  line-height: 1.4;
  margin-top: 2px;
}

.footer-tagline a {
  color: var(--c-purple-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-tagline a:hover { color: var(--c-white); }

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

.footer-links a {
  font-size: 0.82rem;
  color: var(--c-gray-400);
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--c-white); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--c-gray-500);
  width: 100%;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 4px;
}

/* ----------------------------------------------------------------
   RESPONSIVE — Tablet (≤1024px)
---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — Mobile (≤768px)
---------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 7, 21, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(125,87,241,0.2);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    gap: 4px;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }

  #navbar { position: fixed; }

  /* Hero */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 20px; }

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

  /* Process */
  .process-steps::before { left: 20px; }
  .process-step { grid-template-columns: 44px 1fr; gap: 20px; }
  .step-num { width: 44px; height: 44px; font-size: 0.65rem; }
  .step-details { grid-template-columns: 1fr; }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-divider {
    order: -1;
    display: none;
  }
  .proof-band {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }
  .proof-divider { display: none; }
  .proof-item { padding: 0; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { gap: 12px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
}
