/* ========================================
   FROID MORT - E-commerce One-Page
   Palette: Navy #0F2D3D | Cyan #4CC8E8 | White #FFFFFF
   ======================================== */

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

:root {
  --navy: #0F2D3D;
  --navy-light: #153d52;
  --navy-dark: #091e2a;
  --cyan: #4CC8E8;
  --cyan-hover: #3ab8d8;
  --cyan-glow: rgba(76, 200, 232, 0.3);
  --white: #FFFFFF;
  --gray-light: #f0f4f7;
  --gray: #8a9baa;
  --black: #1A1A1A;
  --success: #34d399;
  --danger: #ef4444;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: var(--navy-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 45, 61, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(76, 200, 232, 0.1);
  transition: background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--cyan);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.cart-btn {
  position: relative;
  background: none;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-btn:hover {
  background: var(--cyan);
  color: var(--navy);
}

.cart-btn .cart-icon {
  font-size: 1.1rem;
}

.cart-count {
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -8px;
}

.cart-count.hidden {
  display: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 50%, rgba(76, 200, 232, 0.06) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -2%) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(76, 200, 232, 0.1);
  border: 1px solid rgba(76, 200, 232, 0.3);
  color: var(--cyan);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 20px;
  color: var(--white);
}

.hero h1 .highlight {
  color: var(--cyan);
  position: relative;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 25px var(--cyan-glow);
}

.btn-primary:hover {
  background: var(--cyan-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 35px var(--cyan-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cyan);
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--cyan);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
  background: rgba(76, 200, 232, 0.1);
  transform: translateY(-2px);
}

/* Floating ice cubes animation in hero */
.ice-cubes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.ice-cube {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(76, 200, 232, 0.08);
  border: 1px solid rgba(76, 200, 232, 0.15);
  border-radius: 4px;
  animation: floatCube linear infinite;
}

.ice-cube:nth-child(1) { left: 10%; width: 15px; height: 15px; animation-duration: 18s; animation-delay: 0s; }
.ice-cube:nth-child(2) { left: 25%; width: 25px; height: 25px; animation-duration: 22s; animation-delay: 2s; }
.ice-cube:nth-child(3) { left: 45%; width: 18px; height: 18px; animation-duration: 20s; animation-delay: 4s; }
.ice-cube:nth-child(4) { left: 65%; width: 22px; height: 22px; animation-duration: 24s; animation-delay: 1s; }
.ice-cube:nth-child(5) { left: 80%; width: 16px; height: 16px; animation-duration: 19s; animation-delay: 3s; }
.ice-cube:nth-child(6) { left: 90%; width: 20px; height: 20px; animation-duration: 21s; animation-delay: 5s; }

@keyframes floatCube {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* --- Section Produit --- */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-title .accent {
  color: var(--cyan);
}

.section-title p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}

