/* POD Landing Page Styles - BigArena Brand */
/* Primary Yellow: #FDC107 | Primary Dark: #202728 */

:root {
  --pod-primary: #FDC107;
  --pod-dark: #202728;
  --pod-dark-alt: #1a1f20;
  --pod-muted: #6F6F6F;
  --pod-gray-100: #f8f9fa;
  --pod-gray-200: #e9ecef;
  --pod-gray-300: #dee2e6;
  --pod-gray-400: #ced4da;
  --pod-white: #ffffff;
  --pod-green: #22c55e;
  --pod-radius: 0.5rem;
  --pod-radius-lg: 1rem;
  --pod-radius-xl: 1.5rem;
  --pod-radius-full: 9999px;
}

/* Base Typography */
.pod-landing {
  font-family: 'Montserrat', sans-serif;
  color: var(--pod-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.pod-landing * {
  box-sizing: border-box;
}

/* Global SVG constraint - prevents oversized icons */
.pod-landing svg {
  max-width: 100%;
  height: auto;
}

/* Container */
.pod-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .pod-container { padding: 0 1.5rem; }
}

/* Typography */
.pod-heading-xl {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.pod-heading-lg {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3;
}

.pod-heading-md {
  font-size: 1.25rem;
  font-weight: 600;
}

.pod-text-muted {
  color: var(--pod-muted);
}

@media (min-width: 768px) {
  .pod-heading-xl { font-size: 3rem; }
  .pod-heading-lg { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .pod-heading-xl { font-size: 3.75rem; }
}

/* Buttons */
.pod-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--pod-radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
}

.pod-btn-primary {
  background-color: var(--pod-primary);
  color: var(--pod-dark);
}

.pod-btn-primary:hover {
  background-color: #e6ae06;
  transform: translateY(-1px);
}

.pod-btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--pod-white);
}

.pod-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pod-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Badges */
.pod-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--pod-radius-full);
  border: 1px solid;
}

.pod-badge svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.pod-badge-primary {
  background: rgba(253, 193, 7, 0.15);
  border-color: rgba(253, 193, 7, 0.4);
  color: var(--pod-primary);
}

.pod-badge-outline {
  background: transparent;
  border-color: var(--pod-gray-300);
  color: var(--pod-muted);
}

.pod-badge-secondary {
  background: var(--pod-gray-100);
  border-color: var(--pod-gray-200);
  color: var(--pod-dark);
}

.pod-badge-green {
  background: var(--pod-green);
  border-color: var(--pod-green);
  color: var(--pod-white);
}

/* Cards */
.pod-card {
  background: var(--pod-white);
  border-radius: var(--pod-radius-lg);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pod-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.pod-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pod-card-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ==================== HERO SECTION ==================== */
.pod-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px; /* Account for header height */
}

.pod-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pod-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(32, 39, 40, 0.9), rgba(32, 39, 40, 0.7), rgba(32, 39, 40, 0.5));
}

.pod-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32, 39, 40, 0.9), transparent, rgba(32, 39, 40, 0.2));
}

.pod-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 2rem 0;
}

.pod-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .pod-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.pod-hero-text {
  color: var(--pod-white);
}

.pod-hero h1 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--pod-white);
}

@media (min-width: 640px) {
  .pod-hero h1 { font-size: 2.25rem; }
}

@media (min-width: 768px) {
  .pod-hero h1 { font-size: 2.75rem; }
}

@media (min-width: 1024px) {
  .pod-hero h1 { font-size: 3.25rem; line-height: 1.1; }
}

.pod-hero h1 span {
  color: var(--pod-primary);
}

/* Smaller white subtitle for 'with your own white label Design' */
.pod-hero h1 .hero-subtitle {
  font-size: 0.5em;
  font-weight: 500;
  color: #ffffff !important;
  background: none !important;
  display: block;
  margin-top: 0.3rem;
  padding: 0;
}

/* Highlight yellow background for Dropshipping and EUROPE */
.highlight-yellow {
  color: #FDC107 !important;
  background: rgba(253, 193, 7, 0.2);
  padding: 0 8px;
}

.pod-hero h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pod-white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-top: 1.75rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .pod-hero h2 { font-size: 1.35rem; }
}

@media (min-width: 1024px) {
  .pod-hero h2 { font-size: 1.5rem; }
}

.pod-hero h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3px;
  background: var(--pod-primary);
}

@media (min-width: 768px) {
  .pod-hero h2 { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
  .pod-hero h2 { font-size: 1.75rem; }
}

.pod-hero h2 span {
  color: var(--pod-primary);
  font-weight: 700;
}

.pod-hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 40rem;
  line-height: 1.7;
}

.pod-hero-description .text-primary {
  color: var(--pod-primary);
  font-weight: 600;
}

.pod-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .pod-hero-buttons {
    flex-direction: row;
  }
}

/* Stacked buttons layout */
.pod-hero-buttons-stacked {
  flex-direction: column;
  max-width: 320px;
}

@media (min-width: 640px) {
  .pod-hero-buttons-stacked {
    flex-direction: column;
    max-width: 350px;
  }
}

.pod-hero-buttons-stacked .pod-btn {
  width: 100%;
  justify-content: center;
}

.pod-hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .pod-hero-features {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.pod-hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pod-pulse-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--pod-green);
  border-radius: 50%;
}

.pod-pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pod-green);
  border-radius: 50%;
  animation: pod-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pod-ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Hero Bottle Carousel */
.pod-hero-bottle-wrapper {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .pod-hero-bottle-wrapper {
    justify-content: flex-end;
  }
}

.pod-hero-bottle {
  position: relative;
  width: 16rem;
}

@media (min-width: 768px) {
  .pod-hero-bottle { width: 20rem; }
}

@media (min-width: 1024px) {
  .pod-hero-bottle { width: 24rem; }
}

.pod-hero-bottle img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
  animation: pod-float 4s ease-in-out infinite;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.pod-hero-bottle img.active {
  opacity: 1;
  position: relative;
}

@keyframes pod-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero Stickers */
.pod-sticker {
  position: absolute;
  padding: 0.5rem 0.75rem;
  border-radius: var(--pod-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .pod-sticker { padding: 0.75rem 1rem; }
}

.pod-sticker-yellow {
  background: var(--pod-primary);
  color: var(--pod-dark);
  animation: pod-wiggle 3s ease-in-out infinite;
}

.pod-sticker-white {
  background: var(--pod-white);
  color: var(--pod-dark);
  animation: pod-wiggle 3.5s ease-in-out infinite 0.5s;
}

.pod-sticker-dark {
  background: var(--pod-dark);
  color: var(--pod-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pod-wiggle 4s ease-in-out infinite 1s;
}

.pod-sticker-green {
  background: var(--pod-green);
  color: var(--pod-white);
  animation: pod-wiggle 3.2s ease-in-out infinite 1.5s;
}

.pod-sticker-top-left {
  left: -0.5rem;
  top: -0.5rem;
}

.pod-sticker-top-right {
  right: -2.5rem;
  top: 5rem;
}

.pod-sticker-bottom-left {
  left: -3rem;
  bottom: 8rem;
}

.pod-sticker-bottom-right {
  right: -0.5rem;
  bottom: -0.5rem;
}

@media (min-width: 768px) {
  .pod-sticker-top-left { left: -3rem; top: 2rem; }
  .pod-sticker-top-right { right: -3.5rem; top: 7rem; }
  .pod-sticker-bottom-left { left: -4rem; bottom: 8rem; }
  .pod-sticker-bottom-right { right: -1rem; bottom: 3rem; }
}

.pod-sticker-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .pod-sticker-icon { width: 18px; height: 18px; }
}

.pod-sticker-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.pod-sticker-value {
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .pod-sticker-label { font-size: 0.75rem; }
  .pod-sticker-value { font-size: 0.875rem; }
}

@keyframes pod-wiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-2deg) scale(1.02); }
  75% { transform: rotate(2deg) scale(1.02); }
}

