:root {
  --black: #040609;
  --bg-dark: #070b12;
  --ink: #0f172a;
  --card-bg: rgba(15, 23, 42, 0.75);
  --soft: #94a3b8;
  --white: #f8fafc;
  --blue: #38bdf8;
  --blue-bright: #0284c7;
  --blue-glow: rgba(56, 189, 248, 0.35);
  --gold: #f59e0b;
  --line: rgba(255, 255, 255, 0.12);
  --mono: 'DM Mono', monospace;
  --sans: 'Plus Jakarta Sans', sans-serif;
  --display: 'Outfit', sans-serif;
  --serif: 'Playfair Display', serif;
  --syne: 'Syne', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
}

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

/* Loader */
.loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #030508;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
}
.loader-mark {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -3px;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  color: var(--white);
}
.loader-mark span {
  color: var(--blue);
  font-size: 0.35em;
  letter-spacing: 0;
  vertical-align: top;
  margin-left: 4px;
}
.loader-line {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  border-radius: 2px;
}
.loader-line i {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  animation: load 1.2s ease-in-out infinite;
}
.loader small {
  font: 11px var(--mono);
  letter-spacing: 2.5px;
  color: #64748b;
}
@keyframes load {
  from { transform: translateX(-110%); }
  to { transform: translateX(330%); }
}

/* Custom Cursor */
.cursor-dot, .cursor-ring {
  position: fixed;
  z-index: 999;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(56, 189, 248, 0.8);
  background: transparent;
  transition: width 0.25s, height 0.25s, border-color 0.25s;
}

/* Glassmorphic Desktop & Mobile Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background: rgba(4, 6, 9, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
  padding: 14px 0;
  background: rgba(4, 6, 9, 0.94);
  border-bottom-color: rgba(56, 189, 248, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

/* Brand Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.25s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-emblem {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(15, 23, 42, 0.9));
  border: 1.5px solid rgba(56, 189, 248, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
  position: relative;
  flex-shrink: 0;
}

.logo-emblem span {
  color: var(--white);
}

.logo-emblem sup {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--blue);
  vertical-align: super;
  margin-left: 1px;
}

.logo-text {
  line-height: 1;
}

.logo-text span {
  font-weight: 300;
  color: var(--blue);
}

.logo-text sup {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--blue);
  margin-left: 4px;
  top: -0.6em;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  gap: 36px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.desktop-nav a {
  color: rgba(248, 250, 252, 0.75);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button-pill {
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(56, 189, 248, 0.4);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button-pill:hover {
  border-color: var(--blue);
  background: rgba(56, 189, 248, 0.25);
  color: var(--white);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
}

/* Mobile Toggle Button */
.mobile-toggle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, border-color 0.25s;
}

.mobile-toggle:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--blue);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(180deg, #070c14 0%, #03060a 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.active .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.drawer-close:hover {
  background: var(--blue);
  color: #000;
  border-color: var(--blue);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 30px 0;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  color: rgba(248, 250, 252, 0.85);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.drawer-link:hover, .drawer-link:focus {
  background: rgba(56, 189, 248, 0.12);
  color: var(--blue);
  transform: translateX(6px);
}

.link-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--blue);
}

.link-text {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: #64748b;
}

.drawer-meta a {
  color: var(--blue);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 720px;
  position: relative;
  overflow: hidden;
  background: #020407;
  padding-top: 100px;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #020305 5%, rgba(2, 3, 5, 0.75) 40%, rgba(2, 3, 5, 0.1) 75%), url('assets/hero-carnova.png') center/cover no-repeat;
  transform: scale(1.04);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0.6;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.11;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: clamp(22vh, 25vh, 28vh) 6vw 0;
  max-width: 1400px;
}

.eyebrow {
  font: 11px var(--mono);
  letter-spacing: 2px;
  color: #a0aec0;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  display: inline-block;
}

.hero h1, .section h2, .contact-card h2 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.8vw, 7.8rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  font-weight: 700;
  margin: 0;
}