.product-section {
  background: var(--navy);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image-wrapper {
  background: linear-gradient(145deg, var(--navy-light), var(--navy-dark));
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(76, 200, 232, 0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.product-image-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(76, 200, 232, 0.08) 0%, transparent 60%);
}

.product-image-wrapper img,
.product-image-wrapper svg {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* --- Glass Crossfade Rotation Animation --- */
.glass-showcase {
  padding: 10px;
  overflow: hidden;
}

.glass-showcase::after {
  display: none;
}

.glass-rotator {
  width: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.glass-face {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  transition: opacity 1.2s ease;
}

.glass-front {
  position: relative;
  animation: glassFadeFront 6s ease-in-out infinite;
}

.glass-back {
  position: absolute;
  top: 0;
  left: 0;
  animation: glassFadeBack 6s ease-in-out infinite;
}

.glass-face img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

@keyframes glassFadeFront {
  0%, 30% { opacity: 1; transform: scale(1); }
  45%, 55% { opacity: 0; transform: scale(0.97); }
  70%, 100% { opacity: 1; transform: scale(1); }
}

@keyframes glassFadeBack {
  0%, 30% { opacity: 0; transform: scale(0.97); }
  45%, 55% { opacity: 1; transform: scale(1); }
  70%, 100% { opacity: 0; transform: scale(0.97); }
}

.glass-rotation-hint {
  text-align: center;
  margin-top: 16px;
  color: var(--gray);
  font-size: 0.8rem;
  opacity: 0.6;
}

.glass-rotation-hint span {
  color: var(--cyan);
  font-size: 1rem;
}

.product-info h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.product-info p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 1rem;
}

.product-features {
  list-style: none;
  margin-bottom: 32px;
}

.product-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-light);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.product-features li .feature-icon {
  color: var(--cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --- Section Packs / Commander --- */
.packs-section {
  background: var(--navy-dark);
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pack-card {
  background: linear-gradient(160deg, var(--navy-light), var(--navy));
  border: 1px solid rgba(76, 200, 232, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.pack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pack-card:hover {
  transform: translateY(-8px);
  border-color: rgba(76, 200, 232, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pack-card:hover::before {
  opacity: 1;
}

.pack-card.popular {
  border-color: var(--cyan);
  transform: scale(1.03);
}

.pack-card.popular:hover {
  transform: scale(1.03) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy);
  padding: 4px 20px;
  border-radius: 0 0 12px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pack-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.pack-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pack-card .pack-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pack-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.pack-price .amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
}

.pack-price .currency {
  font-size: 1.2rem;
  color: var(--gray);
  font-weight: 600;
}

.pack-unit-price {
  color: var(--gray);
  font-size: 0.8rem;
  margin-bottom: 28px;
}

.btn-add-cart {
  width: 100%;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--cyan);
  background: transparent;
  color: var(--cyan);
}

.btn-add-cart:hover {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.pack-card.popular .btn-add-cart {
  background: var(--cyan);
  color: var(--navy);
}

.pack-card.popular .btn-add-cart:hover {
  background: var(--cyan-hover);
  box-shadow: 0 8px 30px var(--cyan-glow);
}

/* --- Section Contact --- */
.contact-section {
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray);
  margin-bottom: 32px;
}

.contact-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-links li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-light);
}

.contact-links li .link-icon {
  color: var(--cyan);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  background: var(--navy-dark);
  border: 1px solid rgba(76, 200, 232, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(138, 155, 170, 0.5);
}

.btn-submit {
  align-self: flex-start;
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(76, 200, 232, 0.08);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo svg {
  height: 28px;
}

.footer-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-copy {
  color: var(--gray);
  font-size: 0.8rem;
}

/* --- Cart Modal --- */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-modal {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--navy);
  border-left: 1px solid rgba(76, 200, 232, 0.15);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
}

.cart-modal.open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(76, 200, 232, 0.1);
}

.cart-header h3 {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 4px;
}

.cart-close:hover {
  color: var(--white);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  color: var(--gray);
  padding: 60px 0;
}

.cart-empty .empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  opacity: 0.4;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cart-item-info .cart-item-price {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  background: var(--navy-dark);
  border: 1px solid rgba(76, 200, 232, 0.2);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  border-color: var(--cyan);
  background: rgba(76, 200, 232, 0.1);
}

.cart-item-qty span {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(76, 200, 232, 0.1);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-total .total-amount {
  color: var(--cyan);
  font-size: 1.4rem;
}

.btn-checkout {
  width: 100%;
  padding: 16px;
  background: var(--cyan);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-checkout:hover {
  background: var(--cyan-hover);
  box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn-checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- Legal Modal --- */
.legal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 24px;
}

.legal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.legal-modal {
  background: var(--navy);
  border: 1px solid rgba(76, 200, 232, 0.15);
  border-radius: 20px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
}

.legal-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--cyan);
}

.legal-modal p,
.legal-modal li {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-close {
  display: block;
  margin: 24px auto 0;
  padding: 10px 30px;
  background: var(--cyan);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

/* --- Reassurance Bar --- */
.reassurance-bar {
  background: var(--navy-light);
  border-bottom: 1px solid rgba(76, 200, 232, 0.08);
  padding: 14px 0;
}

.reassurance-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 500;
}

.reassurance-icon {
  font-size: 1.1rem;
}

/* --- Story Section --- */
.story-section {
  background: var(--navy-dark);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.story-badge {
  display: inline-block;
  background: rgba(76, 200, 232, 0.1);
  border: 1px solid rgba(76, 200, 232, 0.25);
  color: var(--cyan);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.story-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 24px;
}

.story-text {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.story-text strong {
  color: var(--cyan);
}

.story-timeline {
  position: relative;
  padding-left: 30px;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), rgba(76, 200, 232, 0.1));
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -27px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--navy-dark);
  border: 2px solid var(--cyan);
}

.timeline-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

.timeline-content .timeline-date {
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
}

.timeline-content p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Steps Section --- */
.steps-section {
  background: var(--navy);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.step-card {
  background: linear-gradient(160deg, var(--navy-light), var(--navy-dark));
  border: 1px solid rgba(76, 200, 232, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: rgba(76, 200, 232, 0.3);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

.step-icon-big {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

.step-arrow {
  color: var(--cyan);
  font-size: 1.8rem;
  opacity: 0.5;
  flex-shrink: 0;
}

/* --- Gift Section --- */
.gift-section {
  background: var(--navy-dark);
}

.gift-banner {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border: 1px solid rgba(76, 200, 232, 0.15);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.gift-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(76, 200, 232, 0.08), transparent 60%);
}

.gift-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.gift-badge {
  display: inline-block;
  background: rgba(76, 200, 232, 0.1);
  border: 1px solid rgba(76, 200, 232, 0.25);
  color: var(--cyan);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.gift-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.gift-content p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
}

.gift-occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.occasion-tag {
  background: rgba(76, 200, 232, 0.08);
  border: 1px solid rgba(76, 200, 232, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gray-light);
}

.gift-visual {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.gift-box {
  width: 140px;
  height: 140px;
  position: relative;
}

.gift-box-body {
  width: 140px;
  height: 120px;
  background: linear-gradient(145deg, var(--cyan), var(--cyan-hover));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: absolute;
  bottom: 0;
  box-shadow: 0 10px 30px rgba(76, 200, 232, 0.2);
}

.gift-box-lid {
  width: 150px;
  height: 30px;
  background: linear-gradient(145deg, var(--cyan-hover), var(--cyan));
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: -5px;
  animation: lidBounce 3s ease-in-out infinite;
}

@keyframes lidBounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-8px) rotate(-3deg); }
}

/* --- Testimonials Section --- */
.testimonials-section {
  background: var(--navy);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: linear-gradient(160deg, var(--navy-light), var(--navy-dark));
  border: 1px solid rgba(76, 200, 232, 0.08);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(76, 200, 232, 0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-hover));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 0.8rem;
}

/* Social Proof Counter */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: linear-gradient(160deg, var(--navy-light), var(--navy-dark));
  border: 1px solid rgba(76, 200, 232, 0.1);
  border-radius: 16px;
  padding: 40px;
}

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

.proof-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
}

.proof-label {
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 500;
}

.proof-divider {
  width: 1px;
  height: 50px;
  background: rgba(76, 200, 232, 0.15);
}

/* --- Wheel Game Section --- */
.wheel-section {
  background: var(--navy);
}

.wheel-game {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.wheel-container {
  position: relative;
  flex-shrink: 0;
}

.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--cyan);
  z-index: 10;
  filter: drop-shadow(0 2px 6px rgba(76, 200, 232, 0.5));
  line-height: 1;
}

#wheel-canvas {
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--navy-light), 0 0 0 8px rgba(76, 200, 232, 0.3), 0 0 40px rgba(76, 200, 232, 0.1);
}

