/* ============================================================
   AIDOWELL — PREMIUM SMARTWATCH RATGEBER
   style.css — ALL styles here only
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,700;1,9..144,300;1,9..144,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-bg:             #F9FAFB;
  --color-bg-dark:        #111827;
  --color-bg-card:        #FFFFFF;
  --color-bg-alt:         #F3F4F6;
  --color-primary:        #7C3AED;
  --color-primary-dark:   #6D28D9;
  --color-primary-light:  #EDE9FE;
  --color-accent:         #C9A96E;
  --color-accent-light:   #FDF6EC;
  --color-text-primary:   #111827;
  --color-text-secondary: #374151;
  --color-text-muted:     #9CA3AF;
  --color-border:         #E5E7EB;
  --color-cta:            #7C3AED;
  --color-cta-hover:      #6D28D9;
  --color-success:        #059669;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 6px rgba(124, 58, 237, 0.07);
  --shadow-md:   0 4px 20px rgba(124, 58, 237, 0.10);
  --shadow-lg:   0 8px 40px rgba(124, 58, 237, 0.14);
  --transition:  all 0.3s ease;
  --container:   1280px;
  --section-py:  clamp(60px, 8vw, 120px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  color: var(--color-text-primary);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
.font-serif    { font-family: 'Fraunces', serif; }
.font-mono     { font-family: 'JetBrains Mono', monospace; }
.font-sans     { font-family: 'Plus Jakarta Sans', sans-serif; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.section-py {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.text-center { text-align: center; }
.text-white  { color: #FFFFFF; }
.text-muted  { color: var(--color-text-muted); }
.text-violet { color: var(--color-primary); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1        { gap: 0.5rem; }
.gap-2        { gap: 1rem; }
.gap-3        { gap: 1.5rem; }

/* Utility: section alt background */
.bg-alt { background: var(--color-bg-alt); }

/* Utility: margin top */
.mt-2 { margin-top: 2rem; }

/* Utility: muted white text (on dark backgrounds) */
.text-muted-white { color: rgba(255,255,255,0.55); }

/* Utility: centered faq list with max-width */
.faq-list--centered {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Utility: footer email link color */
.footer-email-link { color: var(--color-accent) !important; }

/* ============================================================
   5. PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.preloader-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: dotBounce 1.4s ease-in-out infinite;
}

.preloader-dots span:nth-child(2) { animation-delay: 0.2s; }
.preloader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40%           { transform: translateY(-16px); opacity: 1; }
}

.preloader-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ============================================================
   6. DISCLOSURE BAR
   ============================================================ */
.disclosure-bar {
  background: var(--color-primary);
  color: #FFFFFF;
  text-align: center;
  padding: 0 1rem;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.69rem;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 101;
}

/* ============================================================
   7. NAVBAR
   ============================================================ */

/* Body spacer: pushes content below the fixed disclosure (38px) + navbar (70px) */
body {
  padding-top: 108px;
}

/* Hero is full-viewport — subtract the spacer so it stays visually full-height */
.hero {
  margin-top: -108px;
  padding-top: 108px;
}

.navbar {
  position: fixed;
  top: 38px; /* sits directly below the fixed disclosure bar */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.navbar-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.navbar-links a:hover { color: var(--color-primary); }
.navbar-links a:hover::after { width: 100%; }

/* Navbar default (semi-transparent dark): white text */
.navbar .navbar-links a { color: rgba(255,255,255,0.85); }
.navbar .navbar-links a:hover { color: #fff; }
.navbar .navbar-logo { color: #C9A96E; }

/* On dark hero pages — same, redundant but kept for clarity */
.navbar--dark .navbar-links a { color: rgba(255,255,255,0.85); }
.navbar--dark .navbar-links a:hover { color: #fff; }
.navbar--dark .navbar-logo { color: #C9A96E; }

/* After scroll (white bg): switch to dark/violet */
.navbar.scrolled .navbar-logo { color: var(--color-primary); }
.navbar.scrolled .navbar-links a { color: var(--color-text-secondary); }
.navbar.scrolled .navbar-links a:hover { color: var(--color-primary); }
.navbar.scrolled .hamburger span { background: var(--color-text-primary); }


/* Light-page navbar (order.php, review, contact, legal) — starts white/light */
.navbar--light {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.navbar--light .navbar-logo { color: var(--color-primary); }
.navbar--light .navbar-links a { color: var(--color-text-secondary); }
.navbar--light .navbar-links a:hover { color: var(--color-primary); }
.navbar--light .hamburger span { background: var(--color-text-primary); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: var(--transition);
  transform-origin: center;
}

.navbar--dark .hamburger span { background: #fff; }

body.nav-open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.97);
  z-index: 85;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s;
}

body.nav-open .nav-overlay {
  opacity: 1;
  transform: translateX(0);
}

.nav-overlay a {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}

.nav-overlay a:hover { color: var(--color-accent); }

/* ============================================================
   8. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary-light);
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
}

/* CTA in navbar */
.btn-nav {
  background: var(--color-primary);
  color: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero {
  background: var(--color-bg-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 1.2rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: var(--radius-sm);
  background: rgba(201,169,110,0.08);
}

.hero-title {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}

.hero-title .italic-light {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent);
}

.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

.hero-pill-check {
  color: var(--color-success);
  font-size: 0.9rem;
}

.hero-price-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(124, 58, 237, 0.1);
  border: 1.5px solid var(--color-primary);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}

.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.35) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.hero-img-wrap img {
  position: relative;
  z-index: 2;
  max-height: 520px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(124, 58, 237, 0.3));
  animation: heroFloat 6s ease-in-out infinite;
}

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

/* ============================================================
   10. FEATURE STRIP
   ============================================================ */
.feature-strip {
  background: #1a0f33;
  border-top: 1px solid rgba(124,58,237,0.2);
  border-bottom: 1px solid rgba(124,58,237,0.2);
}

.feature-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2rem clamp(16px, 4vw, 40px);
  max-width: var(--container);
  margin: 0 auto;
}

.feature-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  flex: 1;
}

.feature-strip-item + .feature-strip-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(124, 58, 237, 0.3);
}

.feature-strip-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--color-accent);
  line-height: 1;
}

