/* ...............................................
   RAICOT — Shared Design System
   Archivo compartido entre todas las páginas
   ............................................... */

/* Section */
:root {
  --accent: #5cbebc;
  --accent-rgb: 92, 190, 188;
  --accent-light: #7fd6d4;
  --accent-dark: #3e8f8d;
  --navy: #1c2540;
  --navy-rgb: 28, 37, 64;
  --bg-primary: #fafbfc;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f1f3f6;
  --bg-card: #ffffff;
  --text-primary: #0d1117;
  --text-secondary: #4a5568;
  --text-tertiary: #718096;
  --border: rgba(28, 37, 64, 0.08);
  --border-hover: rgba(93, 191, 189, 0.3);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 40px rgba(93, 191, 189, 0.12);
  --section-alt: #f7f8fa;
  --badge-bg: rgba(93, 191, 189, 0.08);
  --badge-text: #3a8a88;
  --code-bg: #f1f3f6;
  --nav-bg: rgba(250, 251, 252, 0.85);
  --input-bg: #f7f8fa;
  --ill-bg: linear-gradient(145deg, rgba(93,191,189,0.06) 0%, rgba(28,37,64,0.03) 100%);
  --ill-stroke: rgba(93, 191, 189, 0.5);
  --ill-fill: rgba(93, 191, 189, 0.06);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #0a0e17;
    --bg-secondary: #0f1420;
    --bg-tertiary: #151b2b;
    --bg-card: #131928;
    --text-primary: #e8ecf1;
    --text-secondary: #94a3b8;
    --text-tertiary: #64748b;
    --border: rgba(93, 191, 189, 0.08);
    --border-hover: rgba(93, 191, 189, 0.25);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.3), 0 0 1px rgba(93,191,189,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.4), 0 0 2px rgba(93,191,189,0.08);
    --shadow-glow: 0 0 60px rgba(93, 191, 189, 0.08);
    --section-alt: #0d1219;
    --badge-bg: rgba(93, 191, 189, 0.1);
    --badge-text: #5dbfbd;
    --code-bg: #1a2136;
    --nav-bg: rgba(10, 14, 23, 0.88);
    --input-bg: #151b2b;
    --ill-bg: linear-gradient(145deg, rgba(93,191,189,0.08) 0%, rgba(28,37,64,0.12) 100%);
    --ill-stroke: rgba(93, 191, 189, 0.6);
    --ill-fill: rgba(93, 191, 189, 0.08);
  }
}

/* Section */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: clamp(16px, 0.2vw + 15.5px, 18px); scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(circle at 14% 16%, rgba(var(--accent-rgb), 0.08) 0%, transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(var(--navy-rgb), 0.06) 0%, transparent 32%),
    linear-gradient(rgba(var(--accent-rgb), 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.03) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Section */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

/* Section */
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 1.5rem; height: 1px; background: var(--accent); }

.section-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 600px; line-height: 1.7;
}

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* Section */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Section */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-store,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.75rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, filter 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.28);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.34); }

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: rgba(var(--accent-rgb), 0.24);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.btn-secondary:hover { transform: translateY(-1px); border-color: rgba(var(--accent-rgb), 0.45); box-shadow: 0 8px 18px rgba(var(--accent-rgb), 0.16); }

.btn-outline {
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent-dark);
  border-color: rgba(var(--accent-rgb), 0.3);
}
.btn-outline:hover { transform: translateY(-1px); background: rgba(var(--accent-rgb), 0.14); border-color: rgba(var(--accent-rgb), 0.5); }

.btn-store {
  background: linear-gradient(135deg, #1f2e55, #2a3d72);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 18px rgba(var(--navy-rgb), 0.25);
}
.btn-store:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 10px 24px rgba(var(--navy-rgb), 0.35); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1fad56);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4); }

.btn-primary svg,
.btn-secondary svg,
.btn-outline svg,
.btn-store svg,
.btn-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.22s ease; }
.btn-primary:hover svg,
.btn-secondary:hover svg,
.btn-outline:hover svg,
.btn-store:hover svg,
.btn-whatsapp:hover svg { transform: translateX(2px); }

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-outline:focus-visible,
.btn-store:focus-visible,
.btn-whatsapp:focus-visible,
.form-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.2), 0 0 0 6px rgba(var(--accent-rgb), 0.12);
}

/* Section */
.topbar {
  background: var(--navy); color: rgba(255,255,255,0.7);
  font-size: 0.88rem; padding: 0.55rem 0;
  text-align: center; letter-spacing: 0.01em;
}
.topbar a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.topbar a:hover { color: var(--accent-light); }

