/* ============================================================
   White Turkish Nail Studio — styles.css
   ============================================================ */

:root {
  interpolate-size: allow-keywords;

  /* Palette */
  --bg: #FAFAF5;
  --surface: #E6F0E8;
  --surface-2: #D6E8DA;
  --ink: #1B3A2D;
  --ink-soft: #3D6B54;
  --accent: #FF6B35;
  --accent-2: #2EC4B6;
  --line: rgba(27,58,45,0.13);
  --line-strong: rgba(27,58,45,0.28);
  --skin: #EDCBB5;
  --skin-dark: #D4A88C;

  /* Typography */
  --font-heading: 'Space Grotesk', 'Trebuchet MS', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;

  /* Spacing */
  --pad: clamp(1rem, 5vw, 3.5rem);
  --header-h: 72px;
  --radius: 10px;
  --radius-lg: 18px;

  /* Nail color (updated by JS) */
  --nail-color: #FF6B35;
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
}

/* ---- Reset & Base ---- */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ---- Skip Link ---- */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: top 200ms;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---- Container ---- */

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ---- Typography ---- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.mono { font-family: var(--font-mono); }

p + p { margin-top: 1em; }

.section-head {
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 64px);
}
.section-head h2 { margin-bottom: 12px; }
.section-head p {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background 240ms cubic-bezier(.4,0,.2,1),
              color 240ms cubic-bezier(.4,0,.2,1),
              transform 180ms cubic-bezier(.2,.7,.2,1),
              box-shadow 240ms cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(255,107,53,0.35);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 400ms, height 400ms;
}
.btn-primary:active::after {
  width: 300px;
  height: 300px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(27,58,45,0.12);
}

/* Focus ring */
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
details summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---- Header ---- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(250,250,245,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}
.site-header.scrolled {
  background: rgba(250,250,245,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo span {
  color: var(--accent);
}

/* Nav desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 200ms;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
}
.nav-desktop a.is-active {
  color: var(--accent);
}

.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.85rem;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover,
.nav-desktop .nav-cta:focus-visible {
  background: var(--accent);
  color: #fff;
}

/* Nav toggle (hamburger) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  z-index: 1100;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span + span { margin-top: 6px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Drawer ---- */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  z-index: 1050;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 32px) 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateX(0);
}

.drawer a {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  transition: color 200ms, transform 200ms;
}
.drawer a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.drawer a.is-active {
  color: var(--accent);
}
.drawer .drawer-cta {
  margin-top: 20px;
  text-align: center;
}

/* ---- Main ---- */

main {
  padding-top: var(--header-h);
}

section {
  padding: clamp(48px, 8vw, 96px) 0;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ---- Dot Grid Pattern ---- */

.dot-grid {
  background-image: radial-gradient(circle, rgba(27,58,45,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ---- Hero ---- */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(48px, 8vw, 80px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 48px);
  align-items: center;
}
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 55% 1fr;
    gap: clamp(24px, 3vw, 48px);
  }
}

/* Configurator panel */
.configurator {
  background: var(--bg);
  border: 2px solid var(--accent-2);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  box-shadow:
    0 0 20px rgba(46,196,182,0.25),
    0 0 60px rgba(46,196,182,0.08),
    0 4px 32px -8px rgba(0,0,0,0.08);
  animation: neon-pulse 4s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
  0% { box-shadow: 0 0 20px rgba(46,196,182,0.25), 0 0 60px rgba(46,196,182,0.08), 0 4px 32px -8px rgba(0,0,0,0.08); }
  100% { box-shadow: 0 0 30px rgba(46,196,182,0.38), 0 0 80px rgba(46,196,182,0.14), 0 4px 32px -8px rgba(0,0,0,0.08); }
}

@media (prefers-reduced-motion: reduce) {
  .configurator { animation: none; }
}

.hand-preview {
  display: flex;
  justify-content: center;
  padding: 12px 0 20px;
}

.hand-svg {
  width: clamp(160px, 28vw, 220px);
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.06));
}

.hand-body {
  transition: fill 300ms;
}

