/*
Theme Name: Sonarex Networks
Theme URI: https://sonarexnetworks.com/
Author: shapeus.by
Author URI: https://shapeus.by/
Description: Custom WordPress theme for Sonarex Networks LLP — wholesale distributor of food products, nutritional supplements, frozen goods, and packaging materials based in Glasgow, Scotland. Features glassmorphism, bento grids, scroll animations, animated counters, marquee, Space Grotesk typography, and a blue-gold color palette. Developed by shapeus.by.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://sonarexnetworks.com/
Text Domain: sonarex
Tags: one-column, custom-menu, featured-images, translation-ready, custom-logo

Color Palette:
  Primary Blue:    #0066FF
  Gold Hover:      #FDB913
  Light Gold:      #FFD54F
  Aux Blue:        #3385FF
  Aux Gold:        #E5A500
  Green (Sustain): #059669
  Dark:            #0c1222
  Background:      #fafbfc
*/

/* ===================================================================
   RESET & BASE
   =================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fafbfc;
  color: #0c1222;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

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

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

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

/* ===================================================================
   TYPOGRAPHY
   =================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-hero {
  font-size: clamp(36px, 6.5vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.heading-section {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
}

.heading-subsection {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
}

.heading-card {
  font-size: 18px;
  font-weight: 600;
}

.text-muted {
  color: rgba(12, 18, 34, 0.4);
}

.text-faded {
  color: rgba(12, 18, 34, 0.25);
}

.text-subtle {
  color: rgba(12, 18, 34, 0.35);
}

.gradient-text-blue-gold {
  background: linear-gradient(to right, #0066FF, #FDB913);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green-gold {
  background: linear-gradient(to right, #059669, #FDB913);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-faded-heading {
  color: rgba(12, 18, 34, 0.2);
}

/* ===================================================================
   LAYOUT
   =================================================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

.container-narrow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container-narrow {
    padding: 0 40px;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.grid-5-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (min-width: 768px) {
  .grid-5-col { grid-template-columns: repeat(5, 1fr); }
}

/* ===================================================================
   BADGE / PILL
   =================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 16px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.badge-blue {
  background: rgba(0, 102, 255, 0.06);
  color: #0066FF;
}

.badge-gold {
  background: rgba(253, 185, 19, 0.1);
  color: #FDB913;
}

.badge-green {
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
}

.badge-white {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  color: rgba(12, 18, 34, 0.5);
  font-size: 10px;
  letter-spacing: 0.05em;
  padding: 4px 10px;
}

.badge-hero {
  border: 1px solid rgba(0, 102, 255, 0.12);
  background: rgba(0, 102, 255, 0.08);
}

.badge-hero .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FDB913;
  animation: pulse 2s ease-in-out infinite;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #0066FF;
  color: #fff;
}
.btn-primary:hover {
  background: #FDB913;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #0c1222;
}
.btn-white:hover {
  background: #FFD54F;
}

.btn-outline {
  background: transparent;
  color: rgba(12, 18, 34, 0.5);
  border: 1px solid rgba(12, 18, 34, 0.1);
  font-weight: 500;
}
.btn-outline:hover {
  border-color: rgba(12, 18, 34, 0.25);
  color: #0c1222;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn .icon-arrow {
  transition: transform 0.3s ease;
}
.btn:hover .icon-arrow {
  transform: translate(2px, -2px);
}

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  height: 72px;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .header-logo img {
    height: 40px;
  }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2px;
}
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  position: relative;
  padding: 8px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(12, 18, 34, 0.35);
  transition: all 0.3s ease;
}
.header-nav a:hover {
  color: rgba(12, 18, 34, 0.7);
}
.header-nav a.active {
  color: #0066FF;
  background: rgba(0, 102, 255, 0.06);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(12, 18, 34, 0.3);
  font-size: 12px;
  font-weight: 500;
}
.header-phone:hover {
  color: rgba(12, 18, 34, 0.6);
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(12, 18, 34, 0.6);
}
@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 28px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  color: rgba(12, 18, 34, 0.3);
  transition: color 0.3s ease;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: #FDB913;
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #eef4fa, #fafbfc, #fafbfc);
}

.hero-blob-1 {
  position: absolute;
  top: 33%;
  left: 25%;
  width: 500px;
  height: 500px;
  background: rgba(0, 102, 255, 0.03);
  border-radius: 50%;
  filter: blur(150px);
}

.hero-blob-2 {
  position: absolute;
  bottom: 25%;
  right: 33%;
  width: 300px;
  height: 300px;
  background: rgba(253, 185, 19, 0.04);
  border-radius: 50%;
  filter: blur(100px);
}

.hero-content {
  position: relative;
  width: 100%;
  padding-top: 128px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.12);
}
.hero-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero-image-wrap img {
    height: 480px;
  }
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 18, 34, 0.3), transparent, transparent);
}

/* Floating badges */
.floating-badge {
  position: absolute;
  border-radius: 12px;
  padding: 12px 16px;
  animation: float 3.5s ease-in-out infinite;
}

