/* =========================================================
   Maruti Exports — main stylesheet (v2 redesign)
   Recreates the updated React/Tailwind design in plain CSS
   ========================================================= */

:root {
  --radius: 0.375rem;

  --background: oklch(0.98 0.008 85);
  --foreground: oklch(0.18 0.028 260);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.18 0.028 260);

  --primary: oklch(0.6 0.17 42);
  --primary-foreground: oklch(0.99 0.005 85);

  --secondary: oklch(0.955 0.01 80);
  --secondary-foreground: oklch(0.22 0.028 260);
  --muted-foreground: oklch(0.48 0.02 260);
  --accent: oklch(0.42 0.09 165);
  --border: oklch(0.9 0.01 80);
  --input: oklch(0.9 0.01 80);
  --ring: oklch(0.6 0.17 42);

  --hero-overlay: oklch(0.18 0.028 260 / 55%);
  --dark-section: oklch(0.18 0.028 260);
  --dark-section-foreground: oklch(0.98 0.008 85);
  --dark-section-muted: oklch(0.72 0.015 260);
  --glow: oklch(0.6 0.17 42 / 45%);

  --gradient-red: linear-gradient(120deg, oklch(0.6 0.17 42), oklch(0.68 0.15 55));
  --gradient-aurora:
    radial-gradient(1000px 500px at 10% -20%, oklch(0.6 0.17 42 / 10%), transparent 60%),
    radial-gradient(900px 500px at 100% 10%, oklch(0.42 0.09 165 / 8%), transparent 60%);
  --gradient-panel: linear-gradient(145deg, oklch(1 0 0 / 92%), oklch(0.97 0.008 85 / 88%));
  --grid-line: oklch(0.18 0.028 260 / 5%);
  --shadow-card: 0 20px 60px -30px oklch(0.18 0.028 260 / 22%), 0 1px 0 oklch(0.18 0.028 260 / 4%);
  --shadow-red: 0 12px 36px -12px oklch(0.6 0.17 42 / 50%), 0 4px 12px -4px oklch(0.6 0.17 42 / 30%);

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--background);
  background-image: var(--gradient-aurora);
  background-attachment: fixed;
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
::selection { background: oklch(0.6 0.17 42 / 25%); color: oklch(0.15 0.028 260); }

.container { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
.screen-reader-text { position: absolute; left: -9999px; }

.eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4em; color: var(--primary); }
.text-gradient-gold {
  background: linear-gradient(100deg, oklch(0.55 0.18 32), oklch(0.65 0.17 48) 45%, oklch(0.45 0.11 160) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grid-bg {
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
}
.overlay-abs { position: absolute; inset: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border-radius: 999px; padding: 0.6rem 1.25rem; font-weight: 600; font-size: 0.85rem;
  border: none; transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .btn {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
  }
}
.btn-primary { background-image: var(--gradient-red); color: var(--primary-foreground); box-shadow: var(--shadow-red); }
.btn-primary:hover { transform: scale(1.03); color: var(--primary-foreground); }
.btn-outline-light { border: 1px solid oklch(0.99 0.005 85 / 30%); background: oklch(0.99 0.005 85 / 10%); color: var(--primary-foreground); backdrop-filter: blur(6px); }
.btn-outline-light:hover { background: oklch(0.99 0.005 85 / 20%); color: var(--primary-foreground); }
.btn-light { background: var(--card); color: var(--primary); box-shadow: var(--shadow-card); }
.btn-light:hover { transform: scale(1.03); }
.btn-ghost { border: 1px solid oklch(0.18 0.028 260 / 20%); background: var(--card); color: var(--foreground); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: oklch(0.6 0.17 42 / 50%); color: var(--primary); }
.btn-outline { border: 1px solid var(--border); background: var(--card); color: var(--foreground); font-weight: 600; font-size: 0.8rem; border-radius: var(--radius); }
.btn-outline:hover { background: var(--secondary); }
.btn-outline-primary { border: 1px solid oklch(0.6 0.17 42 / 40%); background: oklch(0.6 0.17 42 / 5%); color: var(--primary); font-size: 0.8rem; font-weight: 600; }
.btn-outline-primary:hover { background: oklch(0.6 0.17 42 / 10%); }
.btn-block { width: 100%; }


.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--border); background: oklch(0.98 0.008 85 / 92%); backdrop-filter: blur(10px); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 768px) { .site-header .container { height: 5rem; } }
.site-branding a { display: flex; align-items: center; gap: 0.75rem; }
.site-logo-img { height: 50px; width: 50px; object-fit: contain; }
@media (min-width: 768px) { .site-logo-img { height: 2rem; } }
.site-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--foreground); }
.site-logo-text span { color: var(--primary); }
.primary-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .primary-nav { display: flex; } }
.primary-nav ul { display: flex; align-items: center; gap: 2rem; }
.primary-nav a { font-size: 0.9rem; font-weight: 500; color:#4C4C4C; transition: color 0.2s ease; }
.primary-nav a:hover, .primary-nav .current-menu-item > a, .primary-nav .current_page_item > a { color: #000; }
.nav-phone-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.nav-phone-btn svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
.menu-toggle { display: inline-flex; background: none; border: none; padding: 0.5rem; color: var(--foreground); }
@media (min-width: 768px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 1.5rem; height: 1.5rem; }
.mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--background); padding: 0 1rem 1rem; }
.mobile-nav.is-open { display: block; }
@media (min-width: 768px) { .mobile-nav { display: none !important; } }
.mobile-nav a { display: block; border-bottom: 1px solid var(--border); padding: 0.75rem 0; font-size: 0.9rem; font-weight: 500; color: var(--foreground); }
.mobile-nav .current-menu-item > a, .mobile-nav .current_page_item > a { color: var(--primary); }
.mobile-nav .nav-phone-btn { margin-top: 1rem; justify-content: center;display: flex; align-items: center; padding: 0.75rem 1rem; width: 100%; }
.mobile-nav .nav-phone-btn svg { width: 1.1rem; height: 1.1rem; }

