/* ============================================================
   LAKSHYA SHARMA — PREMIUM DEVELOPER PORTFOLIO
   Design System & Production Stylesheet
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Color System */
  --bg-primary: #F8FAFC;
  --bg-secondary: #EEF2FF;
  --bg-card: #FFFFFF;
  --bg-dark: #0F172A;

  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-white: #FFFFFF;
  --text-muted: #94A3B8;

  --border: #E2E8F0;
  --border-light: #F1F5F9;

  --accent: #FF6B35;
  --accent-light: #FF8C61;
  --accent-glow: rgba(255, 107, 53, 0.12);
  --accent-shadow: rgba(255, 107, 53, 0.25);

  /* Gradients */
  --gradient-bg: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 50%, #F8FAFC 100%);
  --gradient-card: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
  --gradient-text: linear-gradient(135deg, #0F172A 30%, #FF6B35 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 48px rgba(15, 23, 42, 0.1), 0 8px 16px rgba(15, 23, 42, 0.05);
  --shadow-accent: 0 8px 28px rgba(255, 107, 53, 0.3);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Dimensions & Radius */
  --nav-height: 72px;
  --section-padding: 120px;
  --container-max: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --ease-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 32px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--ease-fast);
  cursor: pointer;
}

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

button {
  border: none;
  background: none;
  font-size: inherit;
  cursor: pointer;
}

/* ── Loading Screen ────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.95); }
}

.loader-bar {
  width: 120px;
  height: 3px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 10px;
  animation: loaderFill 1.5s ease-out forwards;
}

@keyframes loaderFill {
  to { width: 100%; }
}

/* ── Animated Background ──────────────────────────────────── */
.bg-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.bg-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(238, 242, 255, 0.8) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat1 20s ease-in-out infinite alternate;
}

.bg-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  bottom: 20%;
  left: -150px;
  animation: orbFloat2 25s ease-in-out infinite alternate;
}

.bg-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(238, 242, 255, 0.6) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation: orbFloat3 18s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, 80px) scale(1.1); }
}

@keyframes orbFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, -50px) scale(1.15); }
}

@keyframes orbFloat3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, -60px) scale(0.9); }
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}



/* ── Global Layout ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulseDot 2s infinite ease-in-out;
}

.section-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: var(--container-max);
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  transition: all var(--ease-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  border-color: rgba(226, 232, 240, 0.9);
  top: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  transition: all var(--ease-base);
}

.nav-logo:hover .nav-logo-img {
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  transform: rotate(-3deg) scale(1.06);
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--text-primary);
  color: var(--text-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: all var(--ease-base);
}

.nav-logo:hover .nav-logo-mark {
  background: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: rotate(-4deg) scale(1.06);
}

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

.nav-link {
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 10px;
  transition: all var(--ease-fast);
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(238, 242, 255, 0.7);
}

.nav-link.active {
  color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--text-primary);
  color: var(--text-white);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all var(--ease-base);
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--nav-height) + 32px);
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  width: calc(100% - 48px);
  max-width: 440px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-mobile.active {
  display: flex;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-mobile-link {
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 12px;
  transition: all var(--ease-fast);
}

.nav-mobile-link:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.nav-mobile-cta {
  margin-top: 8px;
  padding: 14px;
  background: var(--text-primary);
  color: var(--text-white);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  border-radius: 14px;
  transition: all var(--ease-base);
}

.nav-mobile-cta:hover {
  background: var(--accent);
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 40px;
  background: var(--gradient-bg);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
}

/* Hero entrance animations */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-anim.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.hero-label-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-title .accent-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.dot-sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.role-pill {
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--ease-base);
}

.role-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.hero-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.status-indicator {
  position: relative;
  width: 9px;
  height: 9px;
  background: #10B981;
  border-radius: 50%;
}

.status-indicator::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: 19px;
  height: 19px;
  background: rgba(16, 185, 129, 0.25);
  border-radius: 50%;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.8); opacity: 0; }
}

/* Hero Scroll Indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 25px; }
}

.hero-scroll-hint span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Hero Cutout & 3D Composition ─────────────────────────── */
.hero-visual {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Three.js canvas layer */
.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: transparent;
}

.hero-canvas-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Cutout Container */
.cutout-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  background: transparent;
}

/* Ambient glow */
.cutout-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.22) 0%, rgba(238, 242, 255, 0.6) 40%, transparent 70%);
  border-radius: 50%;
  bottom: 40px;
  z-index: 1;
  filter: blur(50px);
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

/* Depth ring behind cutout */
.cutout-depth-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 107, 53, 0.12);
  border-radius: 50%;
  bottom: 80px;
  z-index: 0;
  animation: ringRotate 20s linear infinite;
}