.wheel-spin-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  border: 4px solid var(--navy-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px var(--cyan-glow);
}

.wheel-spin-btn:hover {
  background: var(--cyan-hover);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 25px var(--cyan-glow);
}

.wheel-spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translate(-50%, -50%);
}

.wheel-result {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

/* Result glass visual */
.result-glass-container {
  text-align: center;
  flex-shrink: 0;
}

.result-glass {
  width: 80px;
  height: 140px;
  border: 2px solid rgba(76, 200, 232, 0.4);
  border-radius: 4px 4px 20px 20px;
  position: relative;
  overflow: hidden;
  background: rgba(15, 45, 61, 0.5);
}

.result-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(180deg, rgba(76, 200, 232, 0.6), rgba(76, 200, 232, 0.9));
  transition: height 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 0 0 18px 18px;
}

.result-liquid::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.result-glass-overlay {
  position: absolute;
  top: 0;
  left: 5px;
  width: 15px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
  border-radius: 4px;
}

.result-label {
  color: var(--gray);
  font-size: 0.75rem;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-info {
  flex: 1;
}

.result-info h3 {
  font-size: 1.8rem;
  color: var(--cyan);
  margin-bottom: 8px;
}

.result-info p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.result-fill-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.fill-bar-track {
  flex: 1;
  height: 10px;
  background: var(--navy-dark);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(76, 200, 232, 0.1);
}

.fill-bar-level {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-hover));
  border-radius: 5px;
  transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fill-percent {
  color: var(--cyan);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  min-width: 45px;
}