/* ==================== WAREHOUSES SECTION ==================== */
.pod-warehouses {
  padding: 2rem 0;
  background: var(--pod-dark);
}

.pod-certs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .pod-certs { gap: 2.5rem; }
}

@media (min-width: 768px) {
  .pod-certs { gap: 4rem; }
}

.pod-certs img {
  height: 4rem;
  width: auto;
}

@media (min-width: 640px) {
  .pod-certs img { height: 5rem; }
}

@media (min-width: 768px) {
  .pod-certs img { height: 6rem; }
}

.pod-certs img.cert-light-bg {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--pod-radius);
  padding: 0.25rem 0.5rem;
}

.pod-warehouses-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pod-warehouses-list { gap: 4rem; }
}

.pod-warehouse-count {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pod-warehouse-icon {
  width: 3rem;
  height: 3rem;
  background: var(--pod-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pod-warehouse-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--pod-dark);
}

.pod-warehouse-count span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pod-white);
}

.pod-warehouses-divider {
  display: none;
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .pod-warehouses-divider { display: block; }
}

.pod-warehouse-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pod-warehouse-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--pod-primary);
  border-radius: 50%;
}

.pod-warehouse-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--pod-white);
}

.pod-warehouse-cities {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==================== HOW IT WORKS SECTION ==================== */
.pod-how-it-works {
  padding: 3rem 0 5rem;
  background: var(--pod-white);
}

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

.pod-section-header .pod-badge {
  margin-bottom: 1rem;
}

.pod-section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pod-dark);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .pod-section-header h2 { font-size: 1.875rem; }
}

@media (min-width: 768px) {
  .pod-section-header h2 { font-size: 2.25rem; }
}

.pod-section-header p {
  color: var(--pod-muted);
  max-width: 42rem;
  margin: 0 auto;
}

.pod-steps-mobile {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .pod-steps-mobile { display: none; }
}

.pod-step-mobile {
  flex: 1;
  text-align: center;
}

.pod-step-mobile-number {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--pod-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.25rem;
  font-weight: 700;
  color: var(--pod-dark);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pod-step-mobile-icon {
  width: 1rem;
  height: 1rem;
  color: var(--pod-primary);
  margin: 0 auto 0.25rem;
}

.pod-step-mobile-title {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--pod-dark);
}

.pod-steps-desktop {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

@media (min-width: 640px) {
  .pod-steps-desktop { display: grid; }
}

.pod-steps-desktop::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12%;
  right: 12%;
  height: 4px;
  background: linear-gradient(to right, var(--pod-primary), var(--pod-primary), rgba(253, 193, 7, 0.5));
  display: none;
}

@media (min-width: 1024px) {
  .pod-steps-desktop::before { display: block; }
}

.pod-step {
  text-align: center;
  position: relative;
}

.pod-step-number {
  width: 5rem;
  height: 5rem;
  background: var(--pod-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--pod-dark);
  box-shadow: 0 10px 25px rgba(253, 193, 7, 0.3);
  position: relative;
  z-index: 10;
}

.pod-step-icon {
  width: 2rem;
  height: 2rem;
  color: var(--pod-primary);
  margin: 0 auto 0.5rem;
}

.pod-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pod-dark);
  margin-bottom: 0.5rem;
}

.pod-step p {
  font-size: 0.875rem;
  color: var(--pod-muted);
}

.pod-step-arrow {
  display: none;
  position: absolute;
  top: 2.5rem;
  right: -1rem;
  z-index: 20;
}

@media (min-width: 1024px) {
  .pod-step-arrow { display: block; }
}

.pod-step-arrow svg {
  width: 2rem;
  height: 2rem;
  color: var(--pod-primary);
}

.pod-how-it-works-images {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .pod-how-it-works-images { grid-template-columns: repeat(3, 1fr); }
}

.pod-how-it-works-images .pod-card {
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pod-how-it-works-images img {
  width: 100%;
  height: auto;
  display: block;
}

/* Process Cards - New Design with Text */
.pod-process-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .pod-process-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.pod-process-card {
  background: var(--pod-white);
  border: 2px solid var(--pod-primary);
  border-radius: var(--pod-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pod-process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pod-process-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--pod-gray-100);
}

.pod-process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.pod-process-card:hover .pod-process-image img {
  transform: scale(1.05);
}

.pod-process-content {
  padding: 1.5rem;
  background: var(--pod-dark);
  color: var(--pod-white);
  position: relative;
  margin-top: -30px;
  z-index: 1;
  border-radius: 0 0 var(--pod-radius-lg) var(--pod-radius-lg);
  flex: 1;
  min-height: 180px;
}

.pod-process-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pod-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pod-process-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pod-process-content ul li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.pod-process-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--pod-primary);
  border-radius: 50%;
}

/* Mobile Process Cards */
@media (max-width: 767px) {
  .pod-process-cards {
    margin-top: 2.5rem;
    gap: 1.25rem;
  }
  
  .pod-process-image {
    aspect-ratio: 16 / 10;
  }
  
  .pod-process-content {
    padding: 1.25rem;
    margin-top: -8px;
  }
  
  .pod-process-content h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .pod-process-content ul li {
    font-size: 0.8rem;
    padding-left: 1rem;
  }
  
  .pod-process-content ul li::before {
    width: 5px;
    height: 5px;
    top: 0.45rem;
  }
}

/* ==================== VIDEO SECTION ==================== */
.pod-video-section {
  padding: 4rem 0;
  background: var(--pod-white);
}

.pod-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .pod-stats-grid { text-align: left; }
}

.pod-stat-label {
  font-size: 0.875rem;
  color: var(--pod-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pod-stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--pod-primary);
}

@media (min-width: 768px) {
  .pod-stat-value { font-size: 3.75rem; }
}

.pod-stat-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pod-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pod-video-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  color: var(--pod-dark);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .pod-video-title { font-size: 2.25rem; }
}

.pod-video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--pod-dark), #2a3435);
  border-radius: var(--pod-radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.pod-video-placeholder-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pod-play-btn {
  width: 5rem;
  height: 5rem;
  background: var(--pod-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 10px 25px rgba(253, 193, 7, 0.3);
}

.pod-play-btn:hover {
  transform: scale(1.05);
}

.pod-play-btn svg {
  width: 2rem;
  height: 2rem;
  color: var(--pod-dark);
  margin-left: 4px;
}

.pod-video-placeholder-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.pod-video-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.pod-video-description {
  text-align: center;
  font-size: 1.125rem;
  color: var(--pod-muted);
  max-width: 48rem;
  margin: 2rem auto 0;
}

/* ==================== MULTILINGUAL SECTION ==================== */
.pod-multilingual {
  padding: 4rem 0 5rem;
  background: var(--pod-dark);
}

.pod-multilingual .pod-section-header {
  color: var(--pod-white);
}

.pod-multilingual .pod-section-header h2 {
  color: var(--pod-white);
}

.pod-multilingual .pod-section-header h2 span {
  color: var(--pod-primary);
}

.pod-multilingual .pod-section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.pod-multilingual-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .pod-multilingual-grid { grid-template-columns: 1fr 1fr; }
}

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

.pod-multilingual-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--pod-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pod-multilingual-feature.highlight {
  background: rgba(253, 193, 7, 0.1);
  border-color: rgba(253, 193, 7, 0.3);
}

.pod-multilingual-feature-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(253, 193, 7, 0.2);
  border-radius: var(--pod-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pod-multilingual-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--pod-primary);
}

.pod-multilingual-feature h3 {
  font-weight: 600;
  color: var(--pod-white);
  margin-bottom: 0.25rem;
}

.pod-multilingual-feature p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.pod-languages-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pod-radius-lg);
  padding: 1.5rem 2rem;
}