.floating-badge-bl {
  bottom: -16px;
  left: 16px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(12, 18, 34, 0.04);
}
@media (min-width: 768px) {
  .floating-badge-bl { left: 24px; }
}

.floating-badge-tr {
  top: -16px;
  right: 16px;
  background: #0066FF;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
  animation-delay: 0.8s;
}
@media (min-width: 768px) {
  .floating-badge-tr { right: 24px; }
}

.floating-badge-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stats bar */
.stats-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 112px;
    gap: 16px;
  }
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: #0c1222;
}

.stat-label {
  color: rgba(12, 18, 34, 0.25);
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(12, 18, 34, 0.15);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(12, 18, 34, 0.25);
  animation: scrollBounce 2s ease-in-out infinite;
}

/* ===================================================================
   MARQUEE
   =================================================================== */
.marquee-section {
  padding: 16px 0;
  border-top: 1px solid rgba(12, 18, 34, 0.04);
  border-bottom: 1px solid rgba(12, 18, 34, 0.04);
  overflow: hidden;
  background: #fff;
}

.marquee-track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 800;
  color: rgba(12, 18, 34, 0.05);
  flex-shrink: 0;
  user-select: none;
}

/* ===================================================================
   CARDS
   =================================================================== */
.card {
  background: #fff;
  border: 1px solid rgba(12, 18, 34, 0.04);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(12, 18, 34, 0.08);
}

.card-image {
  position: relative;
  height: 208px;
  overflow: hidden;
  background: #f0f5fa;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: all 0.7s ease;
}

.card:hover .card-image img {
  opacity: 1;
  transform: scale(1.05);
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.7), transparent, transparent);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.card-body {
  padding: 24px;
}

.card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #0c1222;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(12, 18, 34, 0.3);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #0066FF;
  transition: color 0.3s ease;
}

.card:hover .card-link {
  color: #FDB913;
}

/* Category cards (homepage) */
.cat-card-image {
  height: 224px;
}

.cat-card-body {
  padding: 28px;
}

.cat-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Value cards */
.value-card {
  background: #fff;
  border: 1px solid rgba(12, 18, 34, 0.04);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.5s ease;
}
.value-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(253, 185, 19, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #0066FF;
}

/* Milestone cards */
.milestone-card {
  background: #fafbfc;
  border: 1px solid rgba(12, 18, 34, 0.04);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.5s ease;
}
.milestone-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border-color: rgba(12, 18, 34, 0.08);
}

.milestone-year {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* ===================================================================
   SECTIONS
   =================================================================== */
.section {
  padding: 96px 0;
}
@media (min-width: 768px) {
  .section { padding: 128px 0; }
}

.section-sm {
  padding: 48px 0;
}

.section-bg-white {
  background: #fff;
}

.section-bordered {
  border-top: 1px solid rgba(12, 18, 34, 0.04);
  border-bottom: 1px solid rgba(12, 18, 34, 0.04);
}

.section-header {
  margin-bottom: 56px;
}

/* Page hero pattern */
.page-hero {
  position: relative;
  padding-top: 128px;
  padding-bottom: 64px;
  background: linear-gradient(to bottom, #eef4fa, #fafbfc);
  overflow: hidden;
}

.page-hero-green {
  background: linear-gradient(to bottom, #ecfdf5, #fafbfc);
}

.page-hero .blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(150px);
}

/* Full-width image banner */
.image-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0c1222;
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.image-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0c1222, rgba(12, 18, 34, 0.7), transparent);
}

