@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800;900&display=swap');

:root {
  --bg-cream: #FDF9F1;
  --bg-alt: #F1E9DB;
  --primary-dark: #1E1E24;
  --accent-yellow: #FFD166;
  --accent-purple: #C8B6FF;
  --accent-green: #06D6A0;
  --accent-pink: #FFAFCC;
  --font-main: "Antique Olive", 'Outfit', 'Chewy', sans-serif;
  
  --radius-sm: 16px;
  --radius-md: 32px;
  --radius-pill: 999px;
  
  --border-thick: 3px solid var(--primary-dark);
  --shadow-solid: 4px 4px 0px var(--primary-dark);
  --shadow-hover: 8px 8px 0px var(--primary-dark);
  
  --transition-fast: 0.2s ease-out;
  --transition-smooth: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--bg-cream);
  color: var(--primary-dark);
  font-family: var(--font-main);
  scroll-behavior: smooth;
  line-height: 1.5;
  /* Prevent horizontal scroll jumps */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-size: clamp(2rem, 4vw, 3rem); }
p { font-size: 1.125rem; font-weight: 600; }
a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* Layout & Auto Layout Utilities */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-sm { gap: 1rem; }
.gap-md { gap: 2rem; }
.gap-lg { gap: 4rem; }
.flex-wrap { flex-wrap: wrap; }

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  border: var(--border-thick);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-solid);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hover);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px var(--primary-dark);
}

.btn-secondary {
  background-color: var(--bg-cream);
}

.btn-text {
  background: none;
  border: none;
  box-shadow: none;
  color: var(--primary-dark);
  padding: 1rem 0;
  font-weight: 800;
  text-decoration: none;
}

.btn-text:hover {
  transform: translateX(5px);
  color: var(--accent-purple);
  box-shadow: none;
}

.btn-text:active {
  transform: translateX(2px);
}

/* Marquee / Promo Banner */
.promo-banner {
  background-color: var(--accent-purple);
  border-bottom: var(--border-thick);
  padding: 0.75rem 0;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
}

.marquee-content span {
  font-weight: 800;
  text-transform: uppercase;
  padding: 0 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-cream);
  border-bottom: var(--border-thick);
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.125rem;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background-color: var(--accent-pink) !important;
  color: var(--primary-dark) !important;
  padding: 0.5rem 1.25rem !important;
  border: var(--border-thick);
  border-radius: var(--radius-pill);
  font-weight: 900 !important;
  margin-left: 1rem;
  box-shadow: 3px 3px 0px var(--primary-dark);
  transition: all var(--transition-fast) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.nav-cta::after {
  display: none !important; /* Remove the underline effect for the button */
}

.nav-cta:hover {
  transform: translate(-3px, -3px) !important;
  box-shadow: 6px 6px 0px var(--primary-dark) !important;
  background-color: var(--accent-yellow) !important;
  color: var(--primary-dark) !important;
}

.nav-cta:active {
  transform: translate(1px, 1px) !important;
  box-shadow: 1px 1px 0px var(--primary-dark) !important;
}

.logo {
  height: 50px;
  object-fit: contain;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
}

.mobile-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--primary-dark);
  transition: var(--transition-fast);
}

/* Enhanced Hero Section Styles */
.hero {
  padding: 8rem 0 12rem 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 70% 50%, var(--bg-alt) 0%, var(--bg-cream) 80%);
}

