/* Brand Style - Wuffy Robot Puppy */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Nunito:wght@400;600&family=Playfair+Display:wght@600;700&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  /* Primary Colors */
  --primary-cream: #fff4e6;
  --primary-brown: #b87333;
  --primary-brown-dark: #9e5f28;
  --accent-beige: #e8d5c4;
  --accent-gold: #d4a574;

  /* Text Colors */
  --text-charcoal: #2e2e2e;
  --text-soft-gray: #5a5a5a;
  --text-muted: #9a9a9a;
  --text-light: #f5f5f5;

  /* Background Colors */
  --bg-main: #fffcf8;
  --bg-section-alt: #f7ede2;
  --bg-card: #ffffff;
  --bg-overlay: rgba(0, 0, 0, 0.5);

  /* Button Interactions */
  --btn-primary-hover: #9e5f28;
  --btn-secondary-hover-bg: #e8d5c4;

  /* Accent Colors */
  --accent-success: #6faf98;
  --accent-warning: #e0a458;
  --accent-error: #c96a6a;
  --accent-info: #9ec9e2;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Fonts */
  --font-heading: "Poppins", "Playfair Display", serif;
  --font-body: "Inter", "Nunito", sans-serif;
  --font-btn: "Poppins", sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-charcoal);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-charcoal);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

ul {
  list-style: none;
}

/* Navbar */
.navbar {
  background-color: rgba(255, 244, 230, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.navbar:hover {
  box-shadow: var(--shadow-md);
}

body {
  padding-top: 70px; /* Space for fixed navbar */
}

.no-scroll {
  overflow: hidden !important;
  height: 100vh;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3001;
}

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

.logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-brown);
}

.nav-links {
  align-items: center;
}

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

.nav-link {
  font-weight: 500;
  color: var(--text-charcoal);
  position: relative;
  padding-bottom: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-brown);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-brown);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

.nav-actions .btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

.btn {
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-btn);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 1rem;
  display: inline-block;
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-brown) 0%, #9e5f28 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9e5f28 0%, #8b4513 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-brown);
  border: 2px solid var(--primary-brown);
  box-shadow: 0 2px 8px rgba(184, 115, 51, 0.1);
}

.btn-secondary:hover {
  background-color: var(--primary-brown);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
}

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.burger-bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary-brown);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-actions-mobile {
  display: none;
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%; /* Slightly wider for better space */
    background-color: var(--primary-cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 3005;
    overflow-y: auto; /* Allow menu to scroll if items exceed height */
  }

  /* Add a backdrop when active to prevent interaction with background */
  body.no-scroll::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);

    z-index: 2500;
    animation: fadeIn 0.3s ease;
  }

  .nav-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
  }

  .nav-links.active {
    right: 0;
  }

  .burger-menu {
    display: flex;
    z-index: 3010;
  }

  /* Burger Animation */
  .burger-menu.active .burger-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .nav-actions {
    display: none;
  }

  /* Show buttons in mobile menu */
  .nav-links .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    align-items: center;
  }

  .nav-actions-mobile .btn {
    width: 100%;
    text-align: center;
    max-width: 200px;
  }
}

/* Content Placeholder for Demo */
.main-content {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--primary-brown);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 10px rgba(184, 115, 51, 0.1);
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-soft-gray);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Footer */
.footer {
  background: linear-gradient(
    135deg,
    var(--primary-cream) 0%,
    var(--bg-section-alt) 100%
  );
  padding: 4rem 2rem 2rem;
  margin-top: auto;
  border-top: 2px solid var(--accent-beige);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-brand p {
  color: var(--text-soft-gray);
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-heading {
  color: var(--text-charcoal);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 0.8rem;
  transition: transform var(--transition-fast);
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: var(--text-soft-gray);
  font-size: 0.95rem;
  transition: color var(--transition-base);
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--accent-beige);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-container,
.hero-section,
.features-section,
.cta-section,
.footer-container {
  animation: fadeIn 0.8s ease-out forwards;
}

/* --- New Section Styles --- */

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 2rem; */
}

/* Hero Section */
.hero-section {
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    var(--bg-main) 0%,
    var(--primary-cream) 100%
  );
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--primary-brown);
}

.hero-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-soft-gray);
  font-weight: 500;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-charcoal);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 500px;
}

.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Hero Points */
.hero-points {
  list-style: none;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: var(--text-charcoal);
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23B87333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Hero Section - Mobile */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }
}

/* Product Overview Section */
/* ==================== OVERVIEW SECTION ==================== */
.overview-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #fff4e6 100%);
}

/* Overview Grid */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1300px;
  margin: 3rem auto;
}

/* Video Card */
.overview-video-card {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid #f5f5f5;
  transition: all 0.3s ease;
}

.overview-video-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 20px 60px rgba(184, 115, 51, 0.15); */
}

.video-wrapper {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* Overview Points Card */
.overview-points-card {
  background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--accent-beige);
}

.overview-points-card h3 {
  font-size: 1.8rem;
  color: var(--text-charcoal);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.overview-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.overview-features-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.overview-features-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(184, 115, 51, 0.1);
  border-color: var(--accent-beige);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-brown), #d4a574);
  border-radius: 12px;
  color: white;
}

.feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-text strong {
  font-size: 1.1rem;
  color: var(--text-charcoal);
  font-weight: 700;
}

.feature-text span {
  font-size: 0.95rem;
  color: var(--text-soft-gray);
  line-height: 1.5;
}

/* Intelligence Section */
.intelligence-section {
  max-width: 1300px;
  margin: 4rem auto 0;
}

.subsection-title {
  text-align: center;
  font-size: 2rem;
  color: var(--text-charcoal);
  margin-bottom: 2.5rem;
  font-weight: 700;
  position: relative;
}

.subsection-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-brown), #d4a574);
  border-radius: 2px;
}

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