.image-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 40px;
}
@media (min-width: 768px) {
  .image-banner-content { padding: 64px; }
}

/* CTA Block (dark) */
.cta-block {
  background: #0c1222;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-block { padding: 56px; }
}

.cta-block h3 {
  color: #fff;
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 12px;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 15px;
  line-height: 1.7;
  max-width: 512px;
  margin: 0 auto 32px;
}

/* ===================================================================
   PRODUCT PAGE
   =================================================================== */
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 64px;
}
@media (min-width: 1024px) {
  .product-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding-bottom: 96px;
  }
}

.product-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f0f5fa;
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}
@media (min-width: 640px) {
  .trust-badges { grid-template-columns: repeat(4, 1fr); }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(12, 18, 34, 0.04);
  border-radius: 12px;
  padding: 10px 12px;
}
.trust-badge svg {
  color: #0066FF;
  flex-shrink: 0;
}
.trust-badge span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(12, 18, 34, 0.4);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.benefit-item svg {
  color: #FDB913;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-item span {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 18, 34, 0.5);
}

/* Specs sidebar */
.specs-card {
  background: #fafbfc;
  border: 1px solid rgba(12, 18, 34, 0.04);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 100px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(12, 18, 34, 0.04);
}
.spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.use-case-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(0, 102, 255, 0.05);
  color: #0066FF;
  font-size: 11px;
  font-weight: 500;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.breadcrumb a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(12, 18, 34, 0.25);
}
.breadcrumb a:hover {
  color: rgba(12, 18, 34, 0.5);
}
.breadcrumb .sep {
  color: rgba(12, 18, 34, 0.15);
  font-size: 11px;
}
.breadcrumb .current {
  font-size: 12px;
  font-weight: 500;
  color: rgba(12, 18, 34, 0.5);
}

/* ===================================================================
   OFFERINGS PAGE
   =================================================================== */
.filter-bar {
  position: sticky;
  top: 72px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(12, 18, 34, 0.04);
  border-bottom: 1px solid rgba(12, 18, 34, 0.04);
  padding: 12px 0;
}

.filter-buttons {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.filter-buttons::-webkit-scrollbar { display: none; }

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: rgba(12, 18, 34, 0.03);
  color: rgba(12, 18, 34, 0.4);
}
.filter-btn:hover {
  color: rgba(12, 18, 34, 0.7);
  background: rgba(12, 18, 34, 0.06);
}
.filter-btn.active {
  background: #0066FF;
  color: #fff;
}

/* Category detail section */
.cat-detail {
  padding: 64px 0;
  background: #fff;
  border-bottom: 1px solid rgba(12, 18, 34, 0.04);
}

.cat-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .cat-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.cat-detail-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media (min-width: 1024px) {
  .cat-detail-image {
    position: sticky;
    top: 140px;
  }
}

.cat-quality-card {
  background: #fafbfc;
  border: 1px solid rgba(12, 18, 34, 0.04);
  border-radius: 12px;
  padding: 20px;
}

/* ===================================================================
   BLOG
   =================================================================== */
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fafbfc;
  border: 1px solid rgba(12, 18, 34, 0.04);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(12, 18, 34, 0.08);
}

.blog-card-image {
  position: relative;
  height: 176px;
  overflow: hidden;
  background: #f0f5fa;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Single blog content */
.blog-content h2 {
  font-size: 22px;
  margin: 32px 0 16px;
  color: #0c1222;
}

.blog-content p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(12, 18, 34, 0.45);
  margin-bottom: 20px;
}

.blog-content ul {
  margin: 16px 0 24px 20px;
}
.blog-content ul li {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(12, 18, 34, 0.4);
  margin-bottom: 8px;
}

.blog-content blockquote {
  border-left: 3px solid #FDB913;
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(253, 185, 19, 0.04);
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  color: rgba(12, 18, 34, 0.5);
  line-height: 1.7;
}

/* ===================================================================
   FAQ
   =================================================================== */
