/* ============================================
   ZT Wholesale — Global Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-bg: #f8f7f4;
  --color-bg-alt: #efeee9;
  --color-text: #1a1a1a;
  --color-text-light: #5a5a5a;
  --color-accent: #2d4a5e;
  --color-accent-light: #3d6a82;
  --color-dark: #0f1923;
  --color-white: #ffffff;
  --color-border: #d4d0c8;

  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 80px;
  --container-width: 1400px;
  --section-padding: 140px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

/* --- Utility --- */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Custom Cursor --- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border-color 0.3s, opacity 0.3s;
  opacity: 0.5;
}

.cursor.active {
  width: 60px;
  height: 60px;
  background: rgba(45, 74, 94, 0.15);
  mix-blend-mode: normal;
}

.cursor-follower.active {
  width: 80px;
  height: 80px;
  opacity: 0.3;
}

/* --- Scroll Progress --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--color-accent);
  z-index: 9990;
  transition: none;
}

/* --- Page Transition Overlay --- */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-dark);
  z-index: 9995;
  transform: translateY(100%);
  pointer-events: none;
}

/* --- Loading Screen --- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  flex-direction: column;
}

.loader-logo {
  overflow: hidden;
}

.loader-logo svg {
  width: 120px;
  height: auto;
}

.loader-logo svg path {
  stroke: var(--color-white);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
}

.loader-text {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-top: 24px;
  opacity: 0;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(248, 247, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.nav-logo span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-light);
}

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

.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  padding: 4px 0;
  overflow: hidden;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(0);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
  transform-origin: center;
}

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

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

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

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 99;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path 0.7s var(--ease-out-expo);
  pointer-events: none;
}

.nav-mobile.open {
  clip-path: circle(150% at calc(100% - 40px) 40px);
  pointer-events: all;
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out-expo);
}

.nav-mobile.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.open a:nth-child(1) { transition-delay: 0.2s; }
.nav-mobile.open a:nth-child(2) { transition-delay: 0.3s; }
.nav-mobile.open a:nth-child(3) { transition-delay: 0.4s; }
.nav-mobile.open a:nth-child(4) { transition-delay: 0.5s; }
.nav-mobile.open a:nth-child(5) { transition-delay: 0.6s; }

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 25, 35, 0.75) 0%, rgba(15, 25, 35, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 800px;
}

.hero-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0; }
  100% { top: 100%; }
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  background: var(--color-dark);
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
}

.page-hero-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent-light);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-dark:hover::before {
  transform: translateX(0);
}

.btn-dark span {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  position: relative;
  z-index: 1;
  transition: width 0.3s var(--ease-out-expo);
}

.btn-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn:hover .btn-arrow {
  width: 30px;
}

/* Magnetic button wrapper */
.magnetic {
  display: inline-block;
  transition: transform 0.4s var(--ease-out-expo);
}

/* ============================================
   Section Styles
   ============================================ */
section {
  padding: var(--section-padding) 0;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
  max-width: 700px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 560px;
  line-height: 1.8;
}

/* ============================================
   Categories Grid (Homepage)
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.category-card {
  background: var(--color-white);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.category-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.category-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.category-card:hover::after {
  transform: scaleX(1);
}

/* ============================================
   Split Section (Image + Text)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-image-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  transform-origin: left;
}

.split-text {
  padding: 40px 0;
}

.split-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 32px;
}

.split-text p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  overflow: hidden;
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.marquee-track span {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  white-space: nowrap;
  padding: 0 40px;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-border);
  transition: color 0.3s, -webkit-text-stroke 0.3s;
}

.marquee-track span:hover {
  color: var(--color-text);
  -webkit-text-stroke: 1px var(--color-text);
}

.marquee-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  margin: 0 40px;
  flex-shrink: 0;
  align-self: center;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: var(--section-padding) 5%;
}

.cta-section .section-label {
  color: rgba(255, 255, 255, 0.5);
}

.cta-section .section-title {
  color: var(--color-white);
  margin: 0 auto 24px;
}

.cta-section .section-desc {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 48px;
}

/* ============================================
   Products Page — Category Blocks
   ============================================ */
.product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--color-border);
}

.product-block:last-child {
  border-bottom: none;
}

.product-block.reverse {
  direction: rtl;
}

.product-block.reverse > * {
  direction: ltr;
}

.product-block-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.product-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.product-block-image:hover img {
  transform: scale(1.05);
}

.product-block-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.product-block-content p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tag {
  padding: 6px 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.product-tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(45, 74, 94, 0.05);
}

/* ============================================
   Wholesale Page — Advantages
   ============================================ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.advantage-item {
  padding: 48px 36px;
  border: 1px solid var(--color-border);
  position: relative;
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
}

.advantage-item:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.advantage-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-bg-alt);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.advantage-item h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.advantage-item p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -16px;
  width: 32px;
  height: 1px;
  background: var(--color-border);
}

.process-step:last-child::after {
  display: none;
}

/* --- Client Types --- */
.client-types {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  justify-content: center;
}

.client-type {
  padding: 14px 32px;
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease-out-expo);
}

.client-type:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

/* ============================================
   Contact Page
   ============================================ */
.contact-main {
  text-align: center;
  padding: var(--section-padding) 5%;
}

.contact-email {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-accent);
  display: inline-block;
  position: relative;
  margin: 32px 0;
  transition: color 0.3s;
}

.contact-email::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.contact-email:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-note {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- FAQ Accordion --- */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5%;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 1.05rem;
  font-family: var(--font-body);
  text-align: left;
  color: var(--color-text);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.4s var(--ease-out-expo);
}

.faq-icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.faq-icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s;
}

.faq-answer p {
  padding-bottom: 28px;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ============================================
   About Page — Values
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 64px;
}

.value-card {
  padding: 48px 40px;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-accent);
  transition: height 0.6s var(--ease-out-expo);
}

.value-card:hover::before {
  height: 100%;
}

.value-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.value-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- About Process/Timeline --- */
.about-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.about-step {
  padding: 40px;
  border-top: 2px solid var(--color-accent);
}

.about-step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.about-step p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 80px 5% 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.footer-logo span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links a {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer-contact a {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Animation Helpers
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-line {
  overflow: hidden;
}

.reveal-line span {
  display: inline-block;
  transform: translateY(105%);
}

.img-reveal {
  clip-path: inset(0 100% 0 0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 100px;
    --nav-height: 70px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-block.reverse {
    direction: ltr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-card {
    padding: 32px 20px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-process {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Disable custom cursor on touch devices */
  .cursor, .cursor-follower {
    display: none !important;
  }

  body {
    cursor: auto;
  }

  a, button {
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 60px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .nav-mobile a {
    font-size: 2rem;
  }

  .page-hero {
    height: 45vh;
    min-height: 320px;
  }
}
