/* ====================================================
   FATIH AKDIK — PERSONAL SITE
   Design System: Violet/Peach Gradient, Glassmorphism
   ==================================================== */

/* ----- TOKENS ----- */
:root {
  /* Surface Colors */
  --bg-primary: #08070e;
  --bg-secondary: #0d0c15;
  --bg-tertiary: #12111c;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);

  /* Text Colors */
  --text-primary: #f0ecf8;
  --text-secondary: #9d96b0;
  --text-muted: #5e5876;

  /* Accents */
  --accent-1: #8b5cf6;
  --accent-2: #f59e5c;
  --accent-1-rgb: 139, 92, 246;
  --accent-2-rgb: 245, 158, 92;
  --gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --accent-glow: rgba(139, 92, 246, 0.12);

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(139, 92, 246, 0.3);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-pad: clamp(80px, 12vh, 160px);
  --container-max: 1200px;
  --gap: clamp(20px, 3vw, 40px);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.6s;
}

/* ----- RESET ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: rgba(139, 92, 246, 0.3);
  color: #fff;
}

/* ----- CURSOR GLOW ----- */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-1-rgb), 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ----- GRADIENT MESH ----- */
.gradient-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: rgba(var(--accent-1-rgb), 0.3);
  top: -10%;
  right: -5%;
  animation: blobFloat1 20s ease-in-out infinite;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: rgba(var(--accent-2-rgb), 0.2);
  bottom: 10%;
  left: -10%;
  animation: blobFloat2 25s ease-in-out infinite;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: rgba(var(--accent-1-rgb), 0.15);
  top: 50%;
  left: 40%;
  animation: blobFloat3 22s ease-in-out infinite;
}

@keyframes blobFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-60px, 80px) scale(1.1);
  }

  66% {
    transform: translate(40px, -40px) scale(0.95);
  }
}

@keyframes blobFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(80px, -60px) scale(1.05);
  }

  66% {
    transform: translate(-40px, 60px) scale(1.1);
  }
}

@keyframes blobFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-70px, -50px) scale(1.15);
  }
}

/* ----- LAYOUT ----- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  position: relative;
  z-index: 1;
}

section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* ----- TYPOGRAPHY ----- */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-1);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-1);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-right: 0.15em;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.8;
}

.accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----- NAVBAR ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.5s var(--ease-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(8, 7, 14, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.3s;
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--gradient);
  color: #fff !important;
  font-weight: 500;
  font-size: 0.85rem !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(var(--accent-1-rgb), 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ----- HERO ----- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-1);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(var(--accent-2-rgb), 0.5);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(var(--accent-2-rgb), 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.hero-title .line {
  display: block;
}

.hero-title .word {
  display: inline-block;
}

.hero-title .line:nth-child(2) .word {
  animation-delay: 0.1s;
}

.hero-title .line:nth-child(3) .word {
  animation-delay: 0.2s;
}

.hero-title em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-right: 0.15em;
}

.hero-title .accent {
  font-size: 1.2em;
}

@keyframes heroReveal {
  to {
    transform: translateY(0);
  }
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.55s forwards;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(var(--accent-1-rgb), 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: rgba(var(--accent-1-rgb), 0.05);
}

/* Hero Photo */
.hero-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero-photo-frame {
  position: relative;
  width: 380px;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.photo-gradient-border {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  transition: opacity 0.4s;
}

.hero-photo-frame:hover .photo-gradient-border {
  opacity: 1;
}

.hero-photo-tag {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
}

.tag-label {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tag-value {
  color: var(--text-secondary);
}

/* Hero Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent-1);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: 0.3;
    transform: translateY(10px);
  }
}

/* ----- MARQUEE ----- */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 40px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-1);
  display: inline-block;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ----- GLASS CARD ----- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-smooth);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--accent-1-rgb), 0.08);
}

/* ----- BENTO GRID ----- */
.bento-grid {
  display: grid;
  gap: 16px;
}