.nail-shape {
  transition: fill 350ms cubic-bezier(.34,1.56,.64,1),
              rx 350ms cubic-bezier(.34,1.56,.64,1),
              ry 350ms cubic-bezier(.34,1.56,.64,1),
              d 350ms cubic-bezier(.34,1.56,.64,1);
}

.nail-shine {
  pointer-events: none;
}

/* Configurator controls */
.config-section {
  margin-bottom: 18px;
}
.config-section:last-child { margin-bottom: 0; }

.config-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
  display: block;
}

/* Shape selector */
.shape-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shape-btn {
  padding: 8px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 200ms cubic-bezier(.34,1.56,.64,1),
              background 200ms,
              color 200ms,
              transform 180ms cubic-bezier(.34,1.56,.64,1),
              box-shadow 200ms;
}
.shape-btn:hover {
  border-color: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -4px rgba(46,196,182,0.2);
}
.shape-btn.is-active {
  background: var(--accent-2);
  color: #fff;
  border-color: var(--accent-2);
  transform: scale(1.04);
  box-shadow: 0 4px 16px -4px rgba(46,196,182,0.35);
}

/* Color selector */
.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.color-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(.34,1.56,.64,1),
              border-color 200ms,
              box-shadow 200ms;
  position: relative;
}
.color-swatch::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, transparent 60%);
  transition: opacity 300ms;
}
.color-swatch:hover::after {
  opacity: 1;
}
.color-swatch:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px -4px currentColor;
}
.color-swatch.is-active {
  border-color: var(--ink);
  transform: scale(1.12);
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--ink);
}

/* Pattern selector */
.pattern-options { display: flex; flex-wrap: wrap; gap: 8px; }
.pattern-btn {
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--bg);
  color: var(--ink);
  transition: all 200ms cubic-bezier(.34,1.56,.64,1);
}
.pattern-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.pattern-btn.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 16px -4px rgba(255,107,53,0.35);
}

/* Length selector */
.length-options { display: flex; gap: 8px; flex-wrap: wrap; }
.length-btn {
  flex: 1;
  min-width: 60px;
  padding: 8px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  background: var(--bg);
  color: var(--ink);
  transition: all 200ms cubic-bezier(.34,1.56,.64,1);
}
.length-btn:hover { border-color: var(--ink-soft); transform: translateY(-2px); }
.length-btn.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* Addon checkbox */
.config-addon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 200ms, background 200ms;
}
.config-addon:hover {
  border-color: var(--accent-2);
  background: rgba(230,240,232,0.5);
}
.config-addon input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  margin: 2px 0 0;
  accent-color: var(--accent);
}
.config-addon .addon-text {
  font-size: 0.88rem;
  font-weight: 500;
}
.config-addon .addon-price {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

/* Price result mini */
.config-result {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.config-result-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.config-result-price {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  transition: transform 300ms cubic-bezier(.34,1.56,.64,1);
}
.config-result-price.pop {
  transform: scale(1.15);
}

/* Hero text */
.hero-text { order: -1; }
@media (min-width: 768px) {
  .hero-text { order: 0; }
}

.hero-text h1 {
  margin-bottom: 16px;
}

.hero-text .subtitle {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 400px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-badge svg {
  width: 14px;
  height: 14px;
  color: var(--accent-2);
  flex-shrink: 0;
}

/* ---- Stats Band ---- */

.stats-band {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(28px, 5vw, 48px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
}
.stat-item {}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.88rem;
  opacity: 0.8;
  margin-top: 4px;
}

/* ---- Nasıl Çalışır (Timeline) ---- */

.timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-2), var(--accent));
}

.timeline-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 40px;
  position: relative;
}
.timeline-step:last-child { padding-bottom: 0; }

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px -4px rgba(255,107,53,0.35);
}

.step-content h3 {
  margin-bottom: 6px;
  color: var(--ink);
}
.step-content p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---- Gallery (Before/After) ---- */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1),
              box-shadow 300ms cubic-bezier(.2,.7,.2,1);
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(46,196,182,0.2);
}