.hero-slider { position: relative; display: flex; align-items: center; min-height: 90vh; overflow: hidden; isolation: isolate; }
.hero-slide-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; }
.hero-slide-img.is-active { opacity: 1; }
.hero-slider .overlay-gradient { position: absolute; inset: 0; background: linear-gradient(to right, oklch(0.18 0.028 260 / 85%), oklch(0.18 0.028 260 / 60%), oklch(0.18 0.028 260 / 20%)); }
.hero-slider .overlay-grid { position: absolute; inset: 0; opacity: 0.25; mix-blend-mode: overlay; }
.hero-slider-inner { position: relative; width: 100%; padding: 6rem 1rem; margin: 0 auto; max-width: 72rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; border: 1px solid oklch(0.99 0.005 85 / 25%); background: oklch(0.99 0.005 85 / 10%); padding: 0.4rem 1rem; font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3em; color: var(--primary-foreground); backdrop-filter: blur(6px); }
.hero-badge .dot { width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--primary); box-shadow: 0 0 12px var(--glow); }
.hero-slide-title { margin-top: 1.5rem; max-width: 48rem; font-size: 2.5rem; font-weight: 700; line-height: 1.1; color: var(--primary-foreground); text-wrap: balance; }
@media (min-width: 768px) { .hero-slide-title { font-size: 4rem; } }
@media (min-width: 1024px) { .hero-slide-title { font-size: 4.5rem; } }
.hero-slide-lede { margin-top: 2rem; max-width: 42rem; font-size: 1.125rem; line-height: 1.7; color: oklch(0.99 0.005 85 / 85%); }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-controls { margin-top: 4rem; display: flex; align-items: center; gap: 1rem; }
.hero-arrow { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 1px solid oklch(0.99 0.005 85 / 25%); background: oklch(0.99 0.005 85 / 10%); color: var(--primary-foreground); backdrop-filter: blur(6px); transition: color 0.2s ease, border-color 0.2s ease; }
.hero-arrow:hover { border-color: var(--primary); color: var(--primary); }
.hero-arrow svg { width: 1.25rem; height: 1.25rem; }
.hero-dots { margin-left: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.hero-dot { height: 0.375rem; width: 1.25rem; border-radius: 999px; background: oklch(0.99 0.005 85 / 40%); border: none; transition: all 0.2s ease; padding: 0; }
.hero-dot:hover { background: oklch(0.99 0.005 85 / 70%); }
.hero-dot.is-active { width: 2.5rem; background: var(--primary); }
.hero-counter { margin-left: auto; display: none; font-family: var(--font-display); font-size: 0.9rem; color: oklch(0.99 0.005 85 / 80%); }
@media (min-width: 768px) { .hero-counter { display: block; } }
.hero-counter .current { color: var(--primary-foreground); }
.hero-counter .sep { margin: 0 0.5rem; color: oklch(0.99 0.005 85 / 40%); }

.page-hero { position: relative; overflow: hidden; }
.page-hero-inner { position: relative; margin: 0 auto; max-width: 72rem; padding: 8rem 1rem; }
.page-hero.is-dark { background: var(--dark-section); color: var(--dark-section-foreground); }
.page-hero .eyebrow.on-dark { color: oklch(0.99 0.005 85 / 80%); }
.page-hero h1 { margin-top: 1rem; max-width: 48rem; font-size: 2.5rem; font-weight: 700; color: var(--primary-foreground); text-wrap: balance; }
@media (min-width: 768px) { .page-hero h1 { font-size: 3.75rem; } }
.page-hero p.lede { margin-top: 1.5rem; max-width: 42rem; font-size: 1.125rem; color: oklch(0.99 0.005 85 / 85%); }
.radial-accent { position: absolute; inset: 0; background: radial-gradient(700px 320px at 80% 0%, oklch(0.6 0.17 42 / 25%), transparent 70%); }
.back-link { position: relative; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; color: oklch(0.99 0.005 85 / 80%); }
.back-link:hover { color: var(--primary-foreground); }
.back-link svg { width: 1rem; height: 1rem; }

.quick-facts { margin-top: 2.5rem; display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .quick-facts { grid-template-columns: repeat(3, 1fr); } }
.quick-fact { display: flex; align-items: flex-start; gap: 0.75rem; border-radius: var(--radius); border: 1px solid oklch(0.99 0.005 85 / 10%); background: oklch(0.99 0.005 85 / 4%); padding: 1rem; backdrop-filter: blur(6px); }
.quick-fact .icon-sq { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; flex-shrink: 0; border-radius: var(--radius); background: oklch(0.6 0.17 42 / 15%); color: var(--primary); box-shadow: inset 0 0 0 1px oklch(0.6 0.17 42 / 30%); }
.quick-fact .icon-sq svg { width: 1.25rem; height: 1.25rem; }
.quick-fact-title { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; }
.quick-fact-text { margin-top: 0.15rem; font-size: 0.75rem; color: var(--dark-section-muted); }

.stat-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--card); }
.stat-strip-grid { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 72rem; margin: 0 auto; }
@media (min-width: 768px) { .stat-strip-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-cell { padding: 2rem 1.5rem; text-align: center; border-left: 1px solid var(--border); }
.stat-cell:first-child { border-left: none; }
@media (min-width: 768px) { .stat-cell { padding: 2.5rem 1.5rem; } }
.stat-value { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; }
@media (min-width: 768px) { .stat-value { font-size: 2.25rem; } }
.stat-label { margin-top: 0.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-foreground); }