.bento-4 {
  grid-template-columns: repeat(4, 1fr);
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
}

.bento-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(var(--accent-1-rgb), 0.08);
}

.bento-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.bento-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ----- ABOUT ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.about-photo-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--bg-primary) 100%);
  pointer-events: none;
}

.about-body h2 {
  margin-bottom: 32px;
}

.about-body p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-body p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.about-tag {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s;
}

.about-tag:hover {
  border-color: var(--border-hover);
  color: var(--accent-1);
}

/* ----- COMPANIES ----- */
.companies-header {
  margin-bottom: 60px;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.company-card {
  padding: 36px 32px;
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ----- JCI ----- */
.jci-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.jci-about {
  max-width: 420px;
  padding: 24px 28px;
  flex-shrink: 0;
}

.jci-about p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

.jci-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.jci-year-card {
  padding: 32px 24px;
}

.jci-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
}

.jci-roles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.jci-role {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 12px;
  border-left: 2px solid rgba(var(--accent-1-rgb), 0.3);
}

.jci-org {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
}

.jci-position {
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
}

.company-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.company-index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.company-arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: all 0.3s;
}

.company-card:hover .company-arrow {
  color: var(--accent-1);
  transform: translate(4px, -4px);
}

.company-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.company-type {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.company-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ----- SERVICES ----- */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

.services-header .section-desc {
  text-align: right;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  padding: 40px 36px;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(var(--accent-1-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-1);
  transition: all 0.3s;
}

.service-card:hover .service-icon-wrap {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--accent-1-rgb), 0.3);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ----- CLIENTS ----- */
.clients-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 80px;
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.client-tag {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.client-tag:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  background: rgba(var(--accent-2-rgb), 0.05);
}

.clients-note {
  padding: 24px 28px;
}

.clients-note p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
}

/* ----- RESULTS ----- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.result-card {
  padding: 36px 32px;
  display: flex;
  gap: 20px;
}

.result-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(var(--accent-2-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
}

.result-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.result-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ----- METHOD ----- */
.method-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.method-step {
  position: relative;
  padding: 36px 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all 0.4s var(--ease-smooth);
}

.method-step:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.method-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.method-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.method-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ----- CTA ----- */
.cta-section {
  text-align: center;
  position: relative;
  padding: clamp(100px, 15vh, 200px) 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-1-rgb), 0.08), transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section .section-label::before {
  display: none;
}

.cta-section .section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.cta-section .section-desc {
  max-width: 480px;
  margin: 0 auto;
}

/* ----- CONTACT ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 80px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
}

.contact-link-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-link-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.contact-link-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.arrow-icon {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: all 0.3s;
}

.contact-link:hover .arrow-icon {
  color: var(--accent-1);
  transform: translateX(4px);
}

/* ----- FOOTER ----- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.footer-brands {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-right {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ----- REVEAL ANIMATIONS ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 {
  transition-delay: 0s;
}

.stagger-2 {
  transition-delay: 0.1s;
}

.stagger-3 {
  transition-delay: 0.2s;
}

.stagger-4 {
  transition-delay: 0.3s;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-photo {
    order: 1;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-photo-frame {
    width: 300px;
    height: 360px;
  }

  .bento-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .companies-grid {
    grid-template-columns: 1fr;
  }

  .jci-header {
    flex-direction: column;
  }

  .jci-about {
    max-width: 100%;
  }

  .jci-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-header .section-desc {
    text-align: left;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .clients-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .method-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .jci-timeline {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 7, 14, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
  }

  .nav-cta {
    font-size: 1.1rem !important;
    padding: 14px 32px;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-photo-frame {
    width: 260px;
    height: 320px;
  }

  .bento-4 {
    grid-template-columns: 1fr 1fr;
  }

  .method-timeline {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .bento-4 {
    grid-template-columns: 1fr;
  }

  .hero-photo-frame {
    width: 220px;
    height: 280px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}