.intelligence-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #f5f5f5;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intelligence-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 45px rgba(184, 115, 51, 0.15);
  border-color: var(--accent-beige);
}

.intel-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(184, 115, 51, 0.1),
    rgba(212, 165, 116, 0.1)
  );
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.intelligence-card h4 {
  font-size: 1.4rem;
  color: var(--text-charcoal);
  margin-bottom: 1rem;
  font-weight: 700;
}

.intelligence-card p {
  font-size: 1rem;
  color: var(--text-soft-gray);
  line-height: 1.7;
  margin: 0;
}

/* Mobile Responsive - Overview */
@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intelligence-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .overview-points-card {
    padding: 2rem;
  }

  .intelligence-card {
    padding: 2rem 1.5rem;
  }
}

.conversion-triggers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  background: linear-gradient(
    135deg,
    var(--primary-cream) 0%,
    var(--bg-section-alt) 100%
  );
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--accent-beige);
  box-shadow: var(--shadow-sm);
}

.trigger-item {
  transition: transform var(--transition-base);
}

.trigger-item:hover {
  transform: translateX(8px);
}

.trigger-item h4 {
  font-size: 1.35rem;
  color: var(--primary-brown);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.trigger-item h4 svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(184, 115, 51, 0.2));
}

.trigger-item p {
  font-size: 1.05rem;
  color: var(--text-soft-gray);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .conversion-triggers {
    grid-template-columns: 1fr;
  }

  .hero-points {
    display: inline-block;
    text-align: left;
  }

  .overview-container {
    grid-template-columns: 1fr;
  }

  .overview-video-wrapper {
    position: relative;
    top: 0;
    order: -1;
    margin-bottom: 2rem;
  }
}

/* Specs Section */
.specs-section {
  padding: 6rem 2rem;
  background-color: var(--bg-card);
}

.specs-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-soft-gray);
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
}

@media (max-width: 768px) {
  .specs-intro {
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    padding: 0 0.5rem;
    line-height: 1.7;
  }
}

.specs-table-container {
  overflow-x: auto;
  margin-bottom: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  -webkit-overflow-scrolling: touch;
}

.specs-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.specs-table th,
.specs-table td {
  padding: 1.25rem 1.75rem;
  text-align: left;
  border-bottom: 1px solid var(--accent-beige);
  transition: background-color 0.2s ease;
}

.specs-table tbody tr:hover {
  background-color: var(--bg-section-alt);
}

.specs-table th {
  background: linear-gradient(
    135deg,
    var(--primary-cream) 0%,
    var(--accent-beige) 100%
  );
  color: var(--primary-brown);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--text-charcoal);
  white-space: nowrap;
}

.specs-table td:nth-child(2) {
  color: var(--text-charcoal);
  font-weight: 500;
}

.specs-table td:nth-child(3) {
  color: var(--text-soft-gray);
  font-style: italic;
  line-height: 1.6;
}

.specs-triggers {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .specs-table-container {
    margin: 0 -1rem 2rem -1rem;
    padding: 0 1rem;
    border-radius: 0;
    box-shadow: none;
  }

  .specs-table {
    min-width: 600px;
  }

  .specs-table th,
  .specs-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
}
/* Features Section */
.features-section {
  padding: 6rem 2rem;
  background-color: var(--bg-main);
}

.section-title {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 3rem;
  color: var(--primary-brown);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
  position: relative;
  padding-bottom: 1.25rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-brown),
    #d4a574,
    var(--primary-brown)
  );
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    padding: 0 1rem;
  }

  .section-title::after {
    width: 60px;
    height: 3px;
  }
}

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

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.feature-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--accent-beige);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.feature-card h3 {
  color: var(--primary-brown);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-card p {
  color: var(--text-soft-gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Material & Build Quality Section */
/* ==================== MATERIAL & BUILD QUALITY SECTION ==================== */
.material-section {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #fff4e6 0%, #ffffff 100%);
}

/* Materials Grid */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 3rem auto;
}

/* Material Card */
.material-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid #f5f5f5;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.material-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(184, 115, 51, 0.15);
  border-color: var(--accent-beige);
}

.material-card.featured {
  background: linear-gradient(135deg, #fffbf5 0%, #ffffff 100%);
  border-color: var(--primary-brown);
  border-width: 3px;
}

.material-card-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(184, 115, 51, 0.1),
    rgba(212, 165, 116, 0.1)
  );
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.material-card h3 {
  font-size: 1.6rem;
  color: var(--text-charcoal);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.material-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.material-features li {
  font-size: 1rem;
  color: var(--text-soft-gray);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.material-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-brown);
  font-weight: 700;
  font-size: 1.2rem;
}

.material-features li strong {
  color: var(--text-charcoal);
  font-weight: 600;
}

/* Quality Badges */
.quality-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #f5f5f5;
}

.quality-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(184, 115, 51, 0.05),
    rgba(212, 165, 116, 0.05)
  );
  border-radius: 12px;
  transition: all 0.3s ease;
  min-width: 120px;
}

.quality-badge:hover {
  transform: translateY(-5px);
  background: linear-gradient(
    135deg,
    rgba(184, 115, 51, 0.1),
    rgba(212, 165, 116, 0.1)
  );
}

.quality-badge svg {
  color: var(--primary-brown);
  filter: drop-shadow(0 4px 8px rgba(184, 115, 51, 0.2));
}

.quality-badge span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-charcoal);
  text-align: center;
}

/* Mobile Responsive - Material */
@media (max-width: 900px) {
  .materials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .material-card {
    padding: 2rem;
  }

  .quality-badges {
    gap: 1rem;
    padding: 2rem 1.5rem;
  }

  .quality-badge {
    min-width: 100px;
    padding: 1rem;
  }
}