.gallery-img {
  aspect-ratio: 4/3;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gallery-img svg {
  width: 80px;
  height: 80px;
  color: var(--ink-soft);
  opacity: 0.3;
}

.gallery-label {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-label span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
}
.gallery-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 4px 10px;
  background: var(--accent-2);
  color: #fff;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- Testimonials ---- */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  padding: clamp(20px, 3vw, 28px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1),
              box-shadow 300ms cubic-bezier(.2,.7,.2,1);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(255,107,53,0.15);
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.4em;
  color: var(--accent);
  font-weight: 700;
  margin-right: 4px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
}
.testimonial-meta {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ---- Pricing ---- */

.pricing-section { background: var(--surface); }

.price-result-card {
  max-width: 480px;
  margin: 0 auto clamp(32px, 4vw, 48px);
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  border: 2px solid var(--accent-2);
  box-shadow: 0 0 24px rgba(46,196,182,0.15);
  position: relative;
  overflow: hidden;
}

.price-result-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(46,196,182,0.06), transparent 70%);
  pointer-events: none;
}

.price-result-card .result-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
}
.price-result-card .result-total {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}
.price-result-card .result-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

.price-breakdown {
  max-width: 480px;
  margin: 0 auto 36px;
}
.price-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.price-line:last-child { border-bottom: none; }
.price-line-label { color: var(--ink-soft); }
.price-line-val {
  font-family: var(--font-mono);
  font-weight: 600;
}

/* Pricing packages */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: clamp(32px, 4vw, 48px);
}
@media (min-width: 640px) {
  .packages-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .packages-grid { grid-template-columns: repeat(4, 1fr); }
}

.package-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid var(--line);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(46,196,182,0.18);
}
.package-card.featured {
  border-color: var(--accent);
  box-shadow: 0 4px 20px -6px rgba(255,107,53,0.2);
  position: relative;
}
.package-card.featured::before {
  content: 'Popüler';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.package-price {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.package-price small {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.package-includes, .package-excludes {
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.package-includes li, .package-excludes li {
  padding: 5px 0;
  padding-left: 22px;
  position: relative;
}
.package-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  background: var(--accent-2);
  border-radius: 50%;
}
.package-excludes li {
  color: var(--ink-soft);
  text-decoration: line-through;
  opacity: 0.7;
}
.package-excludes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  background: var(--line-strong);
  border-radius: 50%;
}

.price-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 24px;
  font-style: italic;
}

/* ---- Table scroll wrapper ---- */

.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 480px;
  width: 100%;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  border-collapse: collapse;
  font-size: 0.9rem;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--surface);
  color: var(--ink-soft);
}
td { vertical-align: top; }

/* ---- FAQ Accordion ---- */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }

.faq-item summary:hover { color: var(--accent); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
  color: var(--ink-soft);
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 26px;
}

.faq-body p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .faq-body { transition: none; }
}

/* ---- Contact Section ---- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 48px);
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Form ---- */

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 200ms, box-shadow 200ms;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(46,196,182,0.15);
  outline: none;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group select {
  appearance: auto;
  cursor: pointer;
}

/* KVKK checkbox */
.field-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.field-kvkk input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-kvkk a { color: var(--accent-2); text-decoration: underline; }

/* Contact info */
.contact-info { display: flex; flex-direction: column; gap: 0; }

.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: var(--radius);
}
.contact-row:last-child { border-bottom: none; }
.contact-row:hover {
  transform: translateX(4px);
}
.contact-row:hover .contact-icon {
  color: var(--accent);
  transform: scale(1.08);
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--ink-soft);
  margin-top: 2px;
  transition: color 240ms, transform 240ms;
  flex-shrink: 0;
}

.contact-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-value {
  font-size: 0.95rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.contact-value a {
  transition: color 200ms;
}
.contact-value a:hover { color: var(--accent); }

/* ---- Process (Hakkımızda) ---- */

.process-steps { max-width: 700px; margin: 0 auto; }

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 32px;
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.process-step:last-child::before { display: none; }
.process-step:last-child { padding-bottom: 0; }

.process-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-2);
}