/* Section */
.sub-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.35s ease;
}
.sub-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1200px;
  margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.sub-nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Lato', sans-serif; font-weight: 800; font-size: 1.25rem;
}
.sub-nav-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--accent), #3a8a88);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; font-weight: 800;
}
.sub-nav-right { display: flex; align-items: center; gap: 0.75rem; }
.sub-nav-item { position: relative; }
.sub-nav-link {
  padding: 0.45rem 0.9rem; font-size: 0.92rem; font-weight: 500;
  color: var(--text-secondary); border-radius: 8px; transition: all 0.25s;
}
.sub-nav-link:hover { color: var(--text-primary); background: var(--badge-bg); }
.sub-nav-submenu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 190px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 0.35rem;
  display: none;
  z-index: 1200;
}
.sub-nav-sublink {
  display: block;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-radius: 8px;
}
.sub-nav-sublink:hover { color: var(--text-primary); background: var(--badge-bg); }
.sub-nav-item.has-submenu:hover .sub-nav-submenu,
.sub-nav-item.has-submenu:focus-within .sub-nav-submenu { display: block; }
.sub-nav-cta {
  background: var(--accent); color: #fff;
  padding: 0.5rem 1.2rem; border-radius: 9px;
  font-size: 0.92rem; font-weight: 600;
  transition: all 0.3s; box-shadow: 0 2px 10px rgba(var(--accent-rgb), 0.2);
}
.sub-nav-cta:hover { background: #4db0ae; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.3); }
.sub-nav-shop {
  color: #5cbebc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.35rem;
  transition: opacity 0.25s ease;
}
.sub-nav-shop i { font-size: 25px; line-height: 1; }
.sub-nav-shop:hover { opacity: 0.75; }
.sub-nav-shop-label { display: none; }
.sub-nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.sub-nav-toggle span {
  width: 22px; height: 2px; background: var(--text-primary);
  border-radius: 2px; transition: all 0.3s; display: block;
}
.sub-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.sub-nav-toggle.active span:nth-child(2) { opacity: 0; }
.sub-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .sub-nav-toggle { display: flex; }
  .sub-nav-right {
    position: fixed; top: 64px; right: 0; bottom: 0;
    width: 280px; max-width: 85vw;
    background: var(--bg-primary);
    flex-direction: column; align-items: stretch;
    padding: 2rem 1.5rem; gap: 0.35rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    border-left: 1px solid var(--border);
  }
  .sub-nav-right.open { transform: translateX(0); }
  .sub-nav-link, .sub-nav-cta {
    padding: 0.9rem 1rem; font-size: 1rem;
    border-radius: 12px; text-align: left;
  }
  .sub-nav-shop {
    margin-top: 0.35rem;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 2px 10px rgba(var(--accent-rgb), 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
  }
  .sub-nav-shop i { font-size: 20px; line-height: 1; }
  .sub-nav-shop-label {
    display: inline;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
  }
  .sub-nav-shop:hover {
    background: #4db0ae;
    color: #fff;
    opacity: 1;
    border-color: transparent;
  }
  .sub-nav-item.has-submenu { width: 100%; }
  .sub-nav-submenu {
    position: static;
    display: block;
    min-width: 0;
    margin-top: 0.15rem;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
  .sub-nav-sublink {
    display: block;
    padding: 0.55rem 1rem 0.55rem 1.8rem;
    text-align: left;
    font-size: 1.02rem;
  }
}

/* Section */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--badge-bg); border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--badge-text); margin-bottom: 1.5rem;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); position: relative;
}
.hero-badge-dot::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 50%; border: 1.5px solid var(--accent);
  animation: pulse-ring 2s ease-out infinite;
}

/* Section */
.trust-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy), #243052);
  position: relative; overflow: hidden;
}
.trust-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(var(--accent-rgb), 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(var(--accent-rgb), 0.06) 0%, transparent 50%);
}
.trust-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  background-size: 200% 100%; animation: shimmer 4s linear infinite;
}
.trust-banner-inner { position: relative; z-index: 2; }

/* Section */
.form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb), 0.2), var(--accent));
  background-size: 200% 100%; animation: shimmer 3s linear infinite;
}
.form-inner { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; align-items: start; }
@media (max-width: 900px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 100%;
  min-height: 46px;
  padding: 0.72rem 0.95rem;
  background: var(--input-bg); border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem; color: var(--text-primary);
  transition: all 0.25s ease; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}
.form-submit {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, var(--accent), #4db0ae);
  color: #fff; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700;
  border: none; border-radius: 12px; cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.2);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.form-submit:hover { box-shadow: 0 8px 22px rgba(var(--accent-rgb), 0.34); transform: translateY(-1px); }
.form-submit svg { width: 18px; height: 18px; }