.section { padding: 6rem 0; }
.section-head { display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; }
@media (min-width: 768px) { .section-head { flex-direction: row; align-items: flex-end; } }
.section-title { margin-top: 1rem; font-size: 2.25rem; font-weight: 700; }
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-title.max-w { max-width: 42rem; }
.section-lede { margin-top: 1rem; max-width: 28rem; font-size: 0.9rem; color: var(--muted-foreground); }
.section-alt { background: oklch(0.955 0.01 80 / 40%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark { background: var(--dark-section); color: var(--dark-section-foreground); }

.products-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-card); transition: transform 0.3s ease, box-shadow 0.3s ease; display: block; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 0 0 1px oklch(0.6 0.17 42 / 35%), 0 12px 32px -12px oklch(0.6 0.17 42 / 25%); }
.product-card-img-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.product-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-fade { position: absolute; inset-inline: 0; bottom: 0; height: 6rem; background: linear-gradient(to top, var(--card), oklch(1 0 0 / 40%), transparent); }
.product-card-body { padding: 1.25rem; }
.product-card-body h3 { font-size: 1.125rem; font-weight: 600; transition: color 0.2s ease; }
.product-card:hover .product-card-body h3 { color: var(--primary); }
.product-card-body p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.product-card-link { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); }

.facility-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .facility-grid { grid-template-columns: repeat(2, 1fr); } }
.facility-media { position: relative; }
.facility-media-main { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.facility-media-main img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.facility-floater { position: absolute; bottom: -2rem; right: -1.5rem; display: none; width: 16rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 1.25rem; box-shadow: var(--shadow-card); }
@media (min-width: 640px) { .facility-floater { display: block; } }
.facility-floater img { height: 8rem; width: 100%; border-radius: var(--radius); object-fit: cover; }
.facility-floater .tag { margin-top: 0.75rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); }
.facility-floater .note { margin-top: 0.25rem; font-size: 0.7rem; color: var(--muted-foreground); }
.feature-list { margin-top: 2rem; display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
.feature-list li { display: flex; align-items: center; gap: 0.5rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 0.75rem 1rem; font-size: 0.875rem; }
.feature-list .bullet { width: 0.375rem; height: 0.375rem; flex-shrink: 0; border-radius: 50%; background: var(--primary); }

.why-head-row { display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; }
@media (min-width: 768px) { .why-head-row { flex-direction: row; align-items: flex-end; } }
.badge-pill { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; border: 1px solid oklch(0.6 0.17 42 / 30%); background: oklch(0.6 0.17 42 / 5%); padding: 0.5rem 1rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); }
.badge-pill svg { width: 1rem; height: 1rem; }