.process-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 4px;
}

/* ---- Team ---- */

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  text-align: center;
  padding: clamp(20px, 3vw, 28px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(46,196,182,0.18);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface-2);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.team-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---- Cancellation Tiers ---- */

.cancel-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .cancel-tiers { grid-template-columns: repeat(3, 1fr); }
}

.cancel-tier {
  text-align: center;
  padding: 20px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
}
.cancel-tier strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 4px;
}
.cancel-tier span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* ---- Footer ---- */

.site-footer {
  background: var(--ink);
  color: rgba(250,250,245,0.85);
  padding: clamp(40px, 6vw, 64px) 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

.footer-brand .logo {
  color: var(--bg);
  margin-bottom: 12px;
  display: inline-block;
}
.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.75;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--accent);
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 4px 0;
  opacity: 0.75;
  transition: opacity 200ms, transform 200ms;
}
.footer-col a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(250,250,245,0.12);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  opacity: 0.6;
}
.footer-bottom a { text-decoration: underline; opacity: 1; }
.footer-bottom a:hover { opacity: 0.8; }

/* ---- Cookie Banner ---- */

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.25);
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-text {
  font-size: 0.82rem;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.55;
}
.cookie-text a { color: var(--accent-2); text-decoration: underline; }
.cookie-text a:hover { color: var(--accent); }

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  min-height: 44px;
  transition: background 200ms, color 200ms;
}
.cookie-btn[data-consent="accept"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.cookie-btn[data-consent="accept"]:hover {
  background: #e55a28;
  color: #fff;
}
.cookie-btn[data-consent="reject"] {
  background: transparent;
  color: var(--bg);
  border-color: rgba(250,250,245,0.3);
}
.cookie-btn[data-consent="reject"]:hover {
  background: rgba(250,250,245,0.1);
  color: var(--bg);
}
.cookie-btn[data-consent="settings"] {
  background: transparent;
  color: var(--bg);
  border-color: rgba(250,250,245,0.3);
}
.cookie-btn[data-consent="settings"]:hover {
  background: rgba(250,250,245,0.1);
  color: var(--bg);
}

/* ---- Reveal on Scroll ---- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1),
              transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-stagger { transition-delay: calc(var(--i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ---- Niche Animations ---- */

/* 1. Polish drip on CTA hover */
@keyframes polish-drip {
  0% { transform: translateY(-100%) scaleY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(110%) scaleY(1.3); opacity: 0; }
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 12px;
  background: var(--accent);
  border-radius: 0 0 50% 50%;
  transform: translateY(-100%) scaleY(0);
  opacity: 0;
  pointer-events: none;
}
.btn-primary:hover::before {
  animation: polish-drip 600ms cubic-bezier(.4,0,.2,1) forwards;
}

/* 2. Sparkle near configurator */
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.configurator .sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.configurator .sparkle:nth-child(1) { top: 8%; right: 12%; animation: sparkle 3s 0s infinite; }
.configurator .sparkle:nth-child(2) { top: 20%; left: 8%; animation: sparkle 3.5s 0.8s infinite; }
.configurator .sparkle:nth-child(3) { bottom: 15%; right: 6%; animation: sparkle 4s 1.5s infinite; }

@media (prefers-reduced-motion: reduce) {
  .configurator .sparkle { animation: none; opacity: 0; }
  .btn-primary:hover::before { animation: none; }
}

/* 3. Color swatch shimmer */
@keyframes swatch-shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.color-swatch::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.color-swatch:hover::before {
  animation: swatch-shimmer 500ms ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .color-swatch:hover::before { animation: none; }
}

/* 4. Brush stroke underline on headings */
.brush-underline {
  position: relative;
  display: inline;
}
.brush-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--accent);
  opacity: 0.25;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in .brush-underline::after,
.brush-underline.is-in::after {
  transform: scaleX(1);
}

/* 5. Gem float near gallery */
@keyframes gem-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(8deg); }
}