.hero-bg-shapes {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-shapes .shape {
  position: absolute;
  color: var(--accent-yellow);
  font-size: 3rem;
  opacity: 0.5;
}

.shape-1 { top: 15%; left: 10%; transform: rotate(15deg); color: var(--accent-pink); }
.shape-2 { top: 25%; right: 15%; font-size: 4rem; transform: rotate(-10deg); color: var(--accent-purple); }
.shape-3 { bottom: 30%; left: 20%; font-size: 2rem; color: var(--accent-green); }
.shape-4 { bottom: 40%; right: 10%; font-size: 5rem; color: var(--accent-yellow); }
.shape-5 { top: 60%; left: 5%; font-size: 3.5rem; color: var(--accent-purple); opacity: 0.35; }
.shape-6 { top: 10%; left: 45%; font-size: 2rem; color: var(--accent-green); opacity: 0.4; }
.shape-7 { bottom: 15%; right: 25%; font-size: 4.5rem; color: var(--accent-pink); opacity: 0.3; }
.shape-8 { bottom: 55%; left: 35%; font-size: 2.5rem; color: var(--accent-yellow); opacity: 0.4; }

/* Confetti Dots */
.confetti-dots {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.5;
}

.dot-1  { top: 8%;  left: 15%;  background: var(--accent-pink);   width: 14px; height: 14px; }
.dot-2  { top: 12%; left: 60%;  background: var(--accent-yellow); width: 10px; height: 10px; }
.dot-3  { top: 20%; left: 85%;  background: var(--accent-green);  width: 16px; height: 16px; }
.dot-4  { top: 35%; left: 5%;   background: var(--accent-purple); width: 8px;  height: 8px; }
.dot-5  { top: 50%; left: 90%;  background: var(--accent-pink);   width: 12px; height: 12px; }
.dot-6  { top: 65%; left: 22%;  background: var(--accent-yellow); width: 10px; height: 10px; }
.dot-7  { top: 75%; left: 70%;  background: var(--accent-green);  width: 14px; height: 14px; }
.dot-8  { top: 82%; left: 40%;  background: var(--accent-purple); width: 8px;  height: 8px; }
.dot-9  { top: 45%; left: 50%;  background: var(--accent-pink);   width: 6px;  height: 6px; }
.dot-10 { top: 28%; left: 30%;  background: var(--accent-green);  width: 10px; height: 10px; }
.dot-11 { top: 55%; left: 78%;  background: var(--accent-yellow); width: 12px; height: 12px; }
.dot-12 { top: 90%; left: 12%;  background: var(--accent-purple); width: 14px; height: 14px; }

/* Trust Markers */
.trust-markers {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-pill {
  padding: 0.5rem 1.25rem;
  background: white;
  border: 2px solid var(--primary-dark);
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Scrolling Text Ribbon */
.hero-ribbon {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  overflow: hidden;
  background-color: var(--accent-yellow);
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  padding: 0.75rem 0;
  z-index: 3;
  transform: rotate(-2deg) scale(1.05);
}

.ribbon-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}

.ribbon-content span {
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 0 1.5rem;
  letter-spacing: 0.05em;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  margin: 1.5rem 0;
}

.hero-content h1 .highlight {
  color: var(--accent-pink);
  text-shadow: 4px 4px 0px var(--primary-dark);
}

.badge-hero {
  position: relative;
  top: 0; right: 0;
  display: inline-block;
  transform: rotate(-5deg);
  margin-bottom: 1rem;
}

.hero p {
  margin: 1rem 0 2.5rem 0;
  font-size: 1.5rem;
}

.hero-buttons {
  justify-content: flex-start;
}

.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}

.hero-secondary-img {
  position: absolute;
  width: 250px;
  z-index: 1;
  filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.1));
}

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

.img-left {
  left: -50px;
  top: 20%;
  transform: rotate(-15deg);
}

.img-right {
  right: -50px;
  bottom: 10%;
  transform: rotate(15deg);
}

.img-back-1 {
  left: 15%;
  bottom: 5%;
  width: 180px;
  opacity: 0.4;
  transform: rotate(-8deg);
  z-index: 0;
}

.img-back-2 {
  right: 15%;
  top: 5%;
  width: 180px;
  opacity: 0.4;
  transform: rotate(12deg);
  z-index: 0;
}

.hero-image {
  margin-top: 0;
  position: relative;
  z-index: 3;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0px 20px 30px rgba(0,0,0,0.15));
  transition: transform var(--transition-smooth);
}

.hero-image img:hover {
  transform: scale(1.05) rotate(2deg);
}

.floating-sticker {
  position: absolute;
  background-color: var(--accent-yellow);
  border: var(--border-thick);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.1;
  box-shadow: var(--shadow-solid);
  z-index: 4;
}

.sticker-1 {
  top: 10%;
  right: -40px;
  background-color: var(--accent-green);
  transform: rotate(15deg);
}

.sticker-2 {
  bottom: 20%;
  left: -60px;
  background-color: var(--accent-purple);
  transform: rotate(-10deg);
}

.hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.hero-divider svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 90px;
}

/* Featured Products Carousel / Grid */
.section {
  padding: 6rem 0;
  border-bottom: var(--border-thick);
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  opacity: 1;
}

.product-grid-centered {
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}

.product-card {
  background-color: white;
  border: var(--border-thick);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-fast);
  position: relative;
  box-shadow: var(--shadow-solid);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-card .img-wrapper {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.product-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.product-card .price {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-purple);
}