/* Section */
.sub-footer {
  padding: 2.5rem 0; background: var(--section-alt);
  border-top: 1px solid var(--border);
}
.sub-footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.sub-footer-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: 1rem;
}
.sub-footer-brand-icon {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--accent), #3a8a88);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem; font-weight: 800;
}
.sub-footer-links { display: flex; gap: 1.25rem; list-style: none; flex-wrap: wrap; }
.sub-footer-links a { font-size: 0.9rem; color: var(--text-tertiary); transition: color 0.25s; }
.sub-footer-links a:hover { color: var(--accent); }
.sub-footer-copy { font-size: 0.88rem; color: var(--text-tertiary); }
@media (max-width: 600px) { .sub-footer-inner { flex-direction: column; text-align: center; } }

/* Section */
.wa-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 999; transition: all 0.3s ease;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45); }
.wa-fab svg { width: 28px; height: 28px; fill: #fff; }

/* Section */
.stats-strip {
  padding: 3rem 0; background: var(--section-alt);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-value {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--text-primary); line-height: 1.2;
}
.stat-value span { color: var(--accent); }
.stat-label { font-size: 0.9rem; color: var(--text-tertiary); margin-top: 0.25rem; }

/* Section */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(var(--accent-rgb), 0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(var(--accent-rgb), 0.35); }
::selection { background: rgba(var(--accent-rgb), 0.2); color: var(--text-primary); }




/* Global logo image sizing */
.nav-logo img,
.sub-nav-logo img,
.footer-brand img,
.sub-footer-brand img {
  display: block;
  height: 28px;
  width: auto;
  max-width: min(190px, 52vw);
  object-fit: contain;
}

@media (max-width: 768px) {
  .nav-logo img,
  .sub-nav-logo img,
  .footer-brand img,
  .sub-footer-brand img {
    height: 24px;
    max-width: 150px;
  }
}

/* Logo behavior */
.nav-logo--swap .logo-default { display: block; }
.nav-logo--swap .logo-white { display: none; }

/* Dark mode: always visible in navs */
@media (prefers-color-scheme: dark) {
  .nav-logo img,
  .sub-nav-logo img {
    filter: none;
  }

  .footer-brand img,
  .sub-footer-brand img {
    filter: none;
  }

  .nav-logo--swap .logo-default { display: none; }
  .nav-logo--swap .logo-white { display: block; }
}

/* Mobile panels */
@media (max-width: 768px) {
  .sub-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .sub-nav-right {
    top: 64px !important;
    bottom: auto !important;
    height: calc(100dvh - 64px) !important;
    width: min(320px, 88vw) !important;
    padding: 1.25rem 1.25rem 2rem !important;
    overflow-y: auto;
    background: var(--bg-secondary);
  }
}





@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Global depth accents */
.sub-nav { box-shadow: 0 8px 22px rgba(var(--navy-rgb), 0.08); }
.sub-footer { box-shadow: 0 -8px 22px rgba(var(--navy-rgb), 0.05); }
.product-card, .service-card, .why-card, .config-card, .part-card, .svc-card, .contact-form-wrapper, .form-card, .cta-form-card { box-shadow: var(--shadow-sm); }

/* Section texture layer */
.products, .services, .why-us, .contact, .store-showcase, .configs, .parts, .process, .services-section, .features-section, .process-section, .cta-section, .stats-strip, .sub-footer {
  background-image:
    radial-gradient(circle at 12% 18%, rgba(var(--accent-rgb), 0.13) 0%, transparent 36%),
    linear-gradient(rgba(var(--accent-rgb), 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.065) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

@media (max-width: 640px) { .form-card, .contact-form-wrapper, .cta-form-card { padding: 1.25rem; border-radius: 14px; } }

.form-feedback { margin-top: 0.7rem; font-size: 0.92rem; font-weight: 600; text-align: center; }
.form-feedback.is-pending { color: var(--text-secondary); }
.form-feedback.is-success { color: #1f9d55; }
.form-feedback.is-error { color: #dc2626; }

.site-toast { position: fixed; left: 50%; bottom: 1.25rem; transform: translate(-50%, 16px); opacity: 0; z-index: 1600; padding: 0.85rem 1rem; border-radius: 10px; border: 1px solid rgba(var(--accent-rgb), 0.35); background: var(--bg-card); color: var(--text-primary); box-shadow: 0 12px 28px rgba(0,0,0,0.16); font-size: 0.95rem; font-weight: 600; transition: transform 0.26s ease, opacity 0.26s ease; max-width: min(92vw, 520px); text-align: center; }
.site-toast.visible { opacity: 1; transform: translate(-50%, 0); }
.site-toast.is-success { border-color: rgba(34,197,94,0.35); background: linear-gradient(180deg, rgba(34,197,94,0.08), rgba(34,197,94,0.03)); }
.site-toast strong { color: #15803d; }