.hero h1 span, .hero h1 em {
  display: block;
}

.hero h1 em, .section h2 em, .contact-card h2 em {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  color: #e2e8f0;
}

.hero-bottom {
  display: flex;
  gap: 60px;
  align-items: flex-end;
  margin-top: 48px;
}

.hero-bottom p, .section-intro, .atelier-copy > p, .contact-card > p {
  font-family: var(--sans);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.75;
  color: #cbd5e1;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Premium Buttons */
.button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.button-fill {
  background: var(--white);
  color: #04070c;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.button-fill:hover {
  background: var(--blue);
  color: #04070c;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

.button-text {
  padding-left: 0;
  color: var(--white);
  background: transparent;
}

.button-text:hover {
  color: var(--blue);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.button-outline:hover {
  border-color: var(--blue);
  background: rgba(56, 189, 248, 0.12);
  color: var(--blue);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.hero-meta {
  position: absolute;
  z-index: 4;
  bottom: 30px;
  left: 6vw;
  right: 6vw;
  display: flex;
  justify-content: space-between;
  color: #64748b;
  font: 11px var(--mono);
  letter-spacing: 1.5px;
}

.hero-meta i {
  color: var(--blue);
  margin-left: 6px;
}

/* Marquee Section */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #06090e;
  padding: 24px 0;
}

.marquee {
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
}

.marquee b {
  font-size: 16px;
  color: var(--blue);
  margin: 0 24px;
}

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

/* Common Section */
.section {
  padding: clamp(90px, 12vw, 150px) 6vw;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}

.section h2 {
  font-size: clamp(2.8rem, 5.2vw, 5.8rem);
}

.section-intro {
  max-width: 400px;
  margin-bottom: 8px;
}

/* Store Product Showcase Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  min-height: 520px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(56, 189, 248, 0.2);
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  background: rgba(56, 189, 248, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  letter-spacing: 1px;
}

.product-visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
}

.product-number {
  position: absolute;
  top: 10px;
  right: 14px;
  font: 12px var(--mono);
  color: rgba(255, 255, 255, 0.4);
  z-index: 4;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  position: relative;
  z-index: 2;
}

.product-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-info p {
  font: 10px var(--mono);
  letter-spacing: 1.6px;
  color: var(--blue);
  margin: 0;
}

.product-price {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  padding: 3px 10px;
  border-radius: 8px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.product-info h3 {
  font-family: var(--display);
  font-size: 20px;
  margin: 4px 0 0;
  font-weight: 700;
  line-height: 1.35;
}

.product-info strong {
  font: 12px var(--mono);
  font-weight: 400;
  color: #94a3b8;
}

/* WhatsApp Buy Now Trigger */
.quick-buy {
  opacity: 0;
  position: absolute;
  bottom: 84px;
  left: 24px;
  right: 24px;
  border: 0;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.product-card:hover .quick-buy {
  opacity: 1;
  transform: translateY(0);
}

.quick-buy:hover {
  background: linear-gradient(135deg, #20ba5a, #0e7065);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.collection-footer {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  color: #94a3b8;
  font-size: 14px;
}

.round-link {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.25s ease;
  font-size: 18px;
}

.round-link:hover {
  background: var(--blue);
  color: #04070c;
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

/* Atelier Section */
.atelier {
  background: #060a10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
  padding-left: 0;
  min-height: 760px;
}

.atelier-canvas {
  height: 640px;
  position: relative;
  overflow: hidden;
}

.atelier-canvas:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #060a10, transparent 20%, transparent 80%, #060a10);
}

#orbCanvas {
  width: 100%;
  height: 100%;
}

.orb-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  letter-spacing: 0.2em;
  font: 11px var(--mono);
  color: var(--blue);
  text-shadow: 0 0 12px var(--blue);
}

.atelier-copy {
  padding-right: 6vw;
}

.atelier-copy > p {
  max-width: 480px;
  margin: 28px 0;
}

.atelier-points {
  display: flex;
  gap: 32px;
  margin: 40px 0;
}

.atelier-points div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  min-width: 120px;
}

.atelier-points b {
  font: 12px var(--mono);
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
}

.atelier-points span {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* Experience Section ("Why Drivers Choose Us") */
.experience {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 6vw;
  align-items: flex-start;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.experience-list article {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px 30px;
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
  position: relative;
}

.experience-list article:hover {
  border-color: rgba(56, 189, 248, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(56, 189, 248, 0.15);
}

.experience-list span {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.experience-list div {
  flex: 1;
}

.experience-list h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--white);
}

.experience-list p {
  font-size: 14px;
  line-height: 1.65;
  color: #94a3b8;
  margin: 0;
}

.experience-list i {
  font-size: 14px;
  color: var(--blue);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Redesigned Instagram Showcase Section */
.insta-showcase-section {
  padding: clamp(60px, 8vw, 100px) 6vw;
}

.insta-showcase-card {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(7, 11, 18, 0.98));
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 28px;
  padding: clamp(36px, 6vw, 64px);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
}

.insta-bg-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 48, 108, 0.25) 0%, rgba(56, 189, 248, 0.15) 45%, transparent 70%);
  pointer-events: none;
}

.insta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.insta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 48, 108, 0.14);
  border: 1px solid rgba(225, 48, 108, 0.4);
  color: #f43f5e;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.insta-content h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 18px;
}