.why-grid, .process-grid { margin-top: 3.5rem; display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid, .process-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card, .process-card { border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 1.5rem; box-shadow: var(--shadow-card); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px oklch(0.6 0.17 42 / 35%), 0 12px 32px -12px oklch(0.6 0.17 42 / 25%); }
.icon-badge { display: inline-flex; border-radius: var(--radius); background: oklch(0.6 0.17 42 / 10%); padding: 0.75rem; color: var(--primary); box-shadow: inset 0 0 0 1px oklch(0.6 0.17 42 / 30%); }
.icon-badge svg { width: 1.25rem; height: 1.25rem; }
.why-card-top, .process-card-top { display: flex; align-items: baseline; justify-content: space-between; }
.why-index, .process-index { font-family: var(--font-display); font-size: 0.75rem; color: var(--muted-foreground); }
.process-index { font-size: 1.875rem; font-weight: 700; color: oklch(0.6 0.17 42 / 20%); }
.why-card h3, .process-card h3 { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 600; }
.why-card p, .process-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

.industries-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
.industry-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.industry-row { display: flex; align-items: center; gap: 1rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 1rem 1.25rem; box-shadow: var(--shadow-card); transition: border-color 0.2s ease; }
.industry-row:hover { border-color: oklch(0.6 0.17 42 / 40%); }
.industry-icon { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; flex-shrink: 0; border-radius: var(--radius); background: oklch(0.6 0.17 42 / 10%); color: var(--primary); box-shadow: inset 0 0 0 1px oklch(0.6 0.17 42 / 30%); }
.industry-icon svg { width: 1.25rem; height: 1.25rem; }
.industry-name { font-family: var(--font-display); font-weight: 600; }
.industry-note { font-size: 0.75rem; color: var(--muted-foreground); }
.map-card { border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 1rem; box-shadow: var(--shadow-card); }
.map-card img { aspect-ratio: 16/9; width: 100%; border-radius: calc(var(--radius) - 2px); object-fit: cover; }
.market-tags { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.market-tag { border-radius: 999px; border: 1px solid var(--border); background: var(--secondary); padding: 0.25rem 0.75rem; font-size: 0.75rem; color: oklch(0.18 0.028 260 / 80%); }
.market-tag.more { border: none; background: oklch(0.6 0.17 42 / 10%); font-weight: 600; color: var(--primary); }

.reviews-section { position: relative; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reviews-radial { position: absolute; inset: 0; background: radial-gradient(700px 320px at 80% 0%, oklch(0.6 0.17 42 / 25%), transparent 70%); }
.reviews-stars-pill { display: inline-flex; align-items: center; gap: 0.25rem; border-radius: 999px; border: 1px solid oklch(0.6 0.17 42 / 30%); background: oklch(0.6 0.17 42 / 10%); padding: 0.5rem 1rem; }
.reviews-stars-pill svg { width: 1rem; height: 1rem; fill: var(--primary); color: var(--primary); }
.reviews-stars-pill span { margin-left: 0.5rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--dark-section-muted); }
.reviews-grid { margin-top: 3.5rem; display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { display: flex; flex-direction: column; height: 100%; border-radius: var(--radius); border: 1px solid oklch(0.99 0.005 85 / 10%); background: oklch(0.99 0.005 85 / 4%); padding: 1.5rem; backdrop-filter: blur(6px); transition: transform 0.2s ease, border-color 0.2s ease; }
.review-card:hover { transform: translateY(-4px); border-color: oklch(0.6 0.17 42 / 40%); }
.review-card .quote-icon { width: 2rem; height: 2rem; color: var(--primary); opacity: 0.8; }
.review-card blockquote { margin: 1rem 0 0; flex: 1; font-size: 0.875rem; line-height: 1.6; color: oklch(0.98 0.008 85 / 90%); }
.review-stars { margin-top: 1rem; display: flex; gap: 0.25rem; }
.review-stars svg { width: 0.875rem; height: 0.875rem; fill: var(--primary); color: var(--primary); }
.review-footer { margin-top: 1.25rem; border-top: 1px solid oklch(0.99 0.005 85 / 10%); padding-top: 1rem; }
.review-name { font-family: var(--font-display); font-weight: 600; color: var(--dark-section-foreground); }
.review-role { font-size: 0.75rem; color: var(--dark-section-muted); }
.review-country { margin-top: 0.25rem; font-size: 0.75rem; font-weight: 600; color: var(--primary); }

.faq-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 1.4fr; } }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 1.25rem; box-shadow: var(--shadow-card); }
.faq-item[open] { box-shadow: 0 0 0 1px oklch(0.6 0.17 42 / 30%), var(--shadow-card); }
.faq-item summary { display: flex; cursor: pointer; list-style: none; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span.q { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.faq-item summary svg { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--primary); transform: rotate(45deg); transition: transform 0.2s ease; }
.faq-item[open] summary svg { transform: rotate(90deg); }
.faq-item p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

.cta-section { position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.cta-radial { position: absolute; inset: 0; background: radial-gradient(800px 400px at 50% 120%, oklch(0.6 0.17 42 / 28%), transparent 70%); }
.cta-grid-bg { position: absolute; inset: 0; opacity: 0.4; }
.cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; padding: 6rem 1rem; text-align: center; max-width: 56rem; margin: 0 auto; }
.cta-inner h2 { font-size: 2.25rem; font-weight: 700; }
@media (min-width: 768px) { .cta-inner h2 { font-size: 3rem; } }
.cta-inner > p { max-width: 36rem; color: var(--muted-foreground); }
.cta-actions { margin-top: 0.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.category-nav { border-bottom: 1px solid var(--border); background: var(--card); }
.category-nav-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; padding: 1rem; max-width: 72rem; margin: 0 auto; }
.category-nav-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-foreground); }
.category-nav-link { border-radius: 999px; border: 1px solid var(--border); background: var(--secondary); padding: 0.4rem 0.9rem; font-size: 0.75rem; font-weight: 600; color: oklch(0.18 0.028 260 / 80%); }
.category-nav-link:hover { border-color: oklch(0.6 0.17 42 / 40%); color: var(--primary); }