.cutout-depth-ring::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(226, 232, 240, 0.3);
  border-radius: 50%;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}

/* Cutout Image */
.cutout-img {
  position: relative;
  z-index: 2;
  height: 100%;
  max-height: 540px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(15, 23, 42, 0.12))
          drop-shadow(0 8px 16px rgba(15, 23, 42, 0.08));
  transition: transform 0.15s ease-out;
  will-change: transform;
}

/* Floating Badges */
.cutout-badge {
  position: absolute;
  z-index: 3;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  pointer-events: auto;
  animation: floatWidget 5s ease-in-out infinite alternate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cutout-badge:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg);
}

.cutout-badge.badge-ai {
  top: 40px;
  left: -24px;
  animation-delay: 0s;
}

.cutout-badge.badge-3d {
  top: 190px;
  right: -28px;
  animation-delay: 2s;
}

.cutout-badge.badge-ls {
  bottom: 70px;
  left: -20px;
  animation-delay: 3.5s;
}

.cutout-badge-icon {
  width: 30px;
  height: 30px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.6875rem;
  font-family: var(--font-mono);
  border: 1px solid rgba(255, 107, 53, 0.15);
}

@keyframes floatWidget {
  0% { transform: translateY(0); }
  100% { transform: translateY(-14px); }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 14px;
  transition: all var(--ease-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--text-white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ── About Section ─────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.about-intro-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  transition: all var(--ease-base);
  position: relative;
  overflow: hidden;
}

.about-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card:hover .about-card-accent {
  transform: scaleX(1);
}

.about-card:hover {
  border-color: rgba(255, 107, 53, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.about-card-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-secondary);
  border-radius: 14px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-base);
}

.about-card:hover .about-card-icon {
  background: var(--accent-glow);
  transform: scale(1.1);
}

.about-card-icon svg {
  color: var(--text-primary);
  transition: color var(--ease-fast);
}

.about-card:hover .about-card-icon svg {
  color: var(--accent);
}

.about-card-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.about-card-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Terminal ──────────────────────────────────────────────── */
.terminal-window {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.terminal-header {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
}

.term-dots {
  display: flex;
  gap: 7px;
}

.term-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.term-dot.red { background: #FF5F57; }
.term-dot.yellow { background: #FEBC2E; }
.term-dot.green { background: #28C840; }

.term-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.term-actions {
  opacity: 0.5;
}

.terminal-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  min-height: 260px;
  max-height: 360px;
  overflow-y: auto;
}

.term-line {
  margin-bottom: 4px;
}

.term-prompt {
  color: var(--accent);
  font-weight: 700;
}

.term-cmd {
  color: #FFFFFF;
}

.term-output {
  color: rgba(255, 255, 255, 0.55);
  padding-left: 2px;
}

.term-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blinkCursor 1s step-end infinite;
}

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

.term-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.term-input-field {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: #FFFFFF;
  width: 100%;
  caret-color: var(--accent);
}

/* ── Skills Section ────────────────────────────────────────── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: all var(--ease-base);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.skill-card:hover::before {
  transform: scaleX(1);
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 53, 0.2);
}

.skill-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.skill-card-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-base);
  border: 1px solid rgba(255, 107, 53, 0.12);
}

.skill-card:hover .skill-card-icon {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.skill-card:hover .skill-card-icon svg {
  stroke: white;
}

.skill-card-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex: 1;
}

.skill-card-count {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-secondary);
  padding: 3px 10px;
  border-radius: 100px;
}

.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-chip {
  padding: 7px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--ease-fast);
  position: relative;
}

.skill-chip:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

/* ── Services Section ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--ease-base);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: transparent;
  background: var(--bg-secondary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-line {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-line {
  transform: scaleY(1);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-base);
}

.service-card:hover .service-icon-box {
  background: var(--accent-glow);
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
  transition: color var(--ease-fast);
}

.service-card:hover .service-icon-box svg {
  color: var(--accent);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 4px 12px;
  background: var(--bg-secondary);
  border-radius: 8px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Coming Soon Projects ──────────────────────────────────── */
.coming-soon-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 72px 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coming-soon-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Animated decorative lines */
.cs-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.12), transparent);
  height: 1px;
}

.cs-line-1 {
  top: 25%;
  left: 0;
  right: 0;
  animation: csLinePulse 4s ease-in-out infinite;
}

.cs-line-2 {
  top: 50%;
  left: 0;
  right: 0;
  animation: csLinePulse 4s ease-in-out infinite 1.3s;
  opacity: 0.5;
}