.pod-languages-box h3 {
  font-weight: 600;
  text-align: center;
  color: var(--pod-white);
  margin-bottom: 1rem;
}

.pod-languages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .pod-languages-grid { grid-template-columns: repeat(5, 1fr); }
}

.pod-language-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--pod-radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pod-white);
}

.pod-languages-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
}

/* ==================== CATALOG SECTION ==================== */
.pod-catalog {
  padding: 5rem 0;
  background: var(--pod-gray-100);
}

.pod-catalog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .pod-catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pod-catalog-grid { grid-template-columns: repeat(3, 1fr); }
}

.pod-product-card {
  background: var(--pod-white);
  border: 2px solid var(--pod-primary);
  border-radius: var(--pod-radius-lg);
  padding: 1rem;
  display: flex;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pod-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pod-product-image {
  width: 8rem;
  height: 11rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pod-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pod-product-image-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(253, 193, 7, 0.1);
  border-radius: var(--pod-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pod-product-image-placeholder svg {
  width: 3rem;
  height: 3rem;
  color: var(--pod-primary);
}

.pod-product-content {
  flex: 1;
  min-width: 0;
}

.pod-product-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pod-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.pod-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pod-product-description {
  font-size: 0.875rem;
  color: var(--pod-muted);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pod-product-view {
  font-size: 0.875rem;
  color: var(--pod-primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 0.75rem;
}

.pod-product-view:hover {
  text-decoration: underline;
}

.pod-product-view svg {
  width: 14px;
  height: 14px;
}

.pod-product-certs {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--pod-gray-200);
}

.pod-product-certs img {
  height: 1.25rem;
  width: auto;
  opacity: 0.7;
}

.pod-product-certs img.cert-light-bg {
  background: var(--pod-white);
  border-radius: 2px;
  padding: 0 2px;
}

.pod-catalog-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--pod-muted);
  max-width: 42rem;
  margin: 2rem auto 0;
}

/* ==================== FULFILLMENT STRENGTH SECTION ==================== */
.pod-fulfillment {
  padding: 5rem 0;
  background: var(--pod-dark);
  color: var(--pod-white);
}

.pod-fulfillment .pod-section-header h2 {
  color: var(--pod-white);
}

.pod-fulfillment .pod-section-header p {
  color: rgba(255, 255, 255, 0.6);
}

/* Fulfillment Grid and Cards */
.pod-fulfillment-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .pod-fulfillment-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pod-fulfillment-grid { grid-template-columns: repeat(4, 1fr); }
}

.pod-fulfillment-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pod-radius-lg);
  padding: 1.5rem;
  transition: background 0.2s;
}

.pod-fulfillment-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pod-fulfillment-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--pod-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pod-fulfillment-icon.yellow {
  background: rgba(253, 193, 7, 0.2);
}

.pod-fulfillment-icon.green {
  background: rgba(34, 197, 94, 0.2);
}

.pod-fulfillment-icon.blue {
  background: rgba(59, 130, 246, 0.2);
}

.pod-fulfillment-icon.purple {
  background: rgba(168, 85, 247, 0.2);
}

.pod-fulfillment-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.pod-fulfillment-icon.yellow svg { color: var(--pod-primary); }
.pod-fulfillment-icon.green svg { color: #22c55e; }
.pod-fulfillment-icon.blue svg { color: #3b82f6; }
.pod-fulfillment-icon.purple svg { color: #a855f7; }

.pod-fulfillment-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--pod-white);
  margin-bottom: 0.5rem;
}

.pod-fulfillment-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Fulfillment Stats */
.pod-fulfillment-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  background: linear-gradient(to right, rgba(253, 193, 7, 0.15), rgba(253, 193, 7, 0.05));
  border-radius: var(--pod-radius-xl);
  padding: 2rem;
}

@media (min-width: 768px) {
  .pod-fulfillment-stats { grid-template-columns: repeat(4, 1fr); }
}

.pod-fulfillment-stat {
  text-align: center;
}

.pod-fulfillment-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pod-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .pod-fulfillment-stat-value { font-size: 3rem; }
}

.pod-fulfillment-stat p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ==================== EUROPEAN DELIVERY COVERAGE ==================== */
.pod-delivery-map-v2 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 3rem;
}

.pod-map-title {
  text-align: center;
  color: var(--pod-white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pod-map-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pod-map-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pod-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.pod-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pod-legend-dot.express { background: #22c55e; }

.pod-cod-badge-small {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.pod-cod-badge-small svg {
  width: 10px;
  height: 10px;
}

.pod-countries-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .pod-countries-columns {
    grid-template-columns: 1fr 1fr;
  }
  .pod-column-wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .pod-countries-columns {
    grid-template-columns: 1fr;
  }
  .pod-column-wide {
    grid-column: span 1;
  }
}

.pod-country-column {
  background: transparent;
  padding: 0;
}

.pod-column-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0;
  border-bottom: none;
}

.pod-column-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pod-column-dot.yellow { background: #22c55e; }
.pod-column-dot.green { background: #22c55e; }

.pod-column-title {
  color: var(--pod-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.pod-column-count {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.2rem 0.6rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pod-country-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: rgba(120, 113, 80, 0.35);
  border-radius: 0.5rem;
  margin-bottom: 0.35rem;
}

.pod-country-row:last-child {
  margin-bottom: 0;
}

.pod-country-flag-img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.pod-country-flag-img-small {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.pod-country-flag {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pod-country-name {
  color: var(--pod-white);
  font-size: 0.85rem;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pod-country-tags {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
  margin-left: auto;
}

.pod-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

.pod-tag.cod {
  background: rgba(34, 197, 94, 0.6);
  color: #ffffff;
}

.pod-tag.cod svg {
  width: 10px;
  height: 10px;
}

.pod-tag.time-24h {
  background: rgba(253, 193, 7, 0.85);
  color: #1a1a1a;
}

.pod-tag.time-48h {
  background: rgba(253, 193, 7, 0.85);
  color: #1a1a1a;
}

/* 3-4 Days Standard - 2-column grid */
.pod-country-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 1rem;
}

.pod-country-row-compact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  background: rgba(120, 113, 80, 0.35);
  border-radius: 0.4rem;
}

.pod-country-row-compact .pod-country-flag {
  font-size: 1rem;
}

.pod-country-row-compact .pod-country-name {
  font-size: 0.8rem;
  flex: 1;
}

.pod-tag.cod-small {
  background: rgba(34, 197, 94, 0.6);
  color: #ffffff;
  font-size: 0.6rem;
  padding: 0.2rem 0.4rem;
  border-radius: 0.2rem;
  font-weight: 600;
  margin-left: auto;
}

.pod-strengths-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .pod-strengths-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pod-strengths-grid { grid-template-columns: repeat(3, 1fr); }
}

.pod-strength-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pod-radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: background 0.2s;
}

.pod-strength-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pod-strength-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(253, 193, 7, 0.2);
  border-radius: var(--pod-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.pod-strength-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--pod-primary);
}

.pod-strength-stat {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--pod-primary);
  margin-bottom: 0.25rem;
}

.pod-strength-label {
  font-weight: 600;
  color: var(--pod-white);
  margin-bottom: 0.5rem;
}

.pod-strength-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Delivery Zones */
.pod-delivery-zones {
  background: linear-gradient(to right, rgba(253, 193, 7, 0.2), rgba(253, 193, 7, 0.05));
  border-radius: var(--pod-radius-xl);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .pod-delivery-zones { padding: 2.5rem; }
}

.pod-delivery-zones-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pod-delivery-zones-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pod-delivery-zones-header p {
  color: rgba(255, 255, 255, 0.6);
}

.pod-delivery-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pod-delivery-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.pod-delivery-legend-dot {
  width: 1rem;
  height: 1rem;
  background: var(--pod-green);
  border-radius: 50%;
}

.pod-zones-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pod-zones-grid { grid-template-columns: repeat(3, 1fr); }
}

.pod-zone {
  /* Zone column */
}

.pod-zone-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pod-zone-header-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--pod-green);
  border-radius: 50%;
}