/* Badges */
.badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--accent-green);
  color: var(--primary-dark);
  font-weight: 800;
  padding: 0.5rem 1rem;
  border: var(--border-thick);
  border-radius: var(--radius-pill);
  transform: rotate(15deg);
  z-index: 2;
}

.badge-alt {
  background-color: var(--accent-pink);
  left: -15px;
  right: auto;
  transform: rotate(-10deg);
}

/* Roadmap Styles */
.roadmap-timeline {
  position: relative;
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem 0;
}

.roadmap-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 8px;
  background-color: white;
  border: 2px solid var(--primary-dark);
  transform: translateX(-50%);
  border-radius: 8px;
  overflow: hidden;
}

.roadmap-line-fill {
  width: 100%;
  background-color: var(--accent-pink);
  height: 0%; /* Navigated implicitly by GSAP */
}

.roadmap-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
  width: 100%;
}

.roadmap-step:nth-child(even) {
  flex-direction: row-reverse;
}

.roadmap-content {
  width: calc(50% - 4rem);
  background: white;
  padding: 3rem;
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-solid);
}

.roadmap-step:nth-child(odd) .roadmap-content {
  text-align: right;
  border-bottom-right-radius: 0;
}

.roadmap-step:nth-child(even) .roadmap-content {
  text-align: left;
  border-bottom-left-radius: 0;
}

.roadmap-marker {
  width: 32px;
  height: 32px;
  background-color: var(--accent-yellow);
  border: var(--border-thick);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
}

/* Footer — Enhanced */
.footer {
  background-color: var(--primary-dark);
  color: var(--bg-cream);
  padding: 0 0 2rem 0;
  position: relative;
}

.footer-wave {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 3rem 2rem 0 2rem;
}

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

.footer-logo {
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  align-self: flex-start;
}

.footer-tagline {
  font-size: 1.5rem !important;
  font-weight: 900;
  color: var(--accent-yellow);
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  opacity: 0.6;
  line-height: 1.5;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--bg-cream);
  transition: all var(--transition-fast);
}

.footer-social-icon:hover {
  background-color: var(--accent-yellow);
  color: var(--primary-dark);
  border-color: var(--accent-yellow);
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 1.25rem;
  color: var(--accent-yellow);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  opacity: 0.7;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-green);
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.5;
  font-size: 0.9rem;
}

.footer-credit a {
  color: var(--accent-yellow);
  font-weight: 800;
}

.footer-credit a:hover {
  opacity: 1;
  color: var(--accent-green);
}

/* Legal Pages */
.legal-page {
  padding: 6rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content {
  background: white;
  padding: 4rem;
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-solid);
}

.legal-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-content h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.legal-content p, .legal-content li {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}

.legal-content ul, .legal-content ol {
  margin-left: 2rem;
  margin-bottom: 2rem;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-family: inherit;
  font-size: 1.125rem;
  border: var(--border-thick);
  border-radius: var(--radius-pill);
  outline: none;
}

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

/* Komi Club Section */
.komi-club-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(160deg, var(--accent-purple) 0%, var(--accent-pink) 50%, var(--accent-yellow) 100%);
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  overflow: hidden;
}