.feature-strip-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

/* ============================================================
   11. SECTION LABELS / HEADERS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 0.75rem;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  max-width: 600px;
  color: var(--color-text-muted);
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  margin: 0 auto;
}

/* ============================================================
   12. FEATURE CARDS (Was kann diese Smartwatch)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-circle svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  stroke: var(--color-primary);
  fill: none;
}

.feature-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   13. SPORT SECTION
   ============================================================ */
.sport-section {
  background: var(--color-bg-alt);
}

.sport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sport-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.sport-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.sport-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.sport-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

.sport-tag-icon {
  font-size: 1rem;
}

.sport-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sport-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.sport-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* ============================================================
   14. HEALTH CARDS
   ============================================================ */
.health-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.health-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.health-card--sleep {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
  color: white;
}

.health-card--stress {
  background: linear-gradient(135deg, #065F46 0%, #047857 100%);
  color: white;
}

.health-card--battery {
  background: linear-gradient(135deg, #4C1D95 0%, #6D28D9 100%);
  color: white;
}

.health-card h3 {
  font-size: 1.3rem;
  color: #fff;
}

.health-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.7;
}

.health-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.health-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
}

/* ============================================================
   15. SPEC TABLE
   ============================================================ */
.spec-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.spec-table thead th {
  background: var(--color-primary);
  color: #fff;
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.spec-table tbody tr:nth-child(even) {
  background: var(--color-bg-alt);
}

.spec-table tbody tr:nth-child(odd) {
  background: var(--color-bg-card);
}

.spec-table tbody tr:hover {
  background: var(--color-primary-light);
}

.spec-table tbody td {
  padding: 0.85rem 1.5rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--color-border);
}

.spec-table tbody td:first-child {
  font-weight: 600;
  color: var(--color-text-primary);
  width: 40%;
}

.spec-table tbody td:last-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* ============================================================
   16. DESIGN SECTION
   ============================================================ */
.design-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.design-callouts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.design-callout {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 130px;
}

.design-callout-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-primary);
  display: block;
}

.design-callout-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ============================================================
   17. CONNECTIVITY CARDS
   ============================================================ */
.connectivity-section {
  background: var(--color-bg-dark);
}

.connectivity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.connectivity-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
}

.connectivity-card:hover {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
}

.connectivity-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 1rem 0 0.75rem;
}

.connectivity-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

.connectivity-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(124,58,237,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.connectivity-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  fill: none;
}