.material-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.material-text p {
  font-size: 1.15rem;
  color: var(--text-charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.material-image {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 6rem;
  height: fit-content;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  background-color: var(--primary-cream);
  border: 2px dashed var(--accent-beige);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: var(--text-soft-gray);
  font-style: italic;
}

.material-triggers {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-main);
}

@media (max-width: 900px) {
  .material-container {
    grid-template-columns: 1fr;
  }

  .material-text {
    order: 1;
  }

  .material-image {
    order: 2;
    margin-top: 2rem;
    position: relative;
    top: 0;
  }
}
/* How Wuffy Works Section */
/* ==================== HOW WUFFY WORKS SECTION ==================== */
.how-it-works-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #fff4e6 50%, #ffffff 100%);
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 3rem 1rem;
  }
}

/* Technology Overview Cards */
.tech-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 3rem auto;
}

.tech-overview-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #f5f5f5;
  transition: all 0.3s ease;
}

.tech-overview-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 45px rgba(184, 115, 51, 0.15);
  border-color: var(--accent-beige);
}

.tech-icon-wrapper {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(184, 115, 51, 0.1),
    rgba(212, 165, 116, 0.1)
  );
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.tech-overview-card h3 {
  font-size: 1.4rem;
  color: var(--text-charcoal);
  margin-bottom: 1rem;
  font-weight: 700;
}

.tech-overview-card p {
  font-size: 1rem;
  color: var(--text-soft-gray);
  line-height: 1.6;
  margin: 0;
}

/* Response Section */
.response-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 3rem;
  background: linear-gradient(135deg, #fffbf5 0%, white 100%);
  border-radius: 24px;
  border: 2px solid var(--accent-beige);
}

.subsection-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-soft-gray);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

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

.response-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid #f5f5f5;
  transition: all 0.3s ease;
}

.response-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(184, 115, 51, 0.12);
  border-color: var(--accent-beige);
}

.response-trigger,
.response-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.trigger-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
}