.wheel-replay {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
}

@media (max-width: 968px) {
  .wheel-game {
    flex-direction: column;
    gap: 40px;
  }

  .wheel-result {
    flex-direction: column;
    text-align: center;
  }

  #wheel-canvas {
    width: 300px;
    height: 300px;
  }
}

/* --- Click Challenge Section --- */
.click-section {
  background: var(--navy-dark);
}

.click-game {
  display: flex;
  align-items: stretch;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.click-glass-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.click-glass-wrap {
  position: relative;
}

.click-glass-body {
  width: 120px;
  height: 320px;
  border: 2px solid rgba(76, 200, 232, 0.3);
  border-radius: 6px 6px 24px 24px;
  position: relative;
  overflow: hidden;
  background: rgba(15, 45, 61, 0.4);
}

.click-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(180deg, rgba(76, 200, 232, 0.5), rgba(76, 200, 232, 0.85));
  transition: height 0.15s ease-out;
  border-radius: 0 0 22px 22px;
}

.click-liquid::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.click-glass-shine {
  position: absolute;
  top: 0;
  left: 8px;
  width: 18px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
  border-radius: 6px;
  pointer-events: none;
}

.click-level-markers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.clm {
  position: absolute;
  right: -8px;
  transform: translateX(100%) translateY(50%);
  font-size: 0.6rem;
  color: var(--gray);
  white-space: nowrap;
  padding-left: 10px;
  opacity: 0.6;
}

.clm::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: rgba(76, 200, 232, 0.2);
}

.clm-top {
  color: #ef4444;
  font-weight: 700;
  opacity: 1;
}

.clm-best {
  color: var(--success);
  font-weight: 700;
  opacity: 1;
}

.click-stats {
  display: flex;
  gap: 24px;
}

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

.click-stat-value {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.click-stat-label {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.click-action-zone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.click-state {
  text-align: center;
  width: 100%;
}

/* Ready state */
.click-target-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.click-state-ready h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.click-state-ready p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Playing state */
.click-state-playing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.click-tap-btn {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cyan), var(--cyan-hover));
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform 0.05s ease;
  box-shadow: 0 8px 30px var(--cyan-glow);
  user-select: none;
  -webkit-user-select: none;
}

.click-tap-btn:active {
  transform: scale(0.92);
  box-shadow: 0 2px 10px var(--cyan-glow);
}

.tap-icon {
  font-size: 2.5rem;
}

.tap-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 1px;
}

.click-progress-ring {
  position: relative;
  width: 80px;
  height: 80px;
}

.click-progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: var(--navy-light);
  stroke-width: 6;
}

.ring-fill {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.1s linear;
}