.pod-zone-header h4 {
  font-weight: 600;
  font-size: 1.125rem;
}

.pod-zone-countries {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pod-zone-countries.compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.pod-country-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--pod-radius);
  transition: background 0.2s;
}

@media (min-width: 640px) {
  .pod-country-item { padding: 0.75rem; }
}

.pod-country-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pod-country-flag {
  width: 1.5rem;
  height: 1rem;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .pod-country-flag { width: 2rem; height: 1.5rem; }
}

.pod-country-name {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 640px) {
  .pod-country-name { font-size: 1rem; }
}

.pod-country-badges {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}

.pod-country-badge {
  font-size: 0.625rem;
  padding: 0.125rem 0.375rem;
}

@media (min-width: 640px) {
  .pod-country-badge { font-size: 0.75rem; padding: 0.25rem 0.5rem; }
}

/* ==================== COURIER PARTNERS SECTION ==================== */
.pod-couriers {
  padding: 4rem 0;
  background: var(--pod-white);
}

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

@media (min-width: 640px) {
  .pod-couriers-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .pod-couriers-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .pod-couriers-grid { grid-template-columns: repeat(7, 1fr); }
}

.pod-courier-item {
  min-height: 100px;
  border-radius: var(--pod-radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
}

.pod-courier-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pod-courier-item.white-bg {
  background: var(--pod-white);
  border: 1px solid var(--pod-gray-200);
}

.pod-courier-item.dark-bg {
  background: #1a1a1a;
}

.pod-courier-item img {
  max-height: 4rem;
  max-width: 100%;
  object-fit: contain;
}

.pod-couriers-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--pod-muted);
  margin-top: 2rem;
}

.pod-couriers-note svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pod-primary);
  flex-shrink: 0;
}

.pod-couriers-note p {
  margin: 0;
}

/* ==================== COD SECTION (V2 - Replit Design) ==================== */
.pod-cod-v2 {
  padding: 5rem 0;
  background: #1a1f20;
}

.pod-cod-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pod-cod-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.pod-cod-badge svg {
  width: 14px;
  height: 14px;
}

.pod-cod-header h2 {
  color: var(--pod-white);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pod-cod-line {
  width: 3rem;
  height: 3px;
  background: var(--pod-primary);
  margin: 0 auto 1rem;
}

.pod-cod-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.pod-cod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .pod-cod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .pod-cod-grid { grid-template-columns: 1fr; }
}

.pod-cod-card {
  background: rgba(255,255,255,0.03);
  border: 2px solid #fdc107;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.pod-cod-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(253, 193, 7, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pod-cod-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fdc107;
  fill: none;
  stroke-width: 2;
}

.pod-cod-card:hover .pod-cod-card-icon {
  background: rgba(253, 193, 7, 0.25);
}

.pod-cod-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--pod-white);
  margin-bottom: 0.75rem;
}

.pod-cod-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* ==================== INTEGRATIONS SECTION (V2 - Replit Design) ==================== */
.pod-integrations-v2 {
  padding: 5rem 0;
  background: var(--pod-gray-100);
}

.pod-integrations-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pod-integrations-label {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--pod-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--pod-primary);
}

.pod-integrations-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pod-dark);
  margin-bottom: 0.75rem;
}

.pod-integrations-header p {
  color: var(--pod-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.pod-integrations-grid-v2 {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.pod-integration-card-v2 {
  background: var(--pod-white);
  border: 2px solid var(--pod-primary);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 140px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pod-integration-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.pod-integration-icon-v2 {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 0.75rem;
}

.pod-integration-icon-v2 svg {
  width: 28px;
  height: 28px;
}

.pod-integration-icon-v2.shopify { background: transparent; }
.pod-integration-icon-v2.woo { background: transparent; }
.pod-integration-icon-v2.magento { background: transparent; }
.pod-integration-icon-v2.cloudcart { background: transparent; }
.pod-integration-icon-v2.api { background: #fdc107; color: var(--pod-dark); }

.pod-integration-card-v2 h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pod-dark);
  margin-bottom: 0.25rem;
}

.pod-integration-card-v2 p {
  font-size: 0.8rem;
  color: var(--pod-muted);
  margin: 0;
}

/* Integration Features Grid */
.pod-integration-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.pod-int-feature {
  background: var(--pod-white);
  border: 1px solid var(--pod-gray-200);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: left;
}

.pod-int-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(253, 193, 7, 0.15);
}

.pod-int-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--pod-primary);
}

.pod-int-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pod-dark);
  margin-bottom: 0.5rem;
}

.pod-int-feature p {
  font-size: 0.85rem;
  color: var(--pod-muted);
  margin: 0;
  line-height: 1.5;
}

/* Legacy integrations styles kept for backwards compatibility */
.pod-integrations {
  padding: 5rem 0;
  background: var(--pod-gray-100);
}

.pod-integrations-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .pod-integrations-grid { grid-template-columns: repeat(3, 1fr); }
}

.pod-integration-card {
  background: var(--pod-white);
  border: 2px solid var(--pod-primary);
  border-radius: var(--pod-radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pod-integration-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.pod-integration-card.featured {
  border-color: var(--pod-primary);
  box-shadow: 0 4px 12px rgba(253, 193, 7, 0.2);
}

.pod-integration-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.pod-integration-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--pod-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(253, 193, 7, 0.1);
}

.pod-integration-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--pod-primary);
}

.pod-integration-icon.shopify {
  background: #95bf47;
}

.pod-integration-icon.shopify svg {
  color: white;
}

.pod-integration-icon.woo {
  background: #96588a;
}

.pod-integration-icon.woo svg {
  color: white;
}

.pod-integration-recommended {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--pod-primary);
  color: var(--pod-dark);
  padding: 0.25rem 0.5rem;
  border-radius: var(--pod-radius-full);
}

.pod-integration-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--pod-dark);
  margin-bottom: 0.5rem;
}

.pod-integration-card > p {
  font-size: 0.875rem;
  color: var(--pod-muted);
  margin-bottom: 1rem;
}

.pod-integration-card ul.pod-integration-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pod-integration-card ul.pod-integration-features li {
  font-size: 0.8125rem;
  color: var(--pod-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pod-integration-card ul.pod-integration-features li::before {
  content: '✓';
  color: var(--pod-green);
  font-weight: 600;
}

.pod-integrations-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(253, 193, 7, 0.1);
  border-radius: var(--pod-radius-lg);
  text-align: center;
}

.pod-integrations-note svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pod-primary);
  flex-shrink: 0;
}

.pod-integrations-note p {
  font-size: 0.875rem;
  color: var(--pod-muted);
  margin: 0;
}