.trigger-icon.gentle {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.trigger-icon.excited {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.trigger-icon.voice {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.trigger-icon.calm {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.trigger-label,
.result-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-charcoal);
  text-align: center;
}

.response-arrow {
  font-size: 2rem;
  color: var(--primary-brown);
  font-weight: 700;
}

.result-icon {
  font-size: 2.5rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(184, 115, 51, 0.1),
    rgba(212, 165, 116, 0.1)
  );
  border-radius: 50%;
}

.result-icon svg {
  color: var(--primary-brown);
}

/* Adaptive Learning Section */
.adaptive-learning-section {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 3rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid #f5f5f5;
}

.learning-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.learning-text p {
  font-size: 1.05rem;
  color: var(--text-soft-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.learning-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.learning-feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  width: fit-content;
}

.active-badge {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
}

.calm-badge {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
}

.learning-feature p {
  font-size: 1rem;
  color: var(--text-soft-gray);
  margin: 0;
  line-height: 1.6;
}

/* Learning Graph */
.learning-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.learning-graph {
  width: 100%;
  max-width: 400px;
  background: linear-gradient(135deg, #fffbf5, white);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--accent-beige);
}

.graph-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-charcoal);
  margin-bottom: 2rem;
}

.graph-bars {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 200px;
  gap: 1rem;
  padding: 0 1rem;
}

.graph-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.graph-bar {
  width: 100%;
  background: linear-gradient(to top, var(--primary-brown), #d4a574);
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
  min-height: 20px;
}

.graph-bar-group:hover .graph-bar {
  background: linear-gradient(to top, #d4a574, var(--primary-brown));
  transform: scaleY(1.05);
}

.graph-label {
  font-size: 0.85rem;
  color: var(--text-soft-gray);
  font-weight: 600;
}

.graph-footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-soft-gray);
  margin-top: 1.5rem;
  font-style: italic;
}

/* Mobile Responsive - How It Works */
@media (max-width: 900px) {
  .tech-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .response-section {
    padding: 2rem 1rem;
    margin: 3rem 1rem;
  }

  .subsection-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .subsection-intro {
    font-size: 1rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }

  .response-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .response-card {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .trigger-icon,
  .result-icon {
    width: 60px;
    height: 60px;
  }

  .trigger-icon svg,
  .result-icon svg {
    width: 30px;
    height: 30px;
  }

  .trigger-label,
  .result-label {
    font-size: 0.9rem;
  }

  .response-arrow {
    font-size: 1.5rem;
  }

  .adaptive-learning-section {
    padding: 2rem 1rem;
    margin: 3rem 1rem 0;
  }

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

  .learning-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }

  .learning-features {
    gap: 1.25rem;
  }

  .feature-badge {
    font-size: 0.9rem;
    padding: 0.5rem 1.1rem;
  }

  .learning-visual {
    order: -1;
  }

  .learning-graph {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }

  .graph-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .graph-bars {
    height: 180px;
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .graph-label {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .graph-footer {
    font-size: 0.85rem;
    margin-top: 1.25rem;
  }
}

@media (max-width: 600px) {
  .tech-overview-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .response-section {
    padding: 1.5rem 1rem;
    margin: 2rem 0.5rem;
    border-radius: 16px;
  }

  .subsection-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .subsection-intro {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .response-card {
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 0.75rem;
  }

  .response-trigger,
  .response-result {
    width: 100%;
  }

  .trigger-icon,
  .result-icon {
    width: 60px;
    height: 60px;
  }

  .trigger-icon svg,
  .result-icon svg {
    width: 30px;
    height: 30px;
  }

  .trigger-label,
  .result-label {
    font-size: 0.95rem;
    font-weight: 600;
  }

  .response-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
    margin: 0.25rem 0;
  }

  .adaptive-learning-section {
    padding: 1.5rem 1rem;
    margin: 2rem 0.5rem 0;
    border-radius: 16px;
  }

  .learning-text p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .learning-features {
    gap: 1.25rem;
  }

  .learning-feature {
    gap: 0.5rem;
  }

  .feature-badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .learning-feature p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .learning-graph {
    padding: 1.5rem 1rem;
  }

  .graph-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .graph-bars {
    height: 160px;
    gap: 0.5rem;
    padding: 0;
  }

  .graph-bar-group {
    gap: 0.6rem;
  }

  .graph-label {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .graph-footer {
    font-size: 0.85rem;
    margin-top: 1rem;
    line-height: 1.4;
  }
}

.how-it-works-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.how-it-works-image {
  position: sticky;
  top: 6rem;
  height: fit-content;
}

.how-it-works-text p {
  font-size: 1.15rem;
  color: var(--text-charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.how-triggers {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--primary-cream);
}

@media (max-width: 900px) {
  .how-it-works-container {
    grid-template-columns: 1fr;
  }

  .how-it-works-image {
    position: relative;
    top: 0;
    order: -1;
    margin-bottom: 2rem;
  }
}
/* How to Use Wuffy Section */
.usage-section {
  padding: 6rem 2rem;
  background-color: var(--bg-card);
}

.usage-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.usage-text p {
  font-size: 1.15rem;
  color: var(--text-charcoal);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.usage-steps {
  list-style: none;
  padding: 0;
}

.usage-steps li {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: var(--text-charcoal);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.usage-steps li::before {
  content: "•";
  color: var(--primary-brown);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -5px;
}

.usage-steps strong {
  color: var(--primary-brown);
  font-weight: 600;
}

.usage-image {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 6rem;
  height: fit-content;
}

.usage-image video {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--accent-beige);
}

.usage-triggers {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-main);
}

@media (max-width: 900px) {
  .usage-container {
    grid-template-columns: 1fr;
  }

  .usage-image {
    position: relative;
    top: 0;
    order: -1;
    margin-bottom: 2rem;
  }
}
/* Special Offer / Pricing Section */
.pricing-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #fff4e6 0%, #faf0e6 50%, #fff4e6 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(184, 115, 51, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(212, 165, 116, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Limited Time Offer Banner */
.offer-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 2rem auto 3rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
  color: white;
  animation: pulse 2s ease-in-out infinite;
}

.offer-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.offer-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.offer-text strong {
  font-size: 1.2rem;
  font-weight: 700;
}

.offer-text span {
  font-size: 0.95rem;
  opacity: 0.95;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 3rem auto;
  position: relative;
  z-index: 1;
}

/* Pricing Card */
.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 0;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 3px solid #f5f5f5;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #b87333, #d4a574, #b87333);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 1;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 25px 60px rgba(184, 115, 51, 0.25);
  border-color: #d4a574;
}

/* Featured Cards */
.pricing-card.featured-card {
  border-color: var(--primary-brown);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(184, 115, 51, 0.2);
  background: linear-gradient(to bottom, white 0%, #fffbf5 100%);
}

.pricing-card.featured-card::before {
  transform: scaleX(1);
  height: 10px;
}

.pricing-card.featured-card:hover {
  transform: scale(1.05) translateY(-16px);
  box-shadow: 0 30px 70px rgba(184, 115, 51, 0.3);
}

/* Card Badge (Top Label) */
.card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
  background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
  color: #424242;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popular-badge {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
}

.bestseller-badge {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.value-badge {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
}

/* Corner Ribbons */
.corner-ribbon {
  position: absolute;
  top: 30px;
  right: -40px;
  width: 160px;
  padding: 10px 0;
  text-align: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.corner-ribbon.red {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.corner-ribbon.blue {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

/* Card Image Section */
.card-image {
  position: relative;
  padding: 2.5rem 2rem 1.5rem;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(184, 115, 51, 0.03) 100%
  );
}

.card-image img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.pricing-card:hover .card-image img {
  transform: scale(1.1) rotate(5deg);
}

.qty-badge {
  position: absolute;
  bottom: 10px;
  right: 20%;
  background: linear-gradient(135deg, #b87333, #8b5a2b);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  border: 3px solid white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Card Header */
.card-header {
  padding: 1rem 2rem 0.5rem;
}

.card-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-charcoal);
}

.ideal-for {
  display: block;
  font-size: 0.95rem;
  color: var(--text-soft-gray);
  margin-bottom: 0.5rem;
  font-style: italic;
}

/* Card Pricing */
.card-pricing {
  padding: 1rem 2rem;
  margin-bottom: 1rem;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.old-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-charcoal);
  line-height: 1;
}

.featured-price {
  background: linear-gradient(135deg, #b87333, #d4a574);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.savings-pill {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: white;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.highlight-pill {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.bestseller-pill {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.value-pill {
  background: linear-gradient(135deg, #3498db, #2980b9);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.unit-price {
  font-size: 0.9rem;
  color: var(--text-soft-gray);
  font-weight: 500;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0 2rem 1.5rem;
  margin: 0;
  text-align: left;
}

.features-list li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-charcoal);
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.features-list li svg {
  flex-shrink: 0;
  color: var(--primary-brown);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li strong {
  color: var(--primary-brown);
}

/* Buttons */
.btn-block {
  display: block;
  width: calc(100% - 4rem);
  margin: 0 2rem 1.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
}

.pulse-btn {
  animation: pulse 2s ease-in-out infinite;
}

/* Trust Icons */
.trust-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #666;
  flex-wrap: wrap;
  padding: 0 2rem 2rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 1.5rem;
  margin: 0 2rem;
}

.trust-icons span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-icons span svg {
  flex-shrink: 0;
  vertical-align: middle;
}

/* Pricing Guarantee Section */
.pricing-guarantee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 4rem auto 2rem;
  padding: 0 1rem;
}

.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(184, 115, 51, 0.15);
}

.guarantee-item svg {
  flex-shrink: 0;
}

.guarantee-item strong {
  font-size: 1.1rem;
  color: var(--text-charcoal);
  font-weight: 700;
}

.guarantee-item span {
  font-size: 0.9rem;
  color: var(--text-soft-gray);
}

/* Pricing Footer */
.pricing-footer {
  text-align: center;
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 2rem 1rem 0;
  border-top: 2px solid rgba(184, 115, 51, 0.1);
}

.disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 1rem;
  font-style: italic;
}

.urgency-text {
  font-size: 1rem;
  color: var(--text-charcoal);
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #ff9800;
}

.urgency-text strong {
  color: #e65100;
}

/* Reviews Section */
.reviews-section {
  padding: 6rem 2rem;
  background-color: var(--bg-main);
}

.reviews-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.rating-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.rating-badge .score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-charcoal);
  line-height: 1;
}

.rating-badge .stars {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.review-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--accent-beige);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 8rem;
  color: var(--primary-cream);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
  z-index: 0;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: #d4a574;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.reviewer-info strong {
  display: block;
  color: var(--primary-brown);
  font-weight: 700;
}