/* ============================================================
   18. GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(124,58,237,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-caption {
  padding: 0.6rem 0;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0.25rem;
}

/* ============================================================
   19. REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.review-author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-primary);
}

.review-author-city {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-success);
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5,150,105,0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

/* ============================================================
   20. FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: var(--color-primary);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  gap: 1rem;
  user-select: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
  color: var(--color-primary);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item.active .faq-icon {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.faq-answer-inner p + p {
  margin-top: 0.75rem;
}

/* ============================================================
   21. WHY AIDOWELL CARDS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.why-card h3 {
  font-size: 1.15rem;
  margin: 1rem 0 0.75rem;
  color: var(--color-text-primary);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.why-icon {
  font-size: 2rem;
}

/* ============================================================
   22. BRAND STORY SECTION
   ============================================================ */
.brand-story-content {
  max-width: 860px;
  margin: 0 auto;
}

.brand-story-content p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.9;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

/* ============================================================
   23. FINAL CTA SECTION
   ============================================================ */
.final-cta {
  background: var(--color-bg-dark);
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.final-cta-sub {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.final-cta-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 2rem;
  display: block;
}

.final-cta-note {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   24. FOOTER
   ============================================================ */
.footer {
  background: #0A0F1E;
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-owner {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}

.footer-email {
  font-size: 0.88rem;
  color: var(--color-accent);
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
  font-style: italic;
}

.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.footer-contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-contact-value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  padding: 1.5rem clamp(16px, 4vw, 40px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-disclosure {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 680px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* ============================================================
   25. COOKIE POPUP
   ============================================================ */
.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 360px;
  background: var(--color-bg-card);
  border-left: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 500;
  padding: 1.5rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
}

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

.cookie-popup-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-primary);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-popup-text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cookie-popup-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-popup-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-cookie-accept {
  flex: 1;
  padding: 0.65rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  border: 2px solid var(--color-primary);
  transition: var(--transition);
}

.btn-cookie-accept:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); }

.btn-cookie-reject {
  flex: 1;
  padding: 0.65rem 1rem;
  background: transparent;
  color: var(--color-text-muted);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-reject:hover { border-color: var(--color-text-muted); color: var(--color-text-primary); }

/* ============================================================
   26. SCROLL REVEAL
   ============================================================ */
.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; }

/* ============================================================
   27. REVIEW.HTML SPECIFIC
   ============================================================ */
.article-header {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--section-py) clamp(16px, 4vw, 40px) 3rem;
}

.article-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.article-hero-img {
  width: 100%;
  max-width: 820px;
  margin: 0 auto 3rem;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-hero-img img {
  width: 100%;
  height: auto;
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px) var(--section-py);
}

.article-section {
  margin-bottom: 3.5rem;
}

.article-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 1.25rem;
  color: var(--color-text-primary);
}

.article-section p {
  margin-bottom: 1rem;
}

/* Persona cards */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.persona-card {
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border-left: 4px solid var(--color-primary);
}

.persona-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.6rem;
}

.persona-card p {
  font-size: 0.86rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Pro/Con card */
.pro-con-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.pro-card, .con-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.pro-card {
  background: rgba(5, 150, 105, 0.05);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.con-card {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.pro-card h4, .con-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pro-card h4 { color: var(--color-success); }
.con-card h4 { color: #dc2626; }

.pro-list li, .con-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.pro-check { color: var(--color-success); }
.con-x     { color: #dc2626; }

/* Comparison table */
.comparison-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  margin-top: 1.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison-table th:first-child {
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
}

.comparison-table th.col-this {
  background: var(--color-primary);
  color: #fff;
}

.comparison-table th.col-other {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
}

.comparison-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table tr:nth-child(even) td {
  background: var(--color-bg-alt);
}

.check-green { color: var(--color-success); font-weight: 700; }
.check-red   { color: #dc2626; }
.check-gray  { color: var(--color-text-muted); }

/* Star rating */
.star-rating-big {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stars-display {
  display: flex;
  gap: 3px;
}

.star-full  { color: var(--color-accent); font-size: 1.4rem; }
.star-half  { color: var(--color-accent); font-size: 1.4rem; opacity: 0.6; }

.rating-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-primary);
}

.rating-of {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* CTA box at bottom of article */
.article-cta-box {
  background: var(--color-primary-light);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.article-cta-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
}

.article-cta-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0.75rem 0 1.5rem;
  display: block;
}

.article-cta-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ============================================================
   28. ORDER.PHP SPECIFIC
   ============================================================ */
.order-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: flex-start;
  padding-top: 2rem;
  padding-bottom: var(--section-py);
}

/* Gallery */
.order-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
  margin-bottom: 1rem;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.order-gallery-main img.fade-out {
  opacity: 0;
}

.order-gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.order-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--color-border);
  transition: border-color 0.2s;
  flex-shrink: 0;
  background: var(--color-bg-alt);
}

.order-thumb.active {
  border-color: var(--color-primary);
}

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

.order-product-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.order-product-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.order-color-info {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

.order-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9CA3AF 0%, #C9A96E 100%);
  border: 1px solid rgba(0,0,0,0.1);
}

/* Features list in order.php */
.order-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.order-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.order-feature-check {
  color: var(--color-success);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.order-right {
  align-self: stretch;
}

/* Sticky card */
.order-sticky-card {
  position: sticky;
  top: 120px; /* 108px fixed header (disclosure 38px + navbar 70px) + 12px gap */
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--color-border);
}

.sticky-product-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.sticky-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.sticky-vat {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.sticky-disclosure {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.sticky-separator {
  height: 1px;
  background: var(--color-border);
  margin: 1.5rem 0;
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--color-text-secondary);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-success);
  fill: none;
  flex-shrink: 0;
}

.sticky-quick-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-bg-alt);
}