.ring-time {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}

/* Result state */
.click-result-level {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 8px;
}

.click-result-desc {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.click-result-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  color: var(--gray-light);
  font-size: 0.9rem;
}

.click-result-stats strong {
  color: var(--cyan);
  font-size: 1.1rem;
}

.click-result-share {
  background: var(--navy-light);
  border: 1px solid rgba(76, 200, 232, 0.1);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--gray-light);
}

.click-result-share strong {
  color: var(--cyan);
}

.click-retry-btn {
  font-size: 0.9rem !important;
  padding: 12px 28px !important;
}

@media (max-width: 768px) {
  .click-game {
    flex-direction: column;
    align-items: center;
  }

  .click-glass-body {
    width: 100px;
    height: 240px;
  }

  .click-tap-btn {
    width: 160px;
    height: 160px;
  }
}

/* --- Barman Challenge --- */
.barman-section {
  background: var(--navy);
}

.barman-game {
  display: flex;
  align-items: stretch;
  gap: 40px;
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}

.barman-glass-zone {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.barman-glass-body {
  width: 130px;
  height: 350px;
  border: 2px solid rgba(76, 200, 232, 0.3);
  border-radius: 6px 6px 26px 26px;
  position: relative;
  overflow: hidden;
  background: rgba(15, 45, 61, 0.4);
}

.barman-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(180deg, rgba(76, 200, 232, 0.5), rgba(76, 200, 232, 0.85));
  transition: height 0.05s linear;
  border-radius: 0 0 24px 24px;
}

.barman-liquid::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.barman-glass-shine {
  position: absolute;
  top: 0;
  left: 8px;
  width: 18px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
  border-radius: 6px;
  pointer-events: none;
}

.barman-target-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fbbf24;
  z-index: 5;
  bottom: 50%;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
  transition: bottom 0.3s ease;
}

.barman-target-line::before,
.barman-target-line::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.barman-target-line::before {
  left: -6px;
  border-right: 6px solid #fbbf24;
}

.barman-target-line::after {
  right: -6px;
  border-left: 6px solid #fbbf24;
}

.barman-target-label {
  position: absolute;
  right: -8px;
  top: -22px;
  transform: translateX(100%);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fbbf24;
  white-space: nowrap;
  background: rgba(251, 191, 36, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

.barman-stop-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  z-index: 4;
  bottom: 0%;
  opacity: 0;
  box-shadow: 0 0 8px var(--cyan-glow);
  transition: opacity 0.3s ease;
}

.barman-action-zone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.barman-state {
  text-align: center;
  width: 100%;
}

.barman-intro-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.barman-state h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.barman-state p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.barman-round-info {
  margin-bottom: 16px;
}

.barman-round-badge {
  background: rgba(76, 200, 232, 0.1);
  border: 1px solid rgba(76, 200, 232, 0.25);
  color: var(--cyan);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.barman-target-display {
  margin-bottom: 24px;
}

.barman-target-display span {
  display: block;
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.barman-target-display strong {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: #fbbf24;
}

.barman-stop-btn {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ef4444, #dc2626);
  border: 4px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.1s ease;
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.3);
  user-select: none;
}

.barman-stop-btn:hover {
  transform: scale(1.05);
}

.barman-stop-btn:active {
  transform: scale(0.95);
}

.barman-hint {
  color: var(--gray) !important;
  font-size: 0.8rem !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

/* Round result */
.barman-precision {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.barman-precision-label {
  font-size: 1rem !important;
  font-weight: 600;
  margin-bottom: 16px !important;
}

.barman-round-detail {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--gray);
}

.barman-round-detail strong {
  color: var(--white);
}

/* Final result */
.barman-final-score {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.barman-final-label {
  color: var(--gray) !important;
  font-size: 0.85rem !important;
  margin-bottom: 12px !important;
}

.barman-final-desc {
  margin-bottom: 16px !important;
}

.barman-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 1.8rem;
}

/* Score tracker */
.barman-score-tracker {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--navy-light);
  border: 1px solid rgba(76, 200, 232, 0.1);
  border-radius: 50px;
  padding: 10px 24px;
}

.barman-rounds-dots {
  display: flex;
  gap: 8px;
}

.round-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy-dark);
  border: 2px solid rgba(76, 200, 232, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray);
  transition: all 0.3s ease;
}

