/* ============================================================
   CADRE 3D — Stylesheet
   Design: modern, premium, sport/outdoor
   ============================================================ */

/* --- Reset & Custom properties --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-alt: #f4f5f7;
  --bg-dark: #0d1117;
  --text: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: #eff6ff;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --gold: #d4a017;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --container: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: var(--font); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section { padding-block: 80px; }

/* --- Typography --- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: 1.2rem; font-weight: 600; line-height: 1.3; }
p { color: var(--text-muted); line-height: 1.7; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 540px; margin-inline: auto; margin-top: 12px; font-size: 1.05rem; }

/* --- Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}
.animate-on-scroll:nth-child(2) { transition-delay: .1s; }
.animate-on-scroll:nth-child(3) { transition-delay: .2s; }
.animate-on-scroll:nth-child(4) { transition-delay: .3s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--bg-dark);
  flex-shrink: 0;
}
.navbar-logo img {
  height: 36px;
  width: auto;
}
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-fallback .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: .92rem;
  color: var(--text);
  transition: background var(--transition);
}
.nav-links a:hover { background: var(--bg-alt); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Lang switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 11px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
  letter-spacing: .02em;
}
.lang-btn.active {
  background: var(--bg-dark);
  color: #fff;
}
.lang-btn:hover:not(.active) {
  background: var(--border);
  color: var(--text);
}

.btn-nav,
.nav-links a.btn-nav {
  padding: 10px 20px;
  background: var(--bg-dark);
  color: #fff !important;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-nav:hover,
.nav-links a.btn-nav:hover {
  background: var(--accent);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  padding: 4px;
  border-radius: 6px;
}
.mobile-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg-dark);
  color: #fff;
  padding-top: 100px;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37,99,235,.18) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(16,185,129,.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-text h1 {
  color: #fff;
  margin-bottom: 20px;
}
.hero-text p {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: #fff;
  color: #0d1117;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.btn-primary span, .btn-primary svg { color: inherit; stroke: currentColor; }
.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  font-weight: 500;
  font-size: .95rem;
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-ghost .arrow { transition: transform var(--transition); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-frame-wrapper {
  position: relative;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-frame-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(37,99,235,.25), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}
.hero-frame-img {
  width: 340px;
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
  position: relative;
  z-index: 1;
  border-radius: 16px;
  object-fit: cover;
}

/* Hero stats strip */
.hero-stats {
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.hero-stat {
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-card:hover::after { opacity: 1; }

.step-icon {
  width: 52px; height: 52px;
  background: var(--bg-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon svg { color: #fff; }
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: .93rem; }

/* ============================================================
   PRODUCT SHOWCASE
   ============================================================ */
.product-showcase {
  background: var(--bg-alt);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.showcase-image-single {
  display: flex;
  align-items: stretch;
}
.showcase-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-img-wrap img, .showcase-img-wrap svg {
  width: 100%; height: 100%;
  object-fit: cover;
}

.showcase-text h2 { margin-bottom: 16px; }
.showcase-text > p { margin-bottom: 28px; font-size: 1.02rem; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text);
}
.feat-icon {
  width: 28px; height: 28px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg-dark); color: #fff; }
.pricing .section-header h2 { color: #fff; }
.pricing .section-header p { color: rgba(255,255,255,.6); }

.price-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
  backdrop-filter: blur(8px);
}
.price-amount {
  margin-bottom: 8px;
}
.price-amount .currency { font-size: 2rem; font-weight: 700; vertical-align: super; }
.price-amount .amount {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}
.price-sub {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  margin-bottom: 32px;
}

.price-includes {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  padding: 24px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
}
.price-includes li {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}

.btn-price-cta {
  display: block;
  width: 100%;
  padding: 17px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition);
  text-align: center;
}
.btn-price-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.4);
}
.price-note {
  margin-top: 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); overflow: hidden; }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1rem;
}
.testimonial-text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .88rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .92rem; }
.testimonial-race { font-size: .8rem; color: var(--text-muted); }

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.testimonials-prev, .testimonials-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--transition);
  font-size: 1.1rem;
}
.testimonials-prev:hover, .testimonials-next:hover {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-alt); }

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  gap: 16px;
  user-select: none;
}
.faq-question .faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--bg-dark);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: .93rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.6);
  padding-block: 48px;
  text-align: center;
}
.footer-logo {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.footer-logo .logo-text { font-weight: 700; font-size: 1.1rem; color: #fff; }
.footer-tagline { font-size: .9rem; margin-bottom: 24px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-bottom { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ============================================================
   ORDER PAGE
   ============================================================ */
.order-page { padding-top: 100px; padding-bottom: 80px; background: var(--bg-alt); min-height: 100vh; }
.order-header { text-align: center; margin-bottom: 48px; }
.order-header h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.order-header p { font-size: 1rem; }

.order-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

/* Form */
.order-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-section { margin-bottom: 36px; }
.form-section:last-child { margin-bottom: 0; }
.form-section-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group .required-star { color: var(--error); margin-left: 2px; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .93rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group input.error,
.form-group select.error {
  border-color: var(--error);
}
.form-group.has-error label { color: var(--error); }

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
  font-size: .8rem;
}
.select-wrapper select { padding-right: 36px; }

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .92rem;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--accent);
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
}

/* Color pickers */
.color-picker-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.color-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color var(--transition);
}
.color-input-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.color-input-wrap input[type="color"] {
  width: 32px; height: 32px;
  border: none;
  padding: 0;
  border-radius: 6px;
  cursor: pointer;
  background: none;
}
.color-input-wrap .color-label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Form error */
#form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--error);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .88rem;
  margin-bottom: 16px;
}