.faq-item {
  width: 100%;
  text-align: left;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(12, 18, 34, 0.04);
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}
.faq-item:hover {
  background: #fff;
  border-color: rgba(12, 18, 34, 0.06);
}
.faq-item.open {
  background: #fff;
  border-color: rgba(12, 18, 34, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.faq-q-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-cat-tag {
  flex-shrink: 0;
  margin-top: 2px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(0, 102, 255, 0.06);
  color: #0066FF;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #0c1222;
}

.faq-chevron {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(12, 18, 34, 0.2);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
}
.faq-answer p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(12, 18, 34, 0.35);
}
@media (min-width: 768px) {
  .faq-answer p {
    margin-left: calc(2rem + 8px);
  }
}

/* Search input */
.search-input-wrap {
  position: relative;
  width: 100%;
}
@media (min-width: 640px) {
  .search-input-wrap { width: 224px; }
}

.search-input {
  width: 100%;
  padding: 8px 32px 8px 36px;
  border-radius: 9999px;
  background: rgba(12, 18, 34, 0.03);
  border: 1px solid rgba(12, 18, 34, 0.05);
  font-size: 13px;
  color: #0c1222;
  outline: none;
  transition: border-color 0.3s ease;
}
.search-input::placeholder {
  color: rgba(12, 18, 34, 0.2);
}
.search-input:focus {
  border-color: rgba(0, 102, 255, 0.3);
}

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.form-card {
  background: #fff;
  border: 1px solid rgba(12, 18, 34, 0.04);
  border-radius: 16px;
  padding: 32px;
}
@media (min-width: 768px) {
  .form-card { padding: 40px; }
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(12, 18, 34, 0.02);
  border: 1px solid rgba(12, 18, 34, 0.06);
  font-size: 14px;
  color: #0c1222;
  outline: none;
  transition: all 0.3s ease;
}
.form-input::placeholder {
  color: rgba(12, 18, 34, 0.2);
}
.form-input:focus {
  border-color: rgba(0, 102, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(12, 18, 34, 0.4);
  margin-bottom: 8px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

.contact-info-card {
  background: #fff;
  border: 1px solid rgba(12, 18, 34, 0.04);
  border-radius: 16px;
  padding: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0066FF;
}

.partner-card {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.06), rgba(253, 185, 19, 0.04));
  border: 1px solid rgba(0, 102, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
}

/* Map Section */
.contact-map-section {
  padding-bottom: 80px;
}

.contact-map-header h2 {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: #0c1222;
  margin-bottom: 8px;
}

.contact-map-header p {
  font-size: 14px;
  color: rgba(12, 18, 34, 0.3);
  margin-bottom: 0;
}

.contact-map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(12, 18, 34, 0.04);
  background: #fff;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-map-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.contact-map-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-map-links a.link-primary {
  color: #0066FF;
}

.contact-map-links a.link-primary:hover {
  color: #FDB913;
}

.contact-map-links a.link-secondary {
  color: rgba(12, 18, 34, 0.35);
  font-weight: 500;
}

.contact-map-links a.link-secondary:hover {
  color: #0066FF;
}

.contact-map-links .divider {
  color: rgba(12, 18, 34, 0.15);
  font-size: 12px;
}

/* ===================================================================
   SUSTAINABILITY PAGE
   =================================================================== */
.sustain-practice {
  background: #fff;
  border: 1px solid rgba(12, 18, 34, 0.04);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.5s ease;
}
.sustain-practice:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border-color: rgba(12, 18, 34, 0.08);
}

.sustain-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(5, 150, 105, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #059669;
}

.commitment-stat {
  text-align: center;
}
.commitment-stat .pct {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
}
.commitment-stat .label {
  font-size: 13px;
  color: rgba(12, 18, 34, 0.35);
  margin-top: 8px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: #0c1222;
  color: #fff;
}

.footer-cta {
  padding: 96px 0;
}
@media (min-width: 768px) {
  .footer-cta { padding: 128px 0; }
}

.footer-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .footer-cta-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
}

.footer-cta .ready {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 16px;
}