.insta-content h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: #e2e8f0;
}

.insta-content p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0 0 32px;
  max-width: 580px;
}

.insta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.insta-handle {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--blue);
}

/* Reviews Section */
.reviews {
  background: #f1f5f9;
  color: #0f172a;
}

.reviews .eyebrow {
  color: #475569;
}

.reviews h2 {
  color: #0f172a;
}

.swiper-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #cbd5e1;
  margin-left: 8px;
  color: #0f172a;
  transition: all 0.25s ease;
}

.swiper-nav button:hover {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

.review-card {
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 44px;
  min-height: 320px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.stars {
  font-size: 12px;
  color: #0284c7;
  letter-spacing: 4px;
}

.review-card blockquote {
  font: clamp(18px, 1.8vw, 22px)/1.5 var(--serif);
  margin: 32px 0;
  color: #1e293b;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font: 11px var(--mono);
  color: #fff;
  font-weight: 700;
}

.a1 { background: #0284c7; }
.a2 { background: #0d9488; }
.a3 { background: #6366f1; }

.review-card footer b {
  display: block;
  font-size: 14px;
  color: #0f172a;
}

.review-card footer small {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

/* Process Section */
.process {
  padding-bottom: 170px;
}

.process-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-track article {
  min-height: 220px;
  border-right: 1px solid var(--line);
  padding: 24px 28px;
  position: relative;
}

.process-track article:first-child {
  padding-left: 0;
}

.process-track article:last-child {
  border-right: 0;
}

.process-track span {
  font: 12px var(--mono);
  color: var(--blue);
}

.process-track h3 {
  font-family: var(--display);
  font-size: 22px;
  margin: 60px 0 14px;
  font-weight: 700;
}

.process-track p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.65;
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 70px 6vw;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
}

.stats div {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 36px;
}

.stats div:first-child {
  padding-left: 0;
}

.stats div:last-child {
  border: 0;
}

.stats strong {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 800;
  display: block;
}

.stats span {
  font: 11px var(--mono);
  letter-spacing: 1.5px;
  margin-top: 12px;
  display: block;
  text-transform: uppercase;
}

.stats .small-star {
  font-size: 0.4em;
  display: inline;
  color: #bae6fd;
}

/* FAQ & Contact Section */
.faq-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 150px 6vw;
  gap: 8vw;
}

.faq h2 {
  margin-bottom: 48px;
}

.accordion {
  border-top: 1px solid var(--line);
}

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

.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.faq-item button i {
  font-size: 13px;
  color: var(--blue);
  transition: transform 0.25s ease;
}

.faq-item p {
  display: none;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
  padding: 0 30px 24px 0;
  margin: 0;
}

.faq-item.active p {
  display: block;
}

.faq-item.active button i {
  transform: rotate(180deg);
}

.contact-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(7, 11, 18, 0.95));
  padding: 56px;
  border-radius: 24px;
  align-self: start;
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
}

.contact-card h2 {
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  margin-bottom: 20px;
}

.contact-card form {
  margin-top: 36px;
}

.contact-card label {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 0;
  margin-bottom: 16px;
}

.contact-card label span {
  font: 10px var(--mono);
  letter-spacing: 1.5px;
  color: var(--blue);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-card input {
  background: transparent;
  border: 0;
  outline: none;
  color: var(--white);
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
}

.contact-card input::placeholder {
  color: #64748b;
}

.contact-card form .button {
  margin-top: 32px;
}

/* Multi-Column Luxury Automotive Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 80px;
  background: #030509;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-bio {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  margin: 20px 0 24px;
  max-width: 420px;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-item {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-heading {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  border-radius: 2px;
}

.links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links-col a {
  font-size: 14px;
  color: #cbd5e1;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

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

.contact-info {
  font-size: 14px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.contact-info i {
  color: var(--blue);
  font-size: 15px;
}

.footer-socials {
  margin-top: 24px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(131, 58, 180, 0.2));
  border: 1px solid rgba(225, 48, 108, 0.4);
  color: var(--white);
  transition: all 0.3s ease;
  width: 100%;
}

.social-btn:hover {
  border-color: #f43f5e;
  background: rgba(225, 48, 108, 0.3);
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  background: #020306;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  color: #64748b;
}

.back-top-btn {
  color: var(--blue);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.back-top-btn:hover {
  background: var(--blue);
  color: #04070c;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

/* Responsive Media Queries - Mobile Perfection */
@media (max-width: 1199px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .site-header {
    padding: 12px 0;
  }
  .header-inner {
    padding: 0 16px;
  }
  .cursor-dot, .cursor-ring {
    display: none !important;
  }
  
  /* Hero Section Mobile Perfection */
  .hero {
    height: auto;
    min-height: 100dvh;
    padding-top: 85px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hero-image {
    background: linear-gradient(180deg, rgba(2, 4, 7, 0.78) 0%, rgba(2, 4, 7, 0.88) 55%, #020407 100%), 
                url('assets/hero-carnova.png') 68% center / cover no-repeat !important;
    transform: none !important;
    opacity: 0.92;
  }
  .hero-copy {
    padding: 16px 16px 0 !important;
    max-width: 100% !important;
    z-index: 4;
  }
  .hero .eyebrow {
    font-size: 10px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 12px !important;
    gap: 8px !important;
  }
  .hero .eyebrow span {
    width: 20px !important;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 7.8vw, 3.2rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 14px !important;
  }
  .hero h1 span, .hero h1 em {
    display: block !important;
    margin: 0 !important;
  }
  .hero-bottom {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
    margin-top: 18px !important;
  }
  .hero-bottom p {
    font-size: 13px !important;
    line-height: 1.65 !important;
    color: #cbd5e1 !important;
    margin-bottom: 14px !important;
    max-width: 100% !important;
  }
  .hero-bottom p br {
    display: none !important;
  }
  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .hero-actions .button {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 18px !important;
    font-size: 12px !important;
    border-radius: 12px !important;
  }
  .hero-actions .button-text {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    color: var(--white) !important;
    padding-left: 18px !important;
  }
  .hero-hud-left {
    display: none !important;
  }
  .hero-hud-right {
    bottom: 12px;
    right: 16px;
    transform: scale(0.7);
    transform-origin: right bottom;
  }
  .hero-meta {
    position: relative;
    inset: auto;
    margin-top: 28px;
    padding: 0 16px;
    font-size: 10px;
  }

  /* Section Headings & Padding Mobile */
  .section {
    padding: 60px 16px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .section h2 {
    font-size: clamp(2.1rem, 7.8vw, 3.2rem);
    line-height: 1.05;
  }
  .section-intro {
    max-width: 100%;
    font-size: 14px;
  }

  /* Product Card Mobile Display */
  .quick-buy {
    opacity: 1 !important;
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 14px;
    padding: 14px 16px;
    font-size: 13px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  }

  /* Atelier Section Mobile */
  .atelier {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 16px;
    min-height: auto;
  }
  .atelier-canvas {
    height: 280px;
    margin: 0;
    border-radius: 16px;
  }
  .atelier-copy {
    padding-right: 0;
    width: 100%;
  }
  .atelier-copy > p {
    margin: 20px 0;
    max-width: 100%;
  }
  .atelier-points {
    gap: 16px;
    margin: 24px 0;
  }
  .atelier-points div {
    min-width: 90px;
    flex: 1;
  }

  /* Experience Section Mobile */
  .experience {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .experience-list article {
    grid-template-columns: 36px 1fr;
    gap: 12px;
    padding: 20px 0;
  }
  .experience-list p {
    grid-column: 1 / -1;
    margin-top: 6px;
    font-size: 13px;
  }
  .experience-list i {
    display: none;
  }

  /* Instagram Showcase Section Mobile */
  .insta-showcase-section {
    padding: 40px 16px;
  }
  .insta-showcase-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .insta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .insta-actions .button {
    width: 100%;
    justify-content: center;
  }

  /* Reviews Section Mobile */
  .review-card {
    padding: 24px 18px;
    min-height: auto;
    border-radius: 16px;
  }
  .review-card blockquote {
    font-size: 17px;
    line-height: 1.5;
    margin: 20px 0;
  }

  /* Process Section Mobile */
  .process {
    padding-bottom: 70px;
  }
  .process-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .process-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    border-top: 0;
  }
  .process-track article {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px;
    min-height: auto;
    background: rgba(15, 23, 42, 0.5);
  }
  .process-track h3 {
    margin: 16px 0 8px;
    font-size: 18px;
  }

  /* Stats Grid Mobile */
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px 16px;
  }
  .stats div {
    padding-left: 0;
    border: 0;
  }
  .stats strong {
    font-size: 2.8rem;
  }

  /* FAQ & Contact Form Mobile */
  .faq-contact {
    grid-template-columns: 1fr;
    padding: 60px 16px;
    gap: 50px;
  }
  .faq h2 {
    margin-bottom: 24px;
  }
  .faq-item button {
    font-size: 16px;
    padding: 18px 0;
    gap: 12px;
  }
  .faq-item p {
    font-size: 13px;
    padding-right: 0;
  }
  .contact-card {
    padding: 28px 18px;
    border-radius: 20px;
    width: 100%;
  }
  .contact-card h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  /* Footer Mobile */
  .site-footer {
    padding-top: 50px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }
  .footer-bio {
    max-width: 100%;
    font-size: 13px;
    margin: 16px 0 20px;
  }
  .footer-bottom {
    padding: 24px 0;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-card {
    min-height: auto;
    padding: 20px 16px;
    border-radius: 18px;
  }
  .product-photo {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 20px;
    gap: 8px;
  }
  .logo-emblem {
    width: 36px;
    height: 36px;
    font-size: 13px;
    border-radius: 10px;
  }
  .logo-text sup {
    font-size: 9px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1px;
    gap: 8px;
  }
  .eyebrow span {
    width: 20px;
  }
  .hero h1 {
    font-size: 2.3rem;
  }
  .product-header-row {
    flex-direction: row;
    gap: 8px;
  }
  .product-price {
    font-size: 15px;
    padding: 2px 7px;
  }
  .product-info h3 {
    font-size: 17px;
  }
  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