/* Sidebar */
.order-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}
.summary-card h3 {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}
.summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}
.summary-note {
  font-size: .77rem;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}

.pay-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
}

/* Stripe button */
.btn-stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-stripe:hover:not(:disabled) {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.4);
}
.btn-stripe:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}
.stripe-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: .75rem;
  color: var(--text-muted);
}
.stripe-badge svg { opacity: .6; }

.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Brazil section */
.brazil-section {
  background: #fffbeb;
  border: 2px solid #fcd34d;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.brazil-section h4 {
  font-size: 1rem;
  color: #92400e;
  margin-bottom: 10px;
}
.brazil-section p {
  font-size: .88rem;
  color: #78350f;
  line-height: 1.6;
}
.brazil-section a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}
.brazil-why-block {
  background: rgba(146,64,14,.08);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.brazil-why-title {
  font-weight: 700;
  font-size: .85rem !important;
  color: #92400e !important;
  margin-bottom: 4px !important;
}
.brazil-why-text {
  font-size: .83rem !important;
  color: #78350f !important;
  margin: 0 !important;
}
.brazil-tip {
  font-size: .84rem !important;
  color: #78350f !important;
  margin-bottom: 6px !important;
}
.brazil-cta-label {
  font-size: .88rem !important;
  color: #92400e !important;
  font-weight: 600 !important;
  margin: 12px 0 8px !important;
}
.brazil-note-text {
  margin-top: 10px;
  font-size: .80rem !important;
  color: #a16207 !important;
  font-style: italic;
}
.brazil-success-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 14px;
  background: #d1fae5;
  border-radius: 8px;
  color: #065f46;
  font-size: .88rem;
  font-weight: 600;
}
.btn-brazil-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 13px;
  background: #92400e;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
}
.btn-brazil-email:hover {
  background: #78350f;
}

.animate-in {
  animation: slideIn .4s ease forwards;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  padding: 40px 24px;
}
.success-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.success-icon {
  width: 72px; height: 72px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--success);
}
.success-card h1 { font-size: 1.8rem; margin-bottom: 12px; }
.success-card > p { margin-bottom: 32px; }
.success-steps {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.success-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .93rem;
  color: var(--text);
}
.success-steps .step-num {
  width: 26px; height: 26px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}
.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--bg-dark);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-back-home:hover {
  background: var(--accent);
  transform: translateY(-2px);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
  .showcase-images { order: -1; max-width: 480px; margin-inline: auto; }
  .order-layout { grid-template-columns: 1fr; }
  .order-sidebar { position: static; }
  .testimonial-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 768px) {
  section { padding-block: 56px; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-frame-img { width: 240px; }
  .hero-text p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .color-picker-row { grid-template-columns: 1fr; }
  .nav-links, .btn-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .nav-links.open .btn-nav { display: block; text-align: center; margin-top: 8px; }
  .order-form-card { padding: 24px; }
  .testimonial-card { flex: 0 0 calc(100% - 10px); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-stat:last-child { border-bottom: none; }
  .price-card { padding: 28px 20px; }
  .success-card { padding: 36px 20px; }
  .lang-btn { padding: 5px 8px; font-size: .75rem; }
}