.reviewer-info span {
  font-size: 0.9rem;
  color: var(--text-soft-gray);
}

.reviews-summary {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.reviews-summary p {
  font-size: 1.2rem;
  color: var(--text-charcoal);
  margin-bottom: 2rem;
}

.reviews-triggers {
  background-color: var(--primary-cream);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-footer {
  text-align: center;
  max-width: 900px;
  margin: 3rem auto;
  color: var(--text-soft-gray);
  padding: 0 1rem;
}

.pricing-triggers {
  background-color: var(--primary-cream);
  margin-top: 2rem;
}

/* Response Pricing Grid */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured-card {
    transform: none;
  }

  .pricing-card.featured-card:hover {
    transform: translateY(-10px);
  }
}

/* Size Guide & Color Section */
.size-color-section {
  padding: 6rem 2rem;
  background-color: var(--bg-card);
}

.size-color-container {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.color-selector {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.color-option {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  border: 2px solid var(--bg-section-alt);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.color-option:hover {
  /* border-color: var(--accent-beige); */
  background-color: var(--bg-main);
}

.color-option.active {
  border-color: var(--primary-brown);
  background-color: var(--primary-cream);
}

.swatch {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.color-info strong {
  display: block;
  font-size: 1.2rem;
  color: var(--text-charcoal);
  margin-bottom: 0.3rem;
}

.color-info p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-soft-gray);
}

.specs-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-charcoal);
  margin-top: 2rem;
}

.size-triggers {
  background-color: var(--bg-main);
  max-width: 900px;
  margin: 0 auto;
}

.size-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.size-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 900px) {
  .size-color-section {
    padding: 4rem 1rem;
  }

  .size-color-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .size-image {
    order: -1;
    text-align: center;
    margin-bottom: 2rem;
    display: flex !important;
    justify-content: center;
  }

  .size-image img {
    display: block !important;
    width: 90% !important;
    max-width: 400px !important;
    margin: 0 auto;
    height: auto !important;
    border-radius: 12px;
  }
}

@media (max-width: 600px) {
  .size-color-section {
    padding: 3rem 1rem;
  }

  .size-image {
    margin-bottom: 1.5rem;
  }

  .size-image img {
    width: 100% !important;
    max-width: 350px !important;
  }

  .color-selector {
    gap: 1rem;
  }

  .color-option {
    padding: 0.75rem;
  }

  .swatch {
    width: 50px;
    height: 50px;
  }
}

/* Audience Section */
.audience-section {
  padding: 6rem 2rem;
  background-color: var(--bg-main);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
}

.audience-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--accent-beige);
  text-align: center;
  transition: transform 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: var(--primary-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-brown);
}

.audience-card h3 {
  color: var(--text-charcoal);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.audience-card p {
  color: var(--text-soft-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.audience-triggers {
  background-color: var(--bg-card);
  max-width: 900px;
  margin: 0 auto;
}

/* Why Families Are Choosing Wuffy Section */
.why-choosing-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f4ef 0%, #ffffff 100%);
}

.why-choosing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-choosing-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(101, 67, 33, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.why-choosing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(101, 67, 33, 0.15);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-beige) 0%, #f8f4ef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-choosing-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    var(--primary-brown) 0%,
    var(--secondary-brown) 100%
  );
}

.why-choosing-card:hover .why-icon svg {
  stroke: white;
}

.why-choosing-card h3 {
  font-size: 1.4rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  font-weight: 700;
}

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

@media (max-width: 768px) {
  .why-choosing-section {
    padding: 60px 20px;
  }

  .why-choosing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choosing-card {
    padding: 2rem;
  }

  .why-choosing-card h3 {
    font-size: 1.2rem;
  }
}

/* Comparison Section */
.comparison-section {
  padding: 6rem 2rem;
  background-color: var(--bg-card);
}

.comparison-table-wrapper {
  max-width: 1000px;
  margin: 3rem auto;
  overflow-x: auto;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background: white;
  -webkit-overflow-scrolling: touch;
}

.product-image-header {
  text-align: center;
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.comp-product-img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

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

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
  color: var(--text-charcoal);
}

.comparison-table th {
  background-color: var(--bg-main);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.comparison-table td:first-child {
  white-space: nowrap;
  font-weight: 600;
}

/* Highlight Column for Wuffy */
.comparison-table th.highlight-col,
.comparison-table td.highlight-col {
  background-color: var(--primary-cream);
  border-left: 2px solid var(--accent-beige);
  border-right: 2px solid var(--accent-beige);
  width: 35%;
}

.comparison-table th.highlight-col {
  background-color: var(--primary-brown);
  color: white;
  position: relative;
  border-top: 2px solid var(--primary-brown);
}

.comparison-table td.highlight-col {
  font-weight: 600;
  color: var(--text-charcoal);
}

.badge {
  display: inline-block;
  background: #2ecc71;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
  text-transform: none;
  vertical-align: middle;
}

.check-icon {
  color: #2ecc71;
  font-weight: bold;
  margin-right: 5px;
}

.price-highlight {
  color: #e74c3c !important;
  font-size: 1.1rem;
}

.comparison-triggers {
  background-color: var(--bg-main);
  max-width: 900px;
  margin: 3rem auto 0;
}

@media (max-width: 768px) {
  .comparison-table-wrapper {
    margin: 0 -1rem 2rem -1rem;
    padding: 0 1rem;
    border-radius: 0;
    box-shadow: none;
  }

  .product-image-header {
    padding: 0.75rem;
  }

  .comp-product-img {
    max-height: 80px;
  }

  .comparison-table {
    min-width: 700px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.65rem 0.4rem;
    font-size: 0.8rem;
  }

  .badge {
    display: block;
    margin: 0.25rem 0 0 0;
    font-size: 0.65rem;
  }
}
/* Shipping Section */
.shipping-section {
  padding: 6rem 2rem;
  background-color: var(--bg-main);
}

.shipping-content-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.shipping-info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--accent-beige);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.shipping-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: #d4a574;
}