.pod-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pod-platform-card {
  min-width: 10rem;
  background: var(--pod-white);
  border-radius: var(--pod-radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pod-platform-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.pod-platform-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--pod-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.pod-platform-icon svg,
.pod-platform-icon span {
  font-size: 1.75rem;
  font-weight: 700;
}

.pod-platform-name {
  font-weight: 600;
  color: var(--pod-dark);
  margin-bottom: 0.25rem;
}

.pod-platform-description {
  font-size: 0.75rem;
  color: var(--pod-muted);
}

.pod-integration-features {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pod-integration-features { grid-template-columns: repeat(3, 1fr); }
}

.pod-integration-feature {
  background: var(--pod-white);
  border: 1px solid var(--pod-gray-200);
  border-radius: var(--pod-radius-lg);
  padding: 1.5rem;
}

.pod-integration-feature-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(253, 193, 7, 0.1);
  border-radius: var(--pod-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pod-integration-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--pod-primary);
}

.pod-integration-feature h3 {
  font-weight: 600;
  color: var(--pod-dark);
  margin-bottom: 0.5rem;
}

.pod-integration-feature p {
  font-size: 0.875rem;
  color: var(--pod-muted);
}

/* ==================== GETTING STARTED SECTION ==================== */
.pod-getting-started {
  padding: 5rem 0;
  background: var(--pod-gray-100);
}

.pod-getting-started .pod-section-header h2 span {
  color: var(--pod-primary);
}

.pod-getting-started-steps {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pod-getting-started-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.pod-gs-step {
  background: var(--pod-white);
  border-radius: var(--pod-radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.pod-gs-step:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.pod-gs-step-number {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--pod-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pod-dark);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 8px rgba(253, 193, 7, 0.3);
}

.pod-gs-step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pod-dark);
  margin-bottom: 0.75rem;
}

.pod-gs-step-content > p {
  font-size: 0.9375rem;
  color: var(--pod-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.pod-gs-step-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pod-gs-step-content ul li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--pod-muted);
}

.pod-gs-step-content ul li svg {
  width: 1rem;
  height: 1rem;
  color: var(--pod-green);
  flex-shrink: 0;
}

.pod-getting-started-cta {
  text-align: center;
  margin-top: 3rem;
}

.pod-getting-started-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pod-getting-started-list { gap: 1.5rem; }
}

.pod-getting-started-card {
  background: var(--pod-white);
  border-radius: var(--pod-radius-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

@media (min-width: 640px) {
  .pod-getting-started-card { padding: 1.5rem; gap: 1.5rem; }
}

.pod-getting-started-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.pod-getting-started-number {
  width: 3rem;
  height: 3rem;
  background: var(--pod-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pod-dark);
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(253, 193, 7, 0.3);
}

@media (min-width: 640px) {
  .pod-getting-started-number { width: 3.5rem; height: 3.5rem; font-size: 1.5rem; }
}

.pod-getting-started-content {
  flex: 1;
}

.pod-getting-started-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.pod-getting-started-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pod-primary);
  flex-shrink: 0;
}

.pod-getting-started-title h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pod-dark);
}

@media (min-width: 640px) {
  .pod-getting-started-title h3 { font-size: 1.25rem; }
}

.pod-getting-started-card p {
  font-size: 0.875rem;
  color: var(--pod-muted);
}

@media (min-width: 640px) {
  .pod-getting-started-card p { font-size: 1rem; }
}

/* ==================== LEAD FORM SECTION ==================== */
.pod-lead-form {
  padding: 5rem 0;
  background: var(--pod-gray-100);
}

.pod-lead-form-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .pod-lead-form-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.pod-lead-form-info h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--pod-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .pod-lead-form-info h2 { font-size: 2.25rem; }
}

.pod-lead-form-info h2 span {
  color: var(--pod-primary);
}

.pod-lead-form-info > p {
  font-size: 1rem;
  color: var(--pod-muted);
  margin-bottom: 2rem;
}

.pod-lead-form-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pod-lead-form-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pod-lead-form-feature svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--pod-primary);
  flex-shrink: 0;
}

.pod-lead-form-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pod-dark);
  margin-bottom: 0.25rem;
}

.pod-lead-form-feature p {
  font-size: 0.875rem;
  color: var(--pod-muted);
  margin: 0;
}

.pod-lead-form-box {
  background: var(--pod-white);
  border-radius: var(--pod-radius-lg);
  padding: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .pod-lead-form-box { padding: 1rem; }
}

/* Form Styles */
.pod-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--pod-dark);
  margin-bottom: 0.1rem;
}

.pod-form input,
.pod-form select,
.pod-form textarea {
  width: 100%;
  padding: 0.35rem 0.5rem;
  font-size: 16px;
  border: 1px solid var(--pod-gray-300);
  border-radius: var(--pod-radius);
  background: var(--pod-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 0;
  box-sizing: border-box;
}

.pod-form input:focus,
.pod-form select:focus,
.pod-form textarea:focus {
  outline: none;
  border-color: var(--pod-primary);
  box-shadow: 0 0 0 3px rgba(253, 193, 7, 0.2);
}

.pod-form textarea {
  resize: vertical;
  min-height: 2rem;
}

.pod-form-row {
  display: grid;
  gap: 0.35rem;
}

@media (min-width: 640px) {
  .pod-form-row { grid-template-columns: 1fr 1fr; }
}

.pod-form-group {
  margin-bottom: 0.35rem;
}

.pod-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pod-form-checkbox input[type="checkbox"] {
  width: auto;
  margin: 0.25rem 0 0 0;
  flex-shrink: 0;
}

.pod-form-checkbox label {
  font-size: 0.8125rem;
  color: var(--pod-muted);
  margin: 0;
}

.pod-form-checkbox a {
  color: var(--pod-primary);
  text-decoration: underline;
}

.pod-btn-block {
  width: 100%;
}

.pod-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--pod-muted);
}

.pod-form-note svg {
  width: 1rem;
  height: 1rem;
  color: var(--pod-green);
  flex-shrink: 0;
}

/* Phone Input with Country Code */
.pod-phone-input {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.pod-phone-country {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  flex-shrink: 0;
  padding: 0.35rem 0.25rem;
  border: 1px solid var(--pod-gray-300);
  border-radius: var(--pod-radius);
  font-size: 0.75rem;
  background: var(--pod-white);
  margin-bottom: 0;
}

.pod-phone-input input[type="tel"] {
  flex: 1 1 auto;
  min-width: 100px;
  width: 100%;
}

/* Form Hint Text */
.pod-form-hint {
  font-size: 0.65rem;
  color: var(--pod-muted);
  margin-bottom: 0.2rem;
  margin-top: 0;
}

/* Contact Method Options */
.pod-contact-method-options {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.pod-contact-option {
  flex: 1;
  min-width: 100px;
  cursor: pointer;
}

.pod-contact-option input {
  display: none;
}

.pod-contact-option-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.3rem 0.25rem;
  border: 2px solid var(--pod-gray-300);
  border-radius: var(--pod-radius);
  background: var(--pod-white);
  transition: all 0.2s;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--pod-dark);
}

.pod-contact-option-box svg {
  width: 24px;
  height: 24px;
}

.pod-contact-option input:checked + .pod-contact-option-box {
  border-color: var(--pod-green);
  background: rgba(34, 197, 94, 0.1);
  color: var(--pod-green);
}

.pod-contact-option:first-child .pod-contact-option-box svg {
  color: #25D366;
}

.pod-contact-option:nth-child(2) .pod-contact-option-box svg {
  color: #0088cc;
}

/* Toggle Options (Yes/No) */
.pod-toggle-options {
  display: flex;
  gap: 0.5rem;
}

.pod-toggle-option {
  cursor: pointer;
}

.pod-toggle-option input {
  display: none;
}

.pod-toggle-btn {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--pod-gray-300);
  border-radius: var(--pod-radius);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--pod-dark);
  background: var(--pod-white);
  transition: all 0.2s;
}

.pod-toggle-option input:checked + .pod-toggle-btn {
  background: var(--pod-primary);
  border-color: var(--pod-primary);
  color: var(--pod-dark);
  font-weight: 600;
}

/* Country Chips Multi-Select */
.pod-country-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-bottom: 0;
}

.pod-country-chip {
  cursor: pointer;
}

.pod-country-chip input {
  display: none;
}

.pod-country-chip span {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  border: 1px solid var(--pod-gray-300);
  border-radius: var(--pod-radius);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--pod-dark);
  background: var(--pod-white);
  transition: all 0.2s;
}

.pod-country-chip:hover span {
  border-color: var(--pod-primary);
}

.pod-country-chip input:checked + span {
  background: var(--pod-primary);
  border-color: var(--pod-primary);
  color: var(--pod-dark);
  font-weight: 600;
}

.pod-lead-form-section {
  padding: 5rem 0;
  background: var(--pod-dark);
}