.product-rows { display: flex; flex-direction: column; gap: 6rem; }
.product-row { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; scroll-margin-top: 6rem; }
@media (min-width: 1024px) { .product-row { grid-template-columns: repeat(2, 1fr); } }
.product-row.reverse .product-row-media { order: 2; }
.product-row-media { position: relative; }
.product-row-media-inner { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.product-row-img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.product-row-badge { position: absolute; bottom: -1.5rem; right: -1rem; display: none; border-radius: 999px; background: var(--primary); padding: 0.5rem 1.25rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary-foreground); box-shadow: var(--shadow-red); }
@media (min-width: 640px) { .product-row-badge { display: block; } }
.product-row h2 { margin-top: 1rem; font-size: 1.875rem; font-weight: 700; }
.product-row .tagline { margin-top: 0.5rem; font-weight: 500; color: var(--primary); }
.product-row .description { margin-top: 1rem; line-height: 1.6; color: var(--muted-foreground); }
.product-row .highlight-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.product-row .highlight-list li { display: flex; gap: 0.75rem; font-size: 0.875rem; }
.product-row .highlight-list svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15rem; color: var(--primary); }
.product-row .item-list { margin-top: 1.5rem; display: grid; gap: 0.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .product-row .item-list { grid-template-columns: repeat(2, 1fr); } }
.product-row .item-list li { border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 0.75rem 1rem; font-size: 0.875rem; box-shadow: var(--shadow-card); }
.product-row .item-list .item-name { font-weight: 600; }
.product-row .item-list .item-detail { margin-top: 0.15rem; font-size: 0.75rem; color: var(--muted-foreground); }
.product-row .btn { margin-top: 2rem; }