.gallery-card .gallery-img::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  animation: gem-float 4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 500ms);
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-card .gallery-img::after { animation: none; }
}

/* ---- Counter Animation ---- */

.counter-up {
  display: inline-block;
}

/* ---- Parallax ---- */

.parallax-layer {
  will-change: transform;
  transition: transform 50ms linear;
}

/* ---- Policy Pages ---- */

.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) 0;
}
.policy-content h1 {
  margin-bottom: 32px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.policy-content h2 {
  margin-top: 36px;
  margin-bottom: 16px;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}
.policy-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}
.policy-content p {
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.75;
}
.policy-content ul, .policy-content ol {
  margin-bottom: 16px;
  padding-left: 28px;
}
.policy-content li {
  list-style: disc;
  margin-bottom: 6px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.policy-content ol li { list-style: decimal; }
.policy-content a { color: var(--accent-2); text-decoration: underline; }
.policy-content strong { color: var(--ink); }

/* ---- 404 Page ---- */

.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}
.page-404 .big-num {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.page-404 p { color: var(--ink-soft); margin: 12px 0 28px; }

/* ---- Thank You Page ---- */

.thank-you {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}
.thank-you svg {
  width: 64px;
  height: 64px;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.thank-you h1 { margin-bottom: 12px; }
.thank-you p { color: var(--ink-soft); margin-bottom: 28px; max-width: 420px; }

/* ---- Sitemap Page ---- */

.sitemap-list {
  max-width: 600px;
  margin: 0 auto;
}
.sitemap-list li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.sitemap-list a { color: var(--accent-2); text-decoration: underline; }
.sitemap-list a:hover { color: var(--accent); }

/* ---- İletişim Page (full) ---- */

.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
}
@media (min-width: 768px) {
  .iletisim-grid { grid-template-columns: 1fr 1fr; }
}

.contact-channels { display: flex; flex-direction: column; gap: 4px; }

.channel-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 8px;
  border-radius: var(--radius);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
}
.channel-row:hover {
  transform: translateX(4px);
  background: var(--surface);
}
.channel-row:hover .channel-icon { color: var(--accent); transform: scale(1.08); }

.channel-icon {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  transition: color 240ms, transform 240ms;
  margin-top: 2px;
  flex-shrink: 0;
}
.channel-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.channel-value {
  font-size: 0.95rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.channel-value a { transition: color 200ms; }
.channel-value a:hover { color: var(--accent); }

/* ---- Manifesto / Quote block ---- */

.manifesto {
  padding: clamp(48px, 8vw, 80px) 0;
  text-align: center;
}
.manifesto blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.35;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink);
  position: relative;
}
.manifesto blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -24px;
  left: -12px;
  line-height: 1;
}

/* ---- Print ---- */

@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a { color: #000; text-decoration: underline; }
}

/* ---- Drawer Close Button ---- */


/* ---- Scroll Progress Bar ---- */

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  transition: width 60ms linear;
  pointer-events: none;
  z-index: 1;
}

/* ---- Responsive Fine-tuning ---- */

@media (max-width: 640px) {
  .hero-grid { gap: 24px; }

  .package-card { padding: 18px; }

  .gallery-grid { gap: 16px; }

  .stats-grid { gap: 16px; }

  .testimonials-grid { gap: 16px; }

  .trust-strip { gap: 8px; }
  .trust-badge { font-size: 0.72rem; padding: 5px 10px; }

  .timeline::before { left: 20px; }
  .timeline-step { grid-template-columns: 42px 1fr; gap: 14px; }
  .step-num { width: 42px; height: 42px; font-size: 1rem; }

  .footer-grid { gap: 24px; }
}

@media (max-width: 480px) {
  .color-options { gap: 8px; }
  .color-swatch { width: 30px; height: 30px; }

  .config-result { flex-direction: column; text-align: center; }
}

@media (max-width: 360px) {
  h1 { font-size: 2rem; }
  .configurator { padding: 16px; }
  .shape-btn, .pattern-btn, .length-btn { padding: 6px 10px; font-size: 0.78rem; }
}