.pod-lead-form-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .pod-lead-form-grid { grid-template-columns: 1fr 1fr; }
}

.pod-lead-form-intro {
  color: var(--pod-white);
}

.pod-lead-form-intro h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .pod-lead-form-intro h2 { font-size: 2.25rem; }
}

.pod-lead-form-intro > p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.pod-lead-form-bottle {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.pod-lead-form-bottle img {
  max-width: 16rem;
  height: auto;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
  animation: pod-float 4s ease-in-out infinite;
}

@media (min-width: 768px) {
  .pod-lead-form-bottle img { max-width: 20rem; }
}

@media (min-width: 1024px) {
  .pod-lead-form-bottle img { max-width: 24rem; }
}

.pod-lead-form-card {
  background: var(--pod-white);
  border-radius: var(--pod-radius-lg);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .pod-lead-form-card { padding: 2rem; }
}

.pod-form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .pod-form-row.two-col { grid-template-columns: 1fr 1fr; }
}

.pod-form-group {
  margin-bottom: 1.25rem;
}

.pod-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pod-dark);
  margin-bottom: 0.5rem;
}

.pod-form-input,
.pod-form-select,
.pod-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--pod-gray-300);
  border-radius: var(--pod-radius);
  background: var(--pod-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pod-form-input:focus,
.pod-form-select:focus,
.pod-form-textarea:focus {
  outline: none;
  border-color: var(--pod-primary);
  box-shadow: 0 0 0 3px rgba(253, 193, 7, 0.2);
}

.pod-form-textarea {
  resize: none;
  min-height: 5rem;
}

.pod-form-phone-row {
  display: flex;
  gap: 0.5rem;
}

.pod-form-phone-code {
  width: 6rem;
  flex-shrink: 0;
}

.pod-form-hint {
  font-size: 0.75rem;
  color: var(--pod-muted);
  margin-top: 0.25rem;
}

.pod-contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.pod-contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem;
  border: 2px solid var(--pod-gray-200);
  border-radius: var(--pod-radius);
  cursor: pointer;
  transition: all 0.2s;
}

.pod-contact-method:hover {
  border-color: var(--pod-gray-400);
}

.pod-contact-method.active-whatsapp {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.05);
}

.pod-contact-method.active-telegram {
  border-color: #0088cc;
  background: rgba(0, 136, 204, 0.05);
}

.pod-contact-method.active-email {
  border-color: var(--pod-primary);
  background: rgba(253, 193, 7, 0.1);
}

.pod-contact-method svg {
  width: 1.5rem;
  height: 1.5rem;
}

.pod-contact-method span {
  font-size: 0.75rem;
  font-weight: 500;
}

.pod-toggle-buttons {
  display: flex;
  gap: 1rem;
}

.pod-toggle-btn {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--pod-gray-300);
  border-radius: var(--pod-radius);
  background: transparent;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.pod-toggle-btn.active {
  background: var(--pod-primary);
  border-color: var(--pod-primary);
  color: var(--pod-dark);
}

.pod-countries-select {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-height: 8rem;
  overflow-y: auto;
  padding: 0.5rem;
  border: 1px solid var(--pod-gray-300);
  border-radius: var(--pod-radius);
}

.pod-country-checkbox {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--pod-gray-300);
  border-radius: var(--pod-radius);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.pod-country-checkbox:hover {
  border-color: var(--pod-primary);
}

.pod-country-checkbox.selected {
  background: var(--pod-primary);
  border-color: var(--pod-primary);
  color: var(--pod-dark);
  font-weight: 500;
}

.pod-form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pod-form-submit svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* Form Success State */
.pod-form-success {
  text-align: center;
  padding: 3rem;
}

.pod-form-success-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.pod-form-success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--pod-green);
}

.pod-form-success h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pod-dark);
  margin-bottom: 1rem;
}

.pod-form-success p {
  color: var(--pod-muted);
  margin-bottom: 1.5rem;
}

.pod-form-success-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ==================== FAQ SECTION ==================== */
.pod-faq {
  padding: 5rem 0;
  background: var(--pod-white);
}

.pod-faq-list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pod-faq-item {
  background: var(--pod-gray-100);
  border: 1px solid var(--pod-gray-200);
  border-radius: var(--pod-radius-lg);
  overflow: hidden;
}

.pod-faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.pod-faq-question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.pod-faq-question svg.help-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pod-primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pod-faq-question span {
  flex: 1;
  font-weight: 500;
  color: var(--pod-dark);
}

.pod-faq-question svg.chevron-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pod-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

/* Default FAQ icon styling (fixes oversized icons) */
.pod-faq-question svg.pod-faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pod-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.pod-faq-item.open .pod-faq-question svg.pod-faq-icon {
  transform: rotate(180deg);
}

.pod-faq-item.open .pod-faq-question svg.chevron-icon {
  transform: rotate(180deg);
}

.pod-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.pod-faq-item.open .pod-faq-answer {
  max-height: 500px;
}

.pod-faq-answer p {
  padding: 0 1.5rem 1.25rem 3rem;
  color: var(--pod-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* FAQ CTA */
.pod-faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pod-gray-200);
}

.pod-faq-cta p {
  font-size: 1rem;
  color: var(--pod-muted);
  margin-bottom: 1rem;
}

.pod-faq-cta .pod-btn-outline {
  background: transparent;
  border: 2px solid var(--pod-dark);
  color: var(--pod-dark);
}

.pod-faq-cta .pod-btn-outline:hover {
  background: var(--pod-dark);
  color: var(--pod-white);
}

/* ==================== MODAL ==================== */
.pod-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.pod-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.pod-modal {
  background: var(--pod-white);
  border-radius: var(--pod-radius-lg);
  max-width: 42rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.pod-modal-overlay.active .pod-modal {
  transform: translateY(0);
}

.pod-modal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--pod-gray-200);
}

.pod-modal-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(253, 193, 7, 0.1);
  border-radius: var(--pod-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pod-modal-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pod-primary);
}

.pod-modal-title {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pod-dark);
}

.pod-modal-close {
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pod-radius);
  transition: background 0.2s;
}

.pod-modal-close:hover {
  background: var(--pod-gray-100);
}

.pod-modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--pod-muted);
}

.pod-modal-body {
  padding: 1.5rem;
}

.pod-modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pod-modal-description {
  color: var(--pod-muted);
  margin-bottom: 1.5rem;
}

.pod-modal-content-grid {
  display: flex;
  gap: 1.5rem;
}

.pod-modal-benefits {
  flex: 1;
}

.pod-modal-benefits h4 {
  font-weight: 600;
  color: var(--pod-dark);
  margin-bottom: 0.75rem;
}

.pod-modal-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.pod-modal-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--pod-muted);
  margin-bottom: 0.5rem;
}

.pod-modal-benefits li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background: var(--pod-primary);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.pod-modal-product-image {
  width: 8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pod-modal-product-image img {
  max-width: 100%;
  max-height: 11rem;
  object-fit: contain;
}

.pod-modal-footer {
  background: var(--pod-gray-100);
  border-radius: var(--pod-radius);
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--pod-muted);
}

/* ==================== PACKAGING VIDEO SECTION ==================== */
.pod-packaging-video {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--pod-dark) 0%, var(--pod-dark-alt) 100%);
}

.pod-packaging-video .pod-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pod-packaging-video .pod-section-header h2 {
  color: var(--pod-white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pod-packaging-video .pod-section-header h2 span {
  color: var(--pod-primary);
}

.pod-packaging-video .pod-section-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.pod-video-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .pod-video-showcase {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
  }
}

.pod-video-wrapper {
  position: relative;
  border-radius: var(--pod-radius-lg);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pod-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pod-video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: background 0.3s ease;
}

.pod-video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}

.pod-video-play-overlay:hover .pod-video-play-btn {
  transform: scale(1.1);
}