.quality-band-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .quality-band-grid { grid-template-columns: 1fr 1.3fr; } }
.quality-band-media { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.quality-band-media img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.quality-steps { margin-top: 2rem; display: grid; gap: 1rem; }
.quality-step { display: flex; gap: 1rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 1.25rem; box-shadow: var(--shadow-card); }
.quality-step .icon-badge { flex-shrink: 0; width: 2.75rem; height: 2.75rem; padding: 0; display: grid; place-items: center; }
.quality-step-title { font-family: var(--font-display); font-weight: 600; }
.quality-step-text { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

.product-detail { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .product-detail { grid-template-columns: 1.2fr 1fr; } }
.product-detail h2 { font-size: 1.5rem; font-weight: 700; }
.product-detail .description { margin-top: 1rem; line-height: 1.6; color: var(--muted-foreground); }
.product-range-grid { margin-top: 1.5rem; display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .product-range-grid { grid-template-columns: repeat(2, 1fr); } }
.product-range-item { border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 1.25rem; box-shadow: var(--shadow-card); }
.product-range-item h3 { font-weight: 600; }
.product-range-item p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

.aside-stack { display: flex; flex-direction: column; gap: 1.5rem; }
.highlight-box { border-radius: var(--radius); background: var(--dark-section); color: var(--dark-section-foreground); padding: 1.5rem; box-shadow: var(--shadow-card); }
.highlight-box h3 { font-size: 1.125rem; font-weight: 600; }
.highlight-box h3 .accent { color: var(--primary); }
.highlight-box ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.highlight-box li { display: flex; gap: 0.75rem; font-size: 0.875rem; }
.highlight-box li svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15rem; color: var(--primary); }

.quote-box { border-radius: var(--radius); border: 1px solid var(--border); background: var(--secondary); padding: 1.5rem; }
.quote-box h3 { font-size: 1.125rem; font-weight: 600; }
.quote-box p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.quote-box .btn-stack { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.quote-box .btn { font-size: 0.875rem; padding: 0.75rem 1rem; margin-top: 0; }

.about-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1.2fr 1fr; } }
.about-grid h2 { font-size: 1.875rem; font-weight: 700; }
.about-copy { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; line-height: 1.6; color: var(--muted-foreground); }
.address-box { margin-top: 2rem; display: flex; align-items: flex-start; gap: 0.75rem; border-radius: var(--radius); border: 1px solid var(--border); background: oklch(0.955 0.01 80 / 60%); padding: 1.25rem; }
.address-box svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.15rem; color: var(--primary); }
.address-box p { font-size: 0.875rem; }
.values-box { border-radius: var(--radius); background: var(--dark-section); color: var(--dark-section-foreground); padding: 2rem; box-shadow: var(--shadow-card); }
.values-box h3 { font-size: 1.25rem; font-weight: 600; }
.values-box h3 .accent { color: var(--primary); }
.values-box ul { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.values-box li { display: flex; gap: 0.75rem; }
.values-box li svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.15rem; color: var(--primary); }
.values-box li span { font-size: 0.875rem; line-height: 1.6; color: oklch(0.98 0.008 85 / 90%); }
.values-box .btn { margin-top: 2rem; }