.round-dot.active {
  border-color: var(--cyan);
  color: var(--cyan);
}

.round-dot.good {
  background: var(--success);
  border-color: var(--success);
  color: var(--navy);
}

.round-dot.ok {
  background: #fbbf24;
  border-color: #fbbf24;
  color: var(--navy);
}

.round-dot.bad {
  background: #ef4444;
  border-color: #ef4444;
  color: white;
}

.barman-total-score {
  font-size: 0.85rem;
  color: var(--gray);
}

.barman-total-score strong {
  color: var(--cyan);
  font-size: 1.1rem;
}

.barman-next-btn {
  font-size: 0.85rem !important;
  padding: 12px 28px !important;
}

@media (max-width: 768px) {
  .barman-game {
    flex-direction: column;
    align-items: center;
  }

  .barman-glass-body {
    width: 100px;
    height: 260px;
  }

  .barman-stop-btn {
    width: 130px;
    height: 130px;
    font-size: 1.1rem;
  }

  .barman-score-tracker {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
  }
}

/* --- FAQ Section --- */
.faq-section {
  background: var(--navy-dark);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(76, 200, 232, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--cyan);
}

.faq-toggle {
  color: var(--cyan);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Community / Instagram + Newsletter --- */
.community-section {
  background: var(--navy);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}

.insta-card {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.insta-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--navy-light), var(--navy-dark));
  border: 1px solid rgba(76, 200, 232, 0.1);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.insta-placeholder:hover {
  border-color: var(--cyan);
  background: linear-gradient(145deg, var(--navy-light), var(--navy));
}

.insta-placeholder span {
  font-size: 2.5rem;
}

.insta-placeholder p {
  color: var(--gray);
  font-size: 0.8rem;
  font-weight: 600;
}

.newsletter {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
  border: 1px solid rgba(76, 200, 232, 0.15);
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.newsletter-content p {
  color: var(--gray);
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.newsletter-form input {
  background: var(--navy-dark);
  border: 1px solid rgba(76, 200, 232, 0.15);
  border-radius: 50px;
  padding: 14px 24px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  width: 260px;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--cyan);
}

.newsletter-form input::placeholder {
  color: rgba(138, 155, 170, 0.5);
}

/* --- Mountain SVG Draw Animation --- */
.mountain-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2s ease;
}

.mountain-line.animated {
  stroke-dashoffset: 0;
}

.mountain-fill {
  opacity: 0;
  transition: opacity 1.5s ease 0.8s;
}

.mountain-fill.animated {
  opacity: 1;
}

.mtn-dot, .mtn-label {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mtn-dot.animated, .mtn-label.animated {
  opacity: 1;
}

/* --- Animations (scroll reveal) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Notification toast --- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--navy-light);
  border: 1px solid var(--cyan);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  z-index: 5000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast .toast-icon {
  color: var(--cyan);
  font-size: 1.2rem;
}

/* --- Responsive --- */
@media (max-width: 968px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-image {
    order: -1;
  }

  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pack-card.popular {
    transform: none;
  }

  .pack-card.popular:hover {
    transform: translateY(-8px);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .step-card {
    max-width: 100%;
  }

  .gift-banner {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }

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

  .social-proof {
    flex-direction: column;
    gap: 24px;
  }

  .proof-divider {
    width: 60px;
    height: 1px;
  }

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

  .newsletter {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(76, 200, 232, 0.1);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner {
    gap: 12px;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .section {
    padding: 60px 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .reassurance-items {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(76, 200, 232, 0.3);
}

/* --- Selection --- */
::selection {
  background: rgba(76, 200, 232, 0.3);
  color: var(--white);
}