.club-bg-shapes {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.club-shape {
  position: absolute;
  font-size: 3rem;
  opacity: 0.2;
}

.cs-1 { top: 10%; left: 8%;  font-size: 4rem; transform: rotate(15deg); }
.cs-2 { top: 20%; right: 10%; font-size: 5rem; transform: rotate(-12deg); }
.cs-3 { bottom: 15%; left: 15%; font-size: 3.5rem; transform: rotate(25deg); }
.cs-4 { bottom: 25%; right: 5%; font-size: 4.5rem; transform: rotate(-8deg); }
.cs-5 { top: 55%; left: 4%;   font-size: 3rem; transform: rotate(10deg); }
.cs-6 { top: 5%;  right: 35%;  font-size: 2.5rem; transform: rotate(-20deg); }
.cs-7 { top: 40%; right: 15%;  font-size: 3.5rem; transform: rotate(15deg); }
.cs-8 { bottom: 40%; left: 10%; font-size: 3rem; transform: rotate(-10deg); }
.cs-9 { top: 75%; right: 25%;  font-size: 4rem; transform: rotate(20deg); }

.club-card {
  position: relative;
  z-index: 1;
  background: white;
  max-width: 750px;
  margin: 0 auto;
  padding: 4rem;
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: 6px 6px 0px var(--primary-dark);
  text-align: center;
}

/* Satisfaction Badge (Circular Decoration) */
.satisfaction-badge {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background-color: var(--accent-yellow);
  border: var(--border-thick);
  border-radius: 50%;
  box-shadow: 4px 4px 0px var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.satisfaction-badge svg {
  position: absolute;
  width: 110%;
  height: 110%;
  animation: rotateText 10s linear infinite;
}

.satisfaction-badge text {
  fill: var(--primary-dark);
  font-family: 'Antique Olive', sans-serif;
  font-weight: 900;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.badge-icon {
  font-size: 2.5rem;
  z-index: 1;
}

@keyframes rotateText {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.club-badge {
  display: inline-block;
  background-color: var(--accent-green);
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border: var(--border-thick);
  border-radius: var(--radius-pill);
  transform: rotate(-3deg);
  margin-bottom: 1.5rem;
  box-shadow: 2px 2px 0px var(--primary-dark);
}

.club-card h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.club-highlight {
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.club-subtitle {
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  max-width: 550px;
  margin: 0 auto 2.5rem auto;
  color: rgba(30,30,36,0.7);
}

.club-perks {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.perk-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-alt);
  border: 2px solid var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all var(--transition-fast);
}

.perk:hover .perk-icon {
  transform: scale(1.15) rotate(-5deg);
  background: var(--accent-yellow);
  box-shadow: var(--shadow-solid);
}

.perk span {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.club-form {
  display: flex;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.club-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  border: var(--border-thick);
  border-radius: var(--radius-pill);
  outline: none;
  transition: border-color var(--transition-fast);
}

.club-form input:focus {
  border-color: var(--accent-purple);
}

.club-btn {
  background: var(--accent-pink);
  font-size: 1.1rem;
}

.club-btn:hover {
  background: var(--accent-purple);
}

.club-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: var(--accent-green);
  border: var(--border-thick);
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1.1rem;
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.club-disclaimer {
  margin-top: 1.5rem !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: rgba(30,30,36,0.4);
}


/* About Founder */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-social {
  background-color: var(--accent-purple);
}

.btn-social:nth-child(2n) {
  background-color: var(--accent-pink);
}

.btn-social:nth-child(3n) {
  background-color: var(--accent-green);
}

/* Category Headers */
.category-header {
  margin-top: 4rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-header::after {
  content: '';
  flex: 1;
  height: 3px;
  background-color: var(--primary-dark);
}

/* About Me Page — Enhanced */
.about-hero {
  padding: 8rem 0 12rem 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 50%, var(--bg-alt) 0%, var(--bg-cream) 80%);
}

.about-hero-layout {
  display: flex;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

.about-photo-wrapper {
  position: relative;
  flex-shrink: 0;
}

.about-photo {
  width: 380px;
  height: 480px;
  object-fit: cover;
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: 6px 6px 0px var(--primary-dark);
  transition: transform var(--transition-smooth);
}

.about-photo:hover {
  transform: rotate(-2deg) scale(1.02);
}

.about-sticker {
  position: absolute;
  background-color: var(--accent-yellow);
  border: var(--border-thick);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.25rem;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: var(--shadow-solid);
  z-index: 3;
  white-space: nowrap;
}

.about-sticker-1 {
  top: -15px;
  right: -30px;
  background-color: var(--accent-green);
  transform: rotate(12deg);
}

.about-sticker-2 {
  bottom: 60px;
  left: -40px;
  background-color: var(--accent-purple);
  transform: rotate(-8deg);
}

.about-sticker-3 {
  bottom: -10px;
  right: 30px;
  background-color: var(--accent-pink);
  transform: rotate(5deg);
}

.about-hero-text {
  flex: 1;
}

.about-hero-text h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.9;
  margin: 1rem 0;
}

.about-tagline {
  font-size: 1.4rem !important;
  color: var(--accent-purple);
  margin-bottom: 1rem !important;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border: var(--border-thick);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow-solid);
  transition: all var(--transition-fast);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-pink);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.skill-card {
  background: white;
  padding: 2.5rem 2rem;
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-solid);
  text-align: center;
  transition: all var(--transition-fast);
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.skill-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.skill-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.skill-card p {
  font-weight: 500;
  font-size: 1rem;
  color: rgba(30,30,36,0.7);
}

/* Vision Section */
.about-vision-layout {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}

.vision-text {
  flex: 1.2;
}

.vision-text h2 {
  margin: 1rem 0 2rem 0;
}

.vision-text p {
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
}

.vision-values {
  flex: 0.8;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-content: flex-start;
}

.value-pill {
  padding: 1rem 1.75rem;
  background: white;
  border: var(--border-thick);
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-solid);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.value-pill:hover {
  transform: translateY(-4px) rotate(-2deg);
  box-shadow: var(--shadow-hover);
}

.vp-1 { background: #E8F5E9; }
.vp-2 { background: #FCE4EC; }
.vp-3 { background: #E3F2FD; }
.vp-4 { background: #FFF3E0; }
.vp-5 { background: #F3E5F5; }
.vp-6 { background: #E0F7FA; }

/* Social Cards Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  background: var(--bg-cream);
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-solid);
  transition: all var(--transition-fast);
  text-decoration: none;
  color: var(--primary-dark);
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.social-card-icon {
  font-size: 2rem;
  font-weight: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--primary-dark);
}

.sc-behance .social-card-icon  { background: #1769FF; color: white; }
.sc-insta .social-card-icon    { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.sc-x .social-card-icon        { background: var(--primary-dark); color: white; }
.sc-linkedin .social-card-icon { background: #0A66C2; color: white; }
.sc-apple .social-card-icon    { background: #FA243C; color: white; }
.sc-email .social-card-icon    { background: var(--accent-green); color: var(--primary-dark); }

.social-card-name {
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
}

.social-card-handle {
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0.5;
}


/* Story Page */
.story-body {
  max-width: 800px;
  margin: 0 auto;
}

.story-block {
  margin-bottom: 3rem;
}

.story-block p {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 500;
}

.story-highlight {
  background: white;
  padding: 4rem;
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-solid);
}

.story-quote {
  font-size: 1.75rem !important;
  font-weight: 900 !important;
  font-style: italic;
  color: var(--accent-pink);
  margin-top: 2rem !important;
  padding-left: 2rem;
  border-left: 6px solid var(--accent-pink);
}

.story-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-list li {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 1rem 1.5rem;
  background-color: var(--bg-cream);
  border-radius: var(--radius-sm);
  border-left: 6px solid var(--accent-green);
}

/* USP Grid */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.usp-card {
  background: white;
  padding: 3rem 2rem;
  border: var(--border-thick);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-solid);
  text-align: center;
  transition: all var(--transition-fast);
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.usp-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.usp-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.usp-card p {
  font-weight: 500;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--accent-yellow);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: var(--border-thick);
    transition: right var(--transition-fast);
    z-index: 100;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  
  .hero-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }

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

  .hero-visual {
    height: 400px;
  }

  .hero-secondary-img {
    width: 150px;
  }

  .img-left {
    left: 0;
  }

  .img-right {
    right: 0;
  }

  .floating-sticker {
    width: 90px;
    height: 90px;
    font-size: 0.85rem;
  }

  .sticker-1 {
    right: -10px;
  }

  .sticker-2 {
    left: -10px;
  }
  
  .roadmap-line {
    left: 20px;
  }
  
  .roadmap-step {
    flex-direction: column !important;
    align-items: flex-start;
  }

  .roadmap-marker {
    left: 20px;
  }

  .roadmap-content {
    width: calc(100% - 60px);
    margin-left: 60px;
    text-align: left !important;
    border-bottom-right-radius: var(--radius-md) !important;
    border-bottom-left-radius: var(--radius-md) !important;
  }

  .about-hero-layout {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .about-photo {
    width: 280px;
    height: 360px;
  }

  .about-hero-text .badge-hero {
    margin: 0 auto 1rem auto;
  }

  .about-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .about-vision-layout {
    flex-direction: column;
    gap: 3rem;
  }

  .vision-values {
    justify-content: center;
  }

  .social-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .story-highlight {
    padding: 2rem;
  }
  
  .legal-content {
    padding: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }

  .club-card {
    padding: 2.5rem 1.5rem;
  }

  .club-form {
    flex-direction: column;
  }

  .club-perks {
    gap: 1.25rem;
  }

  .satisfaction-badge {
    width: 100px;
    height: 100px;
    top: -40px;
    right: 50%;
    transform: translateX(50%);
  }

  .badge-icon {
    font-size: 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    align-self: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