.shipping-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-cream) 0%,
    var(--accent-beige) 100%
  );
  border-radius: 50%;
  color: var(--primary-brown);
  box-shadow: 0 4px 16px rgba(184, 115, 51, 0.2);
}

.shipping-info-card h3 {
  color: var(--primary-brown);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.shipping-info-card p {
  color: var(--text-soft-gray);
  line-height: 1.7;
  font-size: 1.05rem;
}

.shipping-container {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.shipping-info {
  margin-bottom: 2rem;
}

.shipping-info h3 {
  color: var(--text-charcoal);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.shipping-info p {
  color: var(--text-soft-gray);
  line-height: 1.6;
}

.shipping-triggers {
  background-color: var(--bg-card);
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .shipping-content-wrapper {
    grid-template-columns: 1fr;
  }

  .shipping-container {
    grid-template-columns: 1fr;
  }

  .shipping-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

/* Guarantee Section */
.guarantee-section {
  padding: 6rem 2rem;
  background-color: var(--bg-card);
  text-align: center;
}

.guarantee-container {
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    var(--primary-cream) 0%,
    var(--accent-beige) 100%
  );
  border-radius: 50%;
  margin-bottom: 2rem;
  color: var(--primary-brown);
  box-shadow: var(--shadow-md);
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.guarantee-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--primary-brown);
  opacity: 0.2;
  animation: ripple 2s ease-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.guarantee-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-charcoal);
  margin-bottom: 3rem;
}

.guarantee-triggers {
  background-color: var(--bg-main);
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .guarantee-section {
    padding: 3rem 1.5rem;
  }

  .guarantee-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .guarantee-icon-wrapper svg {
    width: 48px;
    height: 48px;
  }

  .guarantee-container .section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
  }

  .guarantee-container .specs-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .guarantee-content {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .guarantee-content p {
    margin-bottom: 1rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 6rem 2rem;
  background-color: var(--bg-main);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto;
  align-items: start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-beige);
}

.faq-item[open] {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #d4a574;
}

.faq-item summary {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-charcoal);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-brown);
  transition: transform 0.3s ease;
}

.faq-item[open] summary .icon {
  transform: rotate(45deg); /* Turns + into x */
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-soft-gray);
  line-height: 1.6;
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-item[open] p {
  border-top-color: #f7f7f7;
  padding-top: 1rem;
}

.faq-triggers {
  background-color: var(--bg-card);
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Security Section */
.security-section {
  padding: 2rem 2rem;
  background-color: var(--bg-card);
}

/* Security Features Grid */
.security-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.security-feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--accent-beige);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.security-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: #d4a574;
}

.security-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-cream) 0%,
    var(--accent-beige) 100%
  );
  border-radius: 50%;
  color: var(--primary-brown);
  box-shadow: 0 4px 16px rgba(184, 115, 51, 0.2);
}

.security-feature-card h3 {
  font-size: 1.4rem;
  color: var(--primary-brown);
  margin-bottom: 1rem;
  font-weight: 600;
}

.security-feature-card p {
  color: var(--text-soft-gray);
  line-height: 1.7;
  font-size: 1rem;
}

/* Payment Section */
.payment-section {
  margin: 4rem 0;
  padding: 0rem 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-cream) 0%,
    var(--bg-section-alt) 100%
  );
  border-radius: 20px;
  border: 1px solid var(--accent-beige);
}

.payment-title {
  text-align: center;
  font-size: 1.75rem;
  color: var(--primary-brown);
  margin-bottom: 2rem;
  font-weight: 600;
}

.payment-badges-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.payment-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.payment-badge-item:hover {
  transform: scale(1.1);
}

.payment-badge-item svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  transition: filter 0.3s ease;
}

.payment-badge-item:hover svg {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.payment-badge-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-charcoal);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 4rem;
  padding: 2rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-5px);
}

.trust-badge svg {
  filter: drop-shadow(0 2px 8px rgba(184, 115, 51, 0.2));
}

.trust-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-charcoal);
  line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .security-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .security-feature-card {
    padding: 2rem 1.5rem;
  }

  .security-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .payment-badges-wrapper {
    gap: 1.5rem;
  }

  .trust-badges {
    gap: 2rem;
  }

  .trust-badge svg {
    width: 50px;
    height: 50px;
  }
}