.quick-spec-key {
  color: var(--color-text-muted);
  font-weight: 500;
}

.quick-spec-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

/* ============================================================
   29. CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: var(--color-bg-dark);
  text-align: center;
  padding: 5rem clamp(16px,4vw,40px) 4rem;
}

.contact-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.contact-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.4rem;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}

input.error, select.error, textarea.error {
  border-color: #dc2626;
}

.field-error {
  display: block;
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 0.3rem;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

select {
  appearance: none;
  cursor: pointer;
}

.form-success {
  display: none;
  background: rgba(5,150,105,0.08);
  border: 1.5px solid var(--color-success);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  color: var(--color-success);
  font-weight: 600;
  margin-top: 1rem;
}

.form-success.visible {
  display: block;
}

.contact-info-wrap {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info-wrap h3 {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  gap: 0.2rem;
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

.contact-hours {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* ============================================================
   30. LEGAL PAGES
   ============================================================ */
.legal-hero {
  background: var(--color-bg-dark);
  text-align: center;
  padding: 5rem clamp(16px,4vw,40px) 4rem;
}

.legal-hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.legal-hero p {
  color: rgba(255,255,255,0.55);
}

.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--section-py) clamp(16px,4vw,40px);
}

.legal-body h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-body h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-body p {
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
}

.legal-body ul, .legal-body ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body ul li, .legal-body ol li {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.legal-body ol {
  list-style: decimal;
}

.cookie-categories-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.88rem;
}

.cookie-categories-table th {
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
}

.cookie-categories-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.cookie-categories-table tr:nth-child(even) td {
  background: var(--color-bg-alt);
}

/* ============================================================
   31. RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-sticky-card {
    position: static;
    margin-top: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* ============================================================
   32. RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-img-wrap {
    order: -1;
    max-height: 300px;
  }

  .hero-img-wrap img {
    max-height: 280px;
  }

  .hero-pills {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .health-cards {
    grid-template-columns: 1fr;
  }

  .sport-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .design-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

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

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

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

  .pro-con-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hamburger { display: flex; }
  .navbar-links { display: none; }
  .nav-overlay { display: flex; }

  .feature-strip-inner {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }

  .feature-strip-item + .feature-strip-item::before {
    display: none;
  }
}

/* ============================================================
   33. RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .order-gallery-thumbs {
    gap: 0.4rem;
  }

  .order-thumb {
    width: 58px;
    height: 58px;
  }

  .hero-price-badge {
    font-size: 1.1rem;
  }

  .sticky-price {
    font-size: 1.9rem;
  }

  .article-meta {
    gap: 0.75rem;
  }
}

/* ============================================================
   34. UTILITY — dark section text overrides
   ============================================================ */
.dark-section h2,
.dark-section h3 {
  color: #fff;
}

.dark-section .section-label {
  color: var(--color-accent);
}

/* Feature strip and connectivity on dark bg */
.feature-strip .section-label,
.connectivity-section .section-label {
  color: var(--color-accent);
}

/* ============================================================
   35. PRINT / ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