.pillars-grid { margin-top: 3rem; display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar-card { border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 1.75rem; box-shadow: var(--shadow-card); }
.pillar-card h3 { margin-top: 1.25rem; font-size: 1.25rem; font-weight: 600; }
.pillar-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

.gallery-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-grid .span-2 { grid-column: span 1; }
@media (min-width: 768px) { .gallery-grid .span-2 { grid-column: span 2; } }
.gallery-grid figure { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-card); margin: 0; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid .span-2 img { aspect-ratio: 16/10; }

.timeline-list { margin-top: 3.5rem; display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .timeline-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .timeline-list { grid-template-columns: repeat(5, 1fr); } }
.timeline-item { border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 1.25rem; box-shadow: var(--shadow-card); }
.timeline-year { display: flex; align-items: center; gap: 0.5rem; color: var(--primary); }
.timeline-year svg { width: 1rem; height: 1rem; }
.timeline-year span { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.timeline-item h3 { margin-top: 0.75rem; font-size: 0.875rem; font-weight: 600; }
.timeline-item p { margin-top: 0.5rem; font-size: 0.75rem; line-height: 1.6; color: var(--muted-foreground); }

.cert-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
.cert-card { border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 1.25rem; box-shadow: var(--shadow-card); }
.cert-card .row { display: flex; align-items: center; gap: 0.5rem; color: var(--primary); }
.cert-card .row svg { width: 1rem; height: 1rem; }
.cert-card .row span { font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; }
.cert-card p { margin-top: 0.5rem; font-size: 0.75rem; color: var(--muted-foreground); }

.contact-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-stack { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 1.5rem; box-shadow: var(--shadow-card); }
.contact-card-person { display: flex; align-items: center; gap: 0.75rem; }
.contact-card-person h3 { font-weight: 600; }
.contact-card-person p { font-size: 0.875rem; color: var(--muted-foreground); }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-links a { display: flex; align-items: center; gap: 0.75rem; }
.contact-links a:hover { color: var(--primary); }
.contact-links svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; }
.contact-links .address-line { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; line-height: 1.6; }
.contact-links .address-line svg { margin-top: 0.15rem; }
.office-hours-title { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); }
.office-hours-list { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.office-hours-list li { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
.office-hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.office-hours-list .day { color: var(--muted-foreground); }
.office-hours-list .hours { font-weight: 500; }
.map-embed { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.map-embed iframe { height: 18rem; width: 100%; border: 0; display: block; }

.contact-form-card { height: fit-content; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); padding: 2rem; box-shadow: var(--shadow-card); }
.contact-form-card h2 { font-size: 1.5rem; font-weight: 700; }
.contact-form-card > p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.form-fields { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.form-fields .btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  gap: 0.6rem;
}
.form-fields .btn svg {
  width: 1.1rem;
  height: 1.1rem;
}
.form-field label { font-size: 0.875rem; font-weight: 600; display: block; margin-bottom: 0.4rem; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border-radius: var(--radius); border: 1px solid var(--input); background: var(--background); padding: 0.65rem 1rem; font-size: 0.875rem; outline: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { box-shadow: 0 0 0 2px var(--ring); }

.site-footer { background: var(--dark-section); color: var(--dark-section-foreground); }
.footer-grid { display: grid; gap: 2.5rem; padding: 3.5rem 1rem; max-width: 72rem; margin: 0 auto; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-grid h3 { font-size: 1.25rem; font-weight: 700; }
.footer-grid h3 span { color: var(--primary); }
.footer-grid h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--dark-section-muted); }
.footer-about p { margin-top: 1rem; font-size: 0.875rem; line-height: 1.6; color: var(--dark-section-muted); }
.footer-links { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: oklch(0.98 0.008 85 / 90%); }
.footer-links a:hover { color: var(--primary); }
.footer-contact { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.footer-contact li { display: flex; gap: 0.75rem; align-items: flex-start; }
.footer-contact svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.15rem; color: var(--primary); }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid oklch(0.99 0.005 85 / 10%); padding: 1.25rem 1rem; text-align: center; font-size: 0.75rem; color: var(--dark-section-muted); }

.simple-page { max-width: 42rem; margin: 0 auto; padding: 8rem 1rem; text-align: center; }
.simple-page h1 { font-size: 1.875rem; font-weight: 700; }
.simple-page p { margin-top: 0.75rem; color: var(--muted-foreground); }
.simple-page .btn { margin-top: 1.5rem; }

.generic-content { max-width: 48rem; margin: 0 auto; padding: 4rem 1rem; line-height: 1.7; }
.generic-content h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; }