.cs-line-3 {
  top: 75%;
  left: 0;
  right: 0;
  animation: csLinePulse 4s ease-in-out infinite 2.6s;
  opacity: 0.3;
}

@keyframes csLinePulse {
  0%, 100% { opacity: 0; transform: scaleX(0.3); }
  50% { opacity: 1; transform: scaleX(1); }
}

/* Corner decorations */
.cs-corner {
  position: absolute;
  width: 20px;
  height: 20px;
}

.cs-corner::before,
.cs-corner::after {
  content: '';
  position: absolute;
  background: rgba(255, 107, 53, 0.3);
}

.cs-corner::before {
  width: 20px;
  height: 1.5px;
}

.cs-corner::after {
  width: 1.5px;
  height: 20px;
}

.cs-corner-tl { top: 20px; left: 20px; }
.cs-corner-tr { top: 20px; right: 20px; }
.cs-corner-tr::before { right: 0; }
.cs-corner-tr::after { right: 0; }
.cs-corner-bl { bottom: 20px; left: 20px; }
.cs-corner-bl::before { bottom: 0; }
.cs-corner-bl::after { bottom: 0; }
.cs-corner-br { bottom: 20px; right: 20px; }
.cs-corner-br::before { right: 0; bottom: 0; }
.cs-corner-br::after { right: 0; bottom: 0; }

.coming-soon-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 107, 53, 0.15);
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 107, 53, 0.12);
}

.coming-soon-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.coming-soon-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.coming-soon-progress {
  max-width: 320px;
  margin: 0 auto 24px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
}

.coming-soon-progress-bar {
  width: 65%;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 100px;
  animation: pulseBar 3s ease-in-out infinite alternate;
}

@keyframes pulseBar {
  0% { width: 55%; }
  100% { width: 72%; }
}

.coming-soon-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.coming-soon-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  animation: dotPulse 1.5s ease-in-out infinite;
}

.coming-soon-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.coming-soon-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

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

@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

/* ── Contact Section ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}

.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.contact-info-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-info-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-meta-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.contact-meta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--ease-base);
}

.contact-meta-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.meta-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 107, 53, 0.08);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.meta-icon.icon-status {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.pulse-green-dot {
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  position: relative;
}

.pulse-green-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  background: rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  animation: pulseDot 2s infinite ease-in-out;
}

.meta-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.meta-value {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.90625rem;
}

.meta-link {
  text-decoration: none;
  transition: color var(--ease-fast);
}

.meta-link:hover {
  color: var(--accent);
}

/* Contact Form Box */
.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-form-header {
  margin-bottom: 24px;
}

.contact-form-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-form-header p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.875rem;
  color: var(--text-primary);
  outline: none;
  transition: all var(--ease-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.08);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

/* Form Availability Card */
.form-availability-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 20px;
  width: 100%;
  transition: all var(--ease-base);
}

.form-availability-card:hover {
  border-color: rgba(255, 107, 53, 0.35);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.avail-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.avail-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.avail-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 14px;
  height: 14px;
  background: rgba(16, 185, 129, 0.25);
  border-radius: 50%;
  animation: pulseDot 2s infinite ease-in-out;
}

.avail-status {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #10B981;
  text-transform: uppercase;
}

.avail-card-body {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avail-clock-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.08);
  color: #FF6B35;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.avail-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.avail-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.avail-time-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.avail-time {
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-primary);
}

.avail-days {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FF6B35;
  background: rgba(255, 107, 53, 0.08);
  padding: 3px 9px;
  border-radius: 6px;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 72px 0 32px;
  position: relative;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.footer-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
}

.footer-logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-url-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.footer-nav-cols {
  display: flex;
  gap: 60px;
}

.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--ease-fast);
}

.footer-col a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Social Media — Icons Only ───────────────────────────── */
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.social-icon-btn svg {
  transition: transform 0.25s ease;
}

.social-icon-btn:not(.disabled) {
  cursor: pointer;
}

.social-icon-btn:not(.disabled):hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.4);
}

.social-icon-btn:not(.disabled):hover svg {
  transform: scale(1.1);
}

.social-icon-btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.back-to-top {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--ease-fast);
}

.back-to-top:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* ── SEO: Visually Hidden Utility ───────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── FAQ Section ─────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--ease-base), box-shadow var(--ease-base), transform var(--ease-base);
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--accent-glow);
  transform: translateY(-2px);
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.01em;
  transition: color var(--ease-fast), background var(--ease-fast);
  gap: 1rem;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--ease-base);
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-question {
  color: var(--accent);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border-light);
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.faq-answer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 53, 0.3);
  transition: text-decoration-color var(--ease-fast);
}

.faq-answer a:hover {
  text-decoration-color: var(--accent);
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