.security-container {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.security-content p {
  color: var(--text-soft-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.payment-badge {
  background: #fff;
  border: 1px solid #eee;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-charcoal);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.security-triggers {
  background-color: var(--bg-main);
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .security-container {
    grid-template-columns: 1fr;
  }

  .security-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 6rem 2rem;
  background-color: var(--bg-main);
}

.contact-container {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  font-size: 1.1rem;
  color: var(--text-charcoal);
}

.contact-list li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-triggers {
  background-color: var(--bg-card);
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-image {
    order: -1;
    margin-bottom: 2rem;
  }
}

/* Contact & Support Section */
.contact-support-section {
  padding: 6rem 2rem;
  background-color: white;
}

.contact-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
  align-items: start;
}

.contact-image-wrapper {
  position: sticky;
  top: 100px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(139, 90, 43, 0.15);
  border-color: var(--accent-beige);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary-brown);
}

.contact-method-card h3 {
  font-size: 1.5rem;
  color: var(--text-charcoal);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.contact-method-card p {
  color: var(--text-soft-gray);
  line-height: 1.6;
  font-size: 1rem;
}

.additional-resources {
  margin: 3rem 0 2rem;
  padding: 2rem;
  background: var(--accent-beige);
  border-radius: 20px;
  border-left: 4px solid var(--primary-brown);
}

.contact-triggers {
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .contact-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-image-wrapper {
    position: relative;
    top: 0;
  }
}

@media (max-width: 600px) {
  .contact-support-section {
    padding: 4rem 1.5rem;
  }

  .contact-method-card {
    padding: 1.5rem;
  }

  .contact-method-card h3 {
    font-size: 1.25rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .additional-resources {
    padding: 1.5rem;
  }
}

.last-updated-section {
  padding: 4rem 2rem;
  background-color: var(--bg-card);
  text-align: center;
}

.last-updated-content {
  max-width: 800px;
  margin: 0 auto;
}

.calendar-icon .image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-main);
  border-radius: 8px;
  border: 2px dashed #ddd;
}

/* ==================== COMPREHENSIVE MOBILE RESPONSIVE FIXES ==================== */

/* Reviews Section - Mobile */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review-card {
    margin-bottom: 1rem;
  }
}

/* Pricing Section - Mobile */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card {
    margin-bottom: 1.5rem;
  }
}