.footer-gradient-text {
  background: linear-gradient(to right, #FDB913, #FFD54F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
  margin-bottom: 12px;
}
.footer-link:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-bottom-left img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.4;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ===================================================================
   COOKIE BANNER
   =================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 16px;
  pointer-events: none;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
@media (min-width: 768px) {
  .cookie-banner { padding: 24px; }
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-inner {
  max-width: 680px;
  margin: 0 auto;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(12, 18, 34, 0.06);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.cookie-main {
  padding: 20px;
}
@media (min-width: 768px) {
  .cookie-main { padding: 24px; }
}

.cookie-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0066FF;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.cookie-btn-accept {
  padding: 10px 20px;
  border-radius: 9999px;
  background: #0066FF;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.cookie-btn-accept:hover {
  background: #0055dd;
}

.cookie-btn-reject {
  padding: 10px 20px;
  border-radius: 9999px;
  background: rgba(12, 18, 34, 0.04);
  color: rgba(12, 18, 34, 0.5);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cookie-btn-reject:hover {
  background: rgba(12, 18, 34, 0.08);
  color: rgba(12, 18, 34, 0.7);
}

.cookie-btn-manage {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 9999px;
  color: rgba(12, 18, 34, 0.35);
  font-size: 12px;
  font-weight: 500;
}
.cookie-btn-manage:hover {
  color: rgba(12, 18, 34, 0.6);
}

/* Cookie preferences panel */
.cookie-prefs {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.cookie-prefs.open {
  max-height: 400px;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fafbfc;
  border: 1px solid rgba(12, 18, 34, 0.03);
}

.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  border-radius: 9999px;
  flex-shrink: 0;
  transition: background 0.3s ease;
  cursor: pointer;
}
.cookie-toggle.off {
  background: rgba(12, 18, 34, 0.1);
}
.cookie-toggle.on {
  background: #0066FF;
}
.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle-dot {
  position: absolute;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
}
.cookie-toggle.off .cookie-toggle-dot { left: 3px; }
.cookie-toggle.on .cookie-toggle-dot { left: 22px; }

/* ===================================================================
   FLOATING CTA
   =================================================================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-menu {
  width: 280px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(12, 18, 34, 0.06);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transform: translateY(10px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.floating-menu.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.floating-menu-header {
  background: linear-gradient(to right, #0066FF, #3385FF);
  padding: 20px;
  padding-bottom: 16px;
}

.floating-menu-options {
  padding: 12px;
}

.floating-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  transition: background 0.3s ease;
}
.floating-option:hover {
  background: rgba(0, 0, 0, 0.03);
}

.floating-option-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.25);
  transition: all 0.3s ease;
}
.floating-fab.closed {
  background: linear-gradient(135deg, #0066FF, #3385FF);
}
.floating-fab.closed:hover {
  background: linear-gradient(135deg, #0055dd, #0066FF);
}
.floating-fab.opened {
  background: #0c1222;
}
.floating-fab.opened:hover {
  background: #1a2540;
}

.floating-fab .pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.2);
  animation: pulse 2.5s ease-in-out infinite;
}

/* ===================================================================
   LEGAL PAGES
   =================================================================== */
.legal-content h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  color: #0c1222;
}
.legal-content h3 {
  font-size: 18px;
  margin: 24px 0 8px;
  color: #0c1222;
}
.legal-content p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(12, 18, 34, 0.4);
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 12px 0 20px 20px;
}
.legal-content ul li {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(12, 18, 34, 0.4);
  margin-bottom: 8px;
}

/* ===================================================================
   404 PAGE
   =================================================================== */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fafbfc;
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

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

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================================================================
   UTILITIES
   =================================================================== */
.aspect-21-9 {
  aspect-ratio: 21/9;
  min-height: 300px;
}

.aspect-4-3 {
  aspect-ratio: 4/3;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rounded-2xl { border-radius: 16px; }
.rounded-3xl { border-radius: 24px; }
.rounded-full { border-radius: 9999px; }

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-14 { margin-bottom: 56px; }

.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }

.space-y-2 > * + * { margin-top: 8px; }
.space-y-3 > * + * { margin-top: 12px; }
.space-y-4 > * + * { margin-top: 16px; }
.space-y-5 > * + * { margin-top: 20px; }

.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

.max-w-md { max-width: 448px; }
.max-w-lg { max-width: 512px; }
.max-w-xl { max-width: 576px; }
.max-w-2xl { max-width: 672px; }

.w-full { width: 100%; }

.hidden { display: none; }

@media (min-width: 1024px) {
  .lg-show { display: block; }
  .lg-hide { display: none; }
}