.pod-video-play-btn {
  width: 80px;
  height: 80px;
  background: var(--pod-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pod-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 40px rgba(253, 193, 7, 0.4);
}

.pod-video-play-btn svg {
  margin-left: 4px;
}

.pod-video-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .pod-video-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pod-video-features {
    grid-template-columns: 1fr;
  }
}

.pod-video-feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--pod-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.pod-video-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--pod-primary);
}

.pod-video-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(253, 193, 7, 0.15);
  border-radius: var(--pod-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pod-video-feature-icon svg {
  color: var(--pod-primary);
  width: 24px;
  height: 24px;
}

.pod-video-feature-text h4 {
  color: var(--pod-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.pod-video-feature-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

/* ==================== UTILITIES ==================== */
.text-primary { color: var(--pod-primary) !important; }
.text-green { color: var(--pod-green) !important; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mt-4 { margin-top: 1rem !important; }

/* ==================== MOBILE RESPONSIVE FIXES ==================== */
/* Comprehensive mobile-first responsive adjustments */

/* Global Mobile Reset */
@media (max-width: 767px) {
  .pod-landing {
    overflow-x: hidden;
  }
  
  .pod-container {
    padding: 0 0.75rem;
  }
  
  /* Hero Section Mobile */
  .pod-hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 2rem;
  }
  
  .pod-hero h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }
  
  .pod-hero h2 {
    font-size: 1rem;
    padding-top: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .pod-hero h2::before {
    width: 2rem;
  }
  
  .pod-hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .pod-hero-buttons {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .pod-btn-lg {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
  
  .pod-hero-bottle-wrapper {
    margin-top: 1.5rem;
  }
  
  .pod-hero-bottle {
    width: 12rem;
  }
  
  .pod-sticker {
    padding: 0.35rem 0.5rem;
    transform: scale(0.8);
  }
  
  .pod-sticker-top-left { left: -1.5rem; top: -1.5rem; }
  .pod-sticker-top-right { right: -1.5rem; top: 1.5rem; }
  .pod-sticker-bottom-left { left: -1.5rem; bottom: 1.5rem; }
  .pod-sticker-bottom-right { right: -1rem; bottom: -0.5rem; }
  
  .pod-sticker-label { font-size: 0.55rem; }
  .pod-sticker-value { font-size: 0.65rem; }
  .pod-sticker-icon { width: 12px; height: 12px; }
  
  /* Badge Mobile */
  .pod-badge {
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
  }
  
  /* Warehouses/Certifications Mobile */
  .pod-warehouses {
    padding: 1.5rem 0;
  }
  
  .pod-certs {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .pod-certs img {
    height: 3rem;
  }
  
  .pod-warehouses-list {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .pod-warehouse-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .pod-warehouse-count span {
    font-size: 1rem;
  }
  
  .pod-warehouse-name,
  .pod-warehouse-cities {
    font-size: 0.9rem;
  }
  
  /* Section Headers Mobile */
  .pod-section-header {
    margin-bottom: 2rem;
  }
  
  .pod-section-header h2 {
    font-size: 1.35rem;
    padding: 0 0.5rem;
  }
  
  .pod-section-header p {
    font-size: 0.875rem;
    padding: 0 0.5rem;
  }
  
  /* How It Works Mobile */
  .pod-how-it-works {
    padding: 2.5rem 0 3rem;
  }
  
  .pod-steps-mobile {
    gap: 0.25rem;
  }
  
  .pod-step-mobile-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }
  
  .pod-step-mobile-title {
    font-size: 0.55rem;
  }
  
  .pod-how-it-works-images {
    margin-top: 2rem;
    gap: 1rem;
  }
  
  /* Catalog/Products Mobile */
  .pod-catalog {
    padding: 3rem 0;
  }
  
  .pod-catalog-grid {
    gap: 1rem;
  }
  
  .pod-product-card {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .pod-product-image {
    width: 5.5rem;
    height: 8rem;
  }
  
  .pod-product-name {
    font-size: 0.95rem;
    line-height: 1.2;
  }
  
  .pod-product-description {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
  }
  
  .pod-product-badges {
    gap: 0.25rem;
    margin-bottom: 0.35rem;
  }
  
  .pod-product-badges .pod-badge {
    padding: 0.2rem 0.4rem;
    font-size: 0.6rem;
  }
  
  /* Fulfillment Section Mobile */
  .pod-fulfillment {
    padding: 3rem 0;
  }
  
  .pod-fulfillment-grid {
    gap: 1rem;
  }
  
  .pod-fulfillment-card {
    padding: 1rem;
  }
  
  .pod-fulfillment-card h3 {
    font-size: 1rem;
  }
  
  .pod-fulfillment-card p {
    font-size: 0.8rem;
  }
  
  .pod-fulfillment-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .pod-fulfillment-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .pod-fulfillment-stats {
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .pod-fulfillment-stat-value {
    font-size: 1.75rem;
  }
  
  .pod-fulfillment-stat p {
    font-size: 0.75rem;
  }
  
  /* Delivery Coverage Mobile */
  .pod-delivery-map-v2 {
    padding: 1.25rem;
    margin-top: 2rem;
  }
  
  .pod-map-title {
    font-size: 1.15rem;
  }
  
  .pod-map-subtitle {
    font-size: 0.8rem;
  }
  
  .pod-map-legend {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .pod-legend-item {
    font-size: 0.75rem;
  }
  
  .pod-countries-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .pod-column-wide {
    grid-column: span 1;
  }
  
  .pod-country-row {
    padding: 0.5rem 0.6rem;
  }
  
  .pod-country-name {
    font-size: 0.8rem;
  }
  
  .pod-tag {
    font-size: 0.55rem;
    padding: 0.15rem 0.35rem;
  }
  
  /* Couriers Mobile */
  .pod-couriers {
    padding: 3rem 0;
  }
  
  .pod-couriers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .pod-courier-item {
    min-height: 70px;
    padding: 0.75rem;
  }
  
  .pod-courier-item img {
    max-height: 2.5rem;
  }
  
  .pod-couriers-note {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    margin-top: 1.5rem;
  }
  
  .pod-couriers-note svg {
    margin: 0 auto;
  }
  
  /* COD Section Mobile */
  .pod-cod-v2 {
    padding: 3rem 0;
  }
  
  .pod-cod-header h2 {
    font-size: 1.5rem;
  }
  
  .pod-cod-header p {
    font-size: 0.9rem;
  }
  
  .pod-cod-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .pod-cod-card {
    padding: 1.25rem;
  }
  
  .pod-cod-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .pod-cod-card h3 {
    font-size: 1rem;
  }
  
  .pod-cod-card p {
    font-size: 0.8rem;
  }
  
  /* Integrations Mobile */
  .pod-integrations-v2 {
    padding: 3rem 0;
  }
  
  .pod-integrations-header h2 {
    font-size: 1.5rem;
  }
  
  .pod-integrations-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .pod-integrations-grid-v2 .pod-integration-card-v2:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
  
  .pod-integration-card-v2 {
    padding: 1rem 1.25rem;
    min-width: 100px;
  }
  
  .pod-integration-icon-v2 {
    width: 44px;
    height: 44px;
  }
  
  .pod-integration-icon-v2 svg {
    width: 22px;
    height: 22px;
  }
  
  .pod-integration-card-v2 h4 {
    font-size: 0.85rem;
  }
  
  .pod-integration-card-v2 p {
    font-size: 0.7rem;
  }
  
  .pod-integration-features-grid {
    gap: 1rem;
  }
  
  .pod-int-feature {
    padding: 1.25rem;
  }
  
  .pod-int-feature h4 {
    font-size: 0.95rem;
  }
  
  .pod-int-feature p {
    font-size: 0.8rem;
  }
  
  /* Getting Started Mobile */
  .pod-getting-started {
    padding: 3rem 0;
  }
  
  .pod-getting-started-steps {
    gap: 1.25rem;
  }
  
  .pod-gs-step {
    padding: 1.5rem;
  }
  
  .pod-gs-step-number {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .pod-gs-step-content h3 {
    font-size: 1.1rem;
  }
  
  .pod-gs-step-content > p {
    font-size: 0.875rem;
  }
  
  .pod-gs-step-content ul li {
    font-size: 0.8rem;
  }
  
  /* Lead Form Mobile */
  .pod-lead-form {
    padding: 3rem 0;
  }
  
  .pod-lead-form-grid {
    gap: 2rem;
  }
  
  .pod-lead-form-info h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .pod-lead-form-info > p {
    text-align: center;
    font-size: 0.9rem;
  }
  
  .pod-lead-form-features {
    gap: 1rem;
  }
  
  .pod-lead-form-feature {
    gap: 0.75rem;
  }
  
  .pod-lead-form-feature svg {
    width: 2rem;
    height: 2rem;
  }
  
  .pod-lead-form-feature h4 {
    font-size: 0.9rem;
  }
  
  .pod-lead-form-feature p {
    font-size: 0.8rem;
  }
  
  .pod-lead-form-features-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  
  .pod-lead-form-features {
    flex: 1;
  }
  
  .pod-lead-form-bottle {
    display: block;
    text-align: center;
    margin: 0;
    flex-shrink: 0;
  }
  
  .pod-lead-form-bottle img {
    max-width: 120px;
    height: auto;
  }
  
  .pod-lead-form-box {
    padding: 1rem;
  }
  
  /* Form Fields Mobile */
  .pod-form label {
    font-size: 0.75rem;
  }
  
  .pod-form input,
  .pod-form select,
  .pod-form textarea {
    padding: 0.5rem 0.65rem;
    font-size: 16px;
  }
  
  .pod-form-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .pod-form-group {
    margin-bottom: 0.5rem;
  }
  
  .pod-phone-input {
    flex-direction: row;
  }
  
  .pod-phone-country {
    width: 85px;
    min-width: 85px;
    max-width: 85px;
    font-size: 0.7rem;
  }
  
  .pod-contact-method-options {
    gap: 0.5rem;
  }
  
  .pod-contact-option {
    min-width: 80px;
  }
  
  .pod-contact-option-box {
    padding: 0.4rem 0.35rem;
    font-size: 0.6rem;
  }
  
  .pod-contact-option-box svg {
    width: 20px;
    height: 20px;
  }
  
  .pod-toggle-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
  
  .pod-country-chips {
    gap: 0.25rem;
  }
  
  .pod-country-chip span {
    padding: 0.2rem 0.35rem;
    font-size: 0.55rem;
  }
  
  /* Packaging Video Mobile */
  .pod-packaging-video {
    padding: 3rem 0;
  }
  
  .pod-packaging-video .pod-section-header {
    margin-bottom: 2rem;
  }
  
  .pod-packaging-video .pod-section-header h2 {
    font-size: 1.5rem;
  }
  
  .pod-packaging-video .pod-section-header p {
    font-size: 0.9rem;
  }
  
  .pod-video-showcase {
    gap: 1.5rem;
  }
  
  .pod-video-play-btn {
    width: 60px;
    height: 60px;
  }
  
  .pod-video-play-btn svg {
    width: 24px;
    height: 24px;
  }
  
  .pod-video-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .pod-video-feature {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .pod-video-feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .pod-video-feature-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .pod-video-feature-text h4 {
    font-size: 0.9rem;
  }
  
  .pod-video-feature-text p {
    font-size: 0.8rem;
  }
  
  /* FAQ Mobile */
  .pod-faq {
    padding: 3rem 0;
  }
  
  .pod-faq-list {
    gap: 0.75rem;
  }
  
  .pod-faq-question {
    padding: 1rem 1rem;
    gap: 0.5rem;
  }
  
  .pod-faq-question span {
    font-size: 0.9rem;
  }
  
  .pod-faq-question svg.help-icon,
  .pod-faq-question svg.pod-faq-icon {
    width: 1rem;
    height: 1rem;
  }
  
  .pod-faq-answer p {
    padding: 0 1rem 1rem 2.25rem;
    font-size: 0.85rem;
  }
  
  .pod-faq-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  
  .pod-faq-cta p {
    font-size: 0.9rem;
  }
  
  /* Modal Mobile */
  .pod-modal-overlay {
    padding: 0.75rem;
  }
  
  .pod-modal {
    max-height: 95vh;
  }
  
  .pod-modal-header {
    padding: 1rem;
  }
  
  .pod-modal-title {
    font-size: 1.1rem;
  }
  
  .pod-modal-body {
    padding: 1rem;
  }
  
  .pod-modal-content-grid {
    flex-direction: column-reverse;
  }
  
  .pod-modal-product-image {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .pod-modal-product-image img {
    max-height: 8rem;
  }
}

/* Small mobile devices (iPhone SE, etc) */
@media (max-width: 374px) {
  .pod-hero h1 {
    font-size: 1.5rem;
  }
  
  .pod-hero h2 {
    font-size: 0.9rem;
  }
  
  .pod-hero-bottle {
    width: 10rem;
  }
  
  .pod-sticker {
    transform: scale(0.75);
  }
  
  .pod-section-header h2 {
    font-size: 1.2rem;
  }
  
  .pod-lead-form-info h2 {
    font-size: 1.35rem;
  }
  
  .pod-contact-option {
    min-width: 70px;
  }
  
  .pod-contact-option-box svg {
    width: 18px;
    height: 18px;
  }
  
  .pod-country-chip span {
    font-size: 0.5rem;
    padding: 0.15rem 0.3rem;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .pod-hero h1 {
    font-size: 2.25rem;
  }
  
  .pod-hero h2 {
    font-size: 1.15rem;
  }
  
  .pod-hero-bottle {
    width: 16rem;
  }
  
  .pod-section-header h2 {
    font-size: 1.75rem;
  }
  
  .pod-lead-form-grid {
    gap: 2.5rem;
  }
  
  .pod-fulfillment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pod-cod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pod-video-showcase {
    grid-template-columns: 1fr;
  }
  
  .pod-video-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  
  .pod-video-feature {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .pod-video-feature-icon {
    margin: 0 auto 0.5rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .pod-btn {
    min-height: 44px;
  }
  
  .pod-product-card:hover,
  .pod-fulfillment-card:hover,
  .pod-cod-card:hover,
  .pod-integration-card-v2:hover,
  .pod-gs-step:hover,
  .pod-video-feature:hover {
    transform: none;
  }
  
  .pod-country-chip:active span,
  .pod-contact-option:active .pod-contact-option-box,
  .pod-toggle-option:active .pod-toggle-btn {
    opacity: 0.7;
  }
}

/* Landscape phone orientation */
@media (max-width: 896px) and (orientation: landscape) {
  .pod-hero {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 2rem;
  }
  
  .pod-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .pod-hero h1 {
    font-size: 1.5rem;
  }
  
  .pod-hero h2 {
    font-size: 0.85rem;
    padding-top: 0.75rem;
  }
  
  .pod-hero-description {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .pod-hero-buttons {
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .pod-btn-lg {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    width: auto;
  }
  
  .pod-hero-bottle-wrapper {
    margin-top: 0;
  }
  
  .pod-hero-bottle {
    width: 10rem;
  }
  
  .pod-sticker {
    display: none;
  }
}

/* Print styles - hide non-essential elements */
@media print {
  .pod-hero-bottle-wrapper,
  .pod-sticker,
  .pod-video-play-overlay,
  .pod-lead-form-bottle,
  .pod-btn {
    display: none !important;
  }
}

/* B2B Notice */
.pod-b2b-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #4a3520;
}

.pod-b2b-notice strong {
  color: #92400e;
  display: block;
  margin-bottom: 0.25rem;
}

.pod-b2b-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}