/* Audience Section - Mobile */
@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Features Section - Mobile */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section - Mobile  */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Conversion Triggers - Mobile */
@media (max-width: 768px) {
  .conversion-triggers {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .trigger-item h4 {
    font-size: 1.1rem;
  }

  /* Pricing Section Mobile */
  .offer-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
  }

  .offer-icon {
    width: 56px;
    height: 56px;
  }

  .offer-text strong {
    font-size: 1.1rem;
  }

  .offer-text span {
    font-size: 0.9rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .pricing-card.featured-card {
    transform: scale(1);
  }

  .pricing-card.featured-card:hover {
    transform: scale(1) translateY(-12px);
  }

  .corner-ribbon {
    top: 20px;
    right: -50px;
    width: 180px;
    font-size: 0.8rem;
  }

  .card-image img {
    max-width: 160px;
    height: 160px;
  }

  .qty-badge {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .card-header h3 {
    font-size: 1.4rem;
  }

  .price {
    font-size: 2.4rem;
  }

  .old-price {
    font-size: 1rem;
  }

  .features-list {
    padding: 0 1.5rem 1.5rem;
  }

  .features-list li {
    font-size: 0.9rem;
  }

  .btn-block {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    font-size: 1rem;
  }

  .trust-icons {
    padding: 0 1.5rem 1.5rem;
    margin: 0 1.5rem;
    font-size: 0.8rem;
  }

  .pricing-guarantee {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .guarantee-item {
    padding: 1.5rem;
  }

  .pricing-footer {
    padding: 1.5rem 1rem 0;
  }

  .urgency-text {
    font-size: 0.95rem;
    padding: 1rem;
  }
}

/* ==================== MOBILE SPACING & PADDING FIXES ==================== */

/* Reduce section padding on mobile */
@media (max-width: 900px) {
  .hero-section,
  .overview-section,
  .specs-section,
  .features-section,
  .material-section,
  .how-it-works-section,
  .usage-section,
  .pricing-section,
  .reviews-section,
  .size-color-section,
  .audience-section,
  .comparison-section,
  .shipping-section,
  .guarantee-section,
  .faq-section,
  .security-section,
  .contact-section,
  .last-updated-section {
    padding: 3rem 1.5rem !important;
  }
}

/* Fix container and image spacing on mobile */
@media (max-width: 900px) {
  .hero-container,
  .overview-container,
  .material-container,
  .how-it-works-container,
  .usage-container,
  .size-color-container,
  .shipping-container,
  .security-container,
  .contact-container {
    gap: 2rem !important;
  }

  .hero-image img,
  .overview-video-wrapper video,
  .material-image img,
  .how-it-works-image img,
  .usage-image img,
  .usage-image video,
  .size-image img {
    border-radius: 12px;
  }

  .image-placeholder {
    height: 200px !important;
    min-height: 200px !important;
  }
}

/* Adjust text content spacing on mobile */
@media (max-width: 900px) {
  .hero-text p,
  .overview-text-content p,
  .material-text p,
  .how-it-works-text p,
  .usage-text p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .hero-points {
    margin-bottom: 1.5rem;
  }

  .hero-points li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
  }
}

/* Fix button spacing on mobile */
@media (max-width: 900px) {
  .btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    margin-top: 1rem;
  }
}

/* Adjust card spacing on mobile */
@media (max-width: 900px) {
  .feature-card,
  .review-card,
  .pricing-card,
  .audience-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
}

/* Fix conversion triggers spacing */
@media (max-width: 900px) {
  .conversion-triggers {
    margin-top: 2rem;
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

/* Fix FAQ spacing */
@media (max-width: 900px) {
  .faq-item {
    margin-bottom: 0.8rem;
  }

  .faq-item summary {
    padding: 1rem;
    font-size: 1rem;
  }

  .faq-item p {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

/* Fix list and table spacing */
@media (max-width: 900px) {
  .usage-steps li {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .specs-table th,
  .specs-table td {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
}

/* Container max-width adjustment */
@media (max-width: 900px) {
  .container {
    padding: 0 1rem;
  }
}

/* Reduce header sizes on mobile */
@media (max-width: 900px) {
  .hero-text h1 {
    font-size: 2.2rem !important;
    margin-bottom: 0.8rem;
  }

  .hero-text h2 {
    font-size: 1.3rem !important;
    margin-bottom: 1.2rem;
  }

  .material-text h3,
  .how-it-works-text h3,
  .usage-text h3,
  .shipping-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
}

/* Payment badges spacing */
@media (max-width: 900px) {
  .payment-methods {
    margin: 1.5rem 0;
    gap: 0.8rem;
  }

  .payment-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* Contact list spacing */
@media (max-width: 900px) {
  .contact-list {
    margin: 1rem 0;
    font-size: 1rem;
  }

  .contact-list li {
    margin-bottom: 0.8rem;
  }
}

/* Guarantee section spacing */
@media (max-width: 900px) {
  .guarantee-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .guarantee-content p {
    font-size: 1rem;
  }
}

/* Last updated section */
@media (max-width: 900px) {
  .last-updated-section {
    padding: 2rem 1.5rem !important;
  }

  .last-updated-content h3 {
    font-size: 1.3rem;
  }

  .last-updated-content p {
    font-size: 0.95rem;
  }
}

/* Pricing grid specific fixes */
@media (max-width: 900px) {
  .pricing-section {
    padding: 3rem 1rem !important;
  }

  .card-image img {
    height: 200px !important;
  }

  .pricing-footer {
    margin-top: 2rem;
    padding: 0 1rem;
  }
}

/* ==================== POLICY PAGE STYLES ==================== */

.policy-header {
  padding: 5rem 2rem 3rem;
  background: linear-gradient(
    135deg,
    var(--bg-main) 0%,
    var(--primary-cream) 100%
  );
  text-align: center;
}

.policy-intro {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-soft-gray);
  line-height: 1.8;
}

.policy-content-section {
  padding: 4rem 2rem;
  background-color: var(--bg-main);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-block {
  background: white;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.policy-block h2 {
  color: var(--primary-brown);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary-cream);
  padding-bottom: 0.8rem;
}

.policy-block h3 {
  color: var(--text-charcoal);
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-block p {
  color: var(--text-charcoal);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.policy-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-charcoal);
  line-height: 1.7;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23B87333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.policy-steps {
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
  margin: 1.5rem 0;
}

.policy-steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-charcoal);
  line-height: 1.7;
  counter-increment: step-counter;
}

.policy-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background-color: var(--primary-brown);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.sub-section {
  margin-top: 2rem;
}

.highlight-block {
  background: linear-gradient(135deg, var(--primary-cream) 0%, white 100%);
  border-left: 4px solid var(--primary-brown);
}

.contact-block {
  background-color: var(--bg-card);
}

.contact-details {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.contact-details p {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.contact-details strong {
  color: var(--primary-brown);
  font-weight: 600;
}

.contact-details a {
  color: var(--primary-brown);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-details a:hover {
  border-bottom-color: var(--primary-brown);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .policy-header {
    padding: 3rem 1.5rem 2rem;
  }

  .policy-intro {
    font-size: 1rem;
  }

  .policy-content-section {
    padding: 2rem 1rem;
  }

  .policy-block {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .policy-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .policy-block h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }

  .policy-list li {
    padding-left: 1.8rem;
    font-size: 0.95rem;
  }

  .policy-steps li {
    padding-left: 2.5rem;
    font-size: 0.95rem;
  }

  .policy-steps li::before {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .contact-details {
    padding: 1rem;
  }

  .contact-details p {
    font-size: 0.95rem;
  }
}

/* ==================== NAVBAR DROPDOWN MENU ==================== */

.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: " ";
  font-size: 0.8rem;
  margin-left: 0.3rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  z-index: 1000;
  list-style: none;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--text-charcoal);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--primary-cream);
  color: var(--primary-brown);
  padding-left: 2rem;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile Dropdown */
@media (max-width: 900px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--bg-card);
    margin: 0.5rem 0;
    padding: 0.5rem 0 0.5rem 1rem;
    border-radius: 0;
  }

  .dropdown-menu a {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .dropdown-menu a:hover {
    padding-left: 1.5rem;
  }

  .dropdown-toggle::after {
    float: right;
  }

  .dropdown .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* ==================== PREVENT HORIZONTAL SCROLL ON MOBILE ==================== */

html,
body {
  max-width: 100%;
}

body {
  position: relative;
}

/* Ensure all containers don't overflow */
@media (max-width: 900px) {
  * {
    max-width: 100%;
  }

  .container,
  .hero-container,
  .overview-container,
  .material-container,
  .how-it-works-container,
  .usage-container,
  .pricing-grid,
  .reviews-grid,
  .features-grid,
  .audience-grid,
  .size-color-container,
  .shipping-container,
  .security-container,
  .contact-container,
  .faq-grid {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* Prevent images from overflowing */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure sections don't overflow */
  section {
    overflow-x: hidden;
  }
}

/* ==================== TABLE MOBILE OPTIMIZATION ==================== */

.table-swipe-hint {
  display: none;
}

@media (max-width: 768px) {
  .table-swipe-hint {
    display: block;
    text-align: center;
    color: var(--primary-brown);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: var(--primary-cream);
    border-radius: 8px;
    border: 1px dashed var(--primary-brown);
  }

  .table-swipe-hint::before {
    content: "👈 ";
    margin-right: 0.25rem;
  }

  .table-swipe-hint::after {
    content: " 👉";
    margin-left: 0.25rem;
  }
}

/* ==================== FOOTER MOBILE RESPONSIVE ==================== */

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    padding: 0;
  }

  .footer-bottom {
    margin-top: 2rem;
    padding: 1.5rem 1rem;
  }
}

/* Ensure no stray scroll on very small devices */
@media (max-width: 320px) {
  .hero-text h1 {
    font-size: 1.8rem !important;
  }

  .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* ==================== LOGO MOBILE TWEAKS ==================== */

@media (max-width: 480px) {
  .logo img {
    height: 32px;
  }

  .logo span {
    font-size: 1.2rem;
  }

  .navbar {
    padding: 0.8rem 1rem;
  }
}
