/* ============================================
   PerssonOfSweden B2B Landing Page Styles
   Mobile-first responsive design
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #0052a3;
  text-decoration: underline;
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 3rem 0;
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */

.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.cta-primary {
  background: #0066cc;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 102, 204, 0.2);
}

.cta-primary:hover {
  background: #0052a3;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 102, 204, 0.3);
  text-decoration: none;
}

.cta-secondary {
  background: #ffffff;
  color: #0066cc;
  border: 2px solid #0066cc;
}

.cta-secondary:hover {
  background: #f0f7ff;
  text-decoration: none;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.secondary-cta {
  font-size: 0.95rem;
  color: #666;
}

/* ============================================
   HERO SECTION
   ============================================ */

#hero {
  position: relative;
  background-image: url('/images/background_designs_product.png');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #1a1a2e;
  padding: 3rem 0;
  text-align: center;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  #hero {
    min-height: 500px;
    padding: 4rem 0;
  }
}

/* Gradient overlay - no blur for sharp background */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45));
  z-index: 1;
  transition: opacity 0.4s ease;
}

/* Hero content stays above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #ffffff;
  transition: opacity 0.4s ease;
}

/* Gallery Mode Toggle Button */
.gallery-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 10px 18px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-button:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Gallery Mode Active States */
body.gallery-mode .hero-content {
  opacity: 0;
  pointer-events: none;
}

body.gallery-mode .hero-overlay {
  opacity: 0;
}

body.gallery-mode .gallery-button {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

body.gallery-mode .gallery-button:hover {
  background: #333;
}

#hero h1 {
  font-size: 1.6rem;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#hero .hero-subhead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

#hero .catalog-count {
  color: #66b3ff;
  font-weight: 700;
}

#hero .trust-badge {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-top: 2rem;
}

#hero .secondary-cta {
  color: rgba(255,255,255,0.8);
}

#hero .secondary-cta a {
  color: #66b3ff;
}

/* Name Search Widget - Floating Style */
.name-search-widget {
  background: transparent;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.name-search-widget h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.search-explainer {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.search-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .search-input-group {
    flex-direction: row;
    gap: 0.5rem;
  }
}

.name-search-widget input {
  flex: 1;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.name-search-widget input::placeholder {
  color: rgba(255,255,255,0.6);
}

.name-search-widget input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
}

.name-search-widget button {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.name-search-widget button:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
}

.search-examples {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Search Result - Subtle Style */
#searchResult {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  display: none;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

#searchResult.success {
  background: rgba(212, 237, 218, 0.95);
  color: #155724;
  display: block;
}

#searchResult.error {
  background: rgba(248, 215, 218, 0.95);
  color: #721c24;
  display: block;
}

#searchResult.warning {
  background: rgba(255, 243, 205, 0.95);
  color: #856404;
  display: block;
}

#searchResult small {
  opacity: 0.8;
  font-size: 0.85em;
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */

/* ============================================
   VALUE PROP BAR
   ============================================ */

#value-prop-bar {
  background: #f8f9fa;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e9ecef;
}

.value-props {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .value-props {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
  }
}

.value-prop-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.value-prop-item .checkmark {
  color: #28a745;
  font-weight: 700;
  font-size: 1.1rem;
}

.value-prop-text {
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ============================================
   CATALOG PREVIEW
   ============================================ */

#catalog-preview {
  background: #ffffff;
}

#catalog-preview h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-context {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Live Stats Bar */
.live-stats-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.live-stat {
  text-align: center;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.live-stat:hover {
  border-color: #0066cc;
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.12);
}

.live-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0066cc;
  line-height: 1.2;
  transition: transform 0.3s ease, color 0.3s ease;
}

.live-stat .stat-number.updating {
  transform: scale(1.1);
  color: #00aa55;
}

.live-stat .stat-label {
  display: block;
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .live-stats-bar {
    gap: 1rem;
  }

  .live-stat {
    padding: 1rem 1.5rem;
  }

  .live-stat .stat-number {
    font-size: 1.75rem;
  }

  .live-stat .stat-label {
    font-size: 0.75rem;
  }
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  background: #f8f9fa;
  border: 2px solid #ddd;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: #0066cc;
  color: #0066cc;
}

.filter-btn.active {
  background: #0066cc;
  color: #ffffff;
  border-color: #0066cc;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* Mobile: 2 columns */
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Tablet: 3 columns */
@media (min-width: 576px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small desktop: 4 columns */
@media (min-width: 768px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/* Desktop: 5 columns max */
@media (min-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

.catalog-item {
  aspect-ratio: 1;
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.catalog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.catalog-item:hover img {
  transform: scale(1.05);
}

.catalog-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: #666;
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.catalog-note {
  text-align: center;
  font-size: 1.125rem;
  color: #555;
  margin: 2rem 0 1.5rem;
}

#catalog-preview .cta-secondary {
  display: block;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

/* Random Preview Grid */
.random-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  user-select: none;
  -webkit-user-select: none;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .random-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }
}

.random-preview-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  background: #f0f0f0;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

#products {
  background: #ffffff;
}

#products h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.products-showcase {
  max-width: 800px;
  margin: 0 auto 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.products-showcase img {
  width: 100%;
  height: auto;
  display: block;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.product-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.product-icon .emoji-fallback {
  display: none;
  font-size: 2.5rem;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
}

.product-item p {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.products-hero {
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
}

.products-hero img {
  width: 100%;
  height: auto;
}

.product-icons-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.product-icon-item {
  font-size: 1rem;
  color: #333;
  white-space: nowrap;
}

.products-subtext {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

#products .note {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* ============================================
   VALUE PROPOSITIONS
   ============================================ */

#value-props {
  background: #ffffff;
  padding: 4rem 0;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-icon {
  font-size: 3rem;
  color: #0066cc;
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-item p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */

#pricing {
  background: #f8f9fa;
  padding: 4rem 0;
}

#pricing h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.pricing-card .tier-select-btn {
  margin-top: auto;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured,
.pricing-card.selected {
  border: 3px solid #0066cc;
  transform: scale(1.02);
}

.pricing-card.featured:hover,
.pricing-card.selected:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-card.selected {
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.2);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0066cc;
  color: #ffffff;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
}

.pricing-card .price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0066cc;
  margin: 0.5rem 0 0.25rem;
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 1rem 0;
}

.pricing-card ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
}

.pricing-card ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0066cc;
  font-weight: 700;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

#pricing .note {
  text-align: center;
  font-size: 1rem;
  color: #666;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

#process {
  background: #ffffff;
  padding: 4rem 0;
}

#process h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

#process .section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  background: #f8f9fa;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  position: relative;
  text-align: center;
  border-top: 4px solid #0066cc;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #0066cc;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.step p {
  color: #555;
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Step 2 Seal */
.step-with-seal {
  position: relative;
}

.step-seal {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  opacity: 0.08;
  pointer-events: none;
}

@media (min-width: 901px) {
  .step-seal {
    width: 50px;
    height: 50px;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 550px;
  }
}

.process-proof {
  text-align: center;
  color: #28a745;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

#process .cta-primary {
  display: block;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */

#testimonials {
  background: #f8f9fa;
  padding: 4rem 0;
  overflow: hidden;
}

.section-label {
  text-align: center;
  color: #0066cc;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

#testimonials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.testimonial-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-slide {
  display: none;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  text-align: left;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-slide .stars {
  color: #f5a623;
  font-size: 1.35rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-slide .quote {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  min-height: 120px;
}

.testimonial-slide .author {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  margin: 0;
}

.testimonial-slide .author .date {
  font-weight: 400;
  color: #888;
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 2px solid #e0e0e0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.35rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333;
  z-index: 10;
}

.carousel-arrow:hover {
  background: #0066cc;
  border-color: #0066cc;
  color: #ffffff;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.carousel-dot.active {
  background: #0066cc;
}

@media (max-width: 992px) {
  .testimonial-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-carousel {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .testimonial-carousel {
    padding: 0 45px;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .testimonial-slide {
    padding: 1.5rem;
  }

  .testimonial-slide .quote {
    font-size: 1rem;
    min-height: auto;
  }
}

#testimonials .container {
  text-align: center;
}

.etsy-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
}

.etsy-verified-badge .badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #f5841f;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ============================================
   PARTNER COMMITMENT SECTION
   ============================================ */

#partner-commitment {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.commitment-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid #c9a84c;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 168, 76, 0.1);
  position: relative;
}

.commitment-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c9a84c 0%, #d4b85c 100%);
  color: #1a1a1a;
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.commitment-box h3 {
  font-size: 1.4rem;
  color: #c9a84c;
  margin: 0.5rem 0 1.25rem;
  line-height: 1.4;
}

.commitment-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem;
}

.commitment-box p strong {
  color: #c9a84c;
}

.commitment-tagline {
  font-size: 1.1rem !important;
  font-style: italic;
  color: #c9a84c !important;
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
}

/* ============================================
   FAQ SECTION
   ============================================ */

#faq {
  background: #ffffff;
  padding: 4rem 0;
}

#faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.faq-item {
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1rem;
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #0066cc;
}

.faq-question:after {
  content: '+';
  position: absolute;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: #0066cc;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1rem 1.25rem;
}

.faq-answer p {
  color: #555;
  line-height: 1.7;
}

#faq > .container > p {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================
   CONTACT / APPLICATION FORM
   ============================================ */

#contact {
  background: #f8f9fa;
}

#contact h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form .form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  cursor: pointer;
  background: #ffffff;
}

.form-actions {
  margin-top: 2rem;
  text-align: center;
}

.form-actions .cta-primary {
  width: 100%;
  max-width: 300px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.form-result {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.form-result.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-result.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ============================================
   ROI SUMMARY SECTION
   ============================================ */

#roi-summary {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

#roi-summary .roi-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  opacity: 0.25;
  filter: invert(1);
}

@media (min-width: 768px) {
  #roi-summary .roi-logo {
    width: 56px;
    height: 56px;
  }
}

#roi-summary .roi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

#roi-summary h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

#roi-summary .roi-subheadline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

#roi-summary .roi-statement {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

#roi-summary .roi-hook {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  font-style: italic;
}

#roi-summary .cta-primary {
  background: #ffffff;
  color: #0066cc;
}

#roi-summary .cta-primary:hover {
  background: #f0f7ff;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 3rem 0 2rem;
}

footer .container {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #ffffff;
}

.footer-brand-logo {
  width: 40px;
  height: 40px;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .footer-brand-logo {
    width: 48px;
    height: 48px;
  }
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 3rem;
  }
}


.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column nav a {
  color: #999;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-column nav a:hover {
  color: #ffffff;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #666;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
}

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column nav {
    align-items: center;
  }
}

/* ============================================
   LICENSE IS FOR SECTION
   ============================================ */

#license-for {
  background: #e8f5e9;
  padding: 2rem 0;
  border-top: 3px solid #4caf50;
  border-bottom: 3px solid #4caf50;
}

#license-for h3 {
  text-align: center;
  font-size: 1.25rem;
  color: #2e7d32;
  margin-bottom: 1.5rem;
}

.license-for-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 550px;
  display: grid;
  gap: 0.75rem;
}

.license-for-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #2e7d32;
}

.license-for-icon {
  font-size: 1.1rem;
  color: #4caf50;
}

/* ============================================
   SAVINGS CTA BOX
   ============================================ */

.savings-cta-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 10px;
  padding: 1.25rem 2rem;
  margin-top: 2rem;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.savings-cta-text {
  color: #c9a84c;
  font-size: 0.95rem;
  margin: 0 0 0.75rem 0;
}

.cta-savings {
  display: inline-block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 2px solid #c9a84c;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.cta-savings:hover {
  background: #c9a84c;
  color: #1a1a1a;
}

/* ============================================
   DISCOVERY CTA BOX
   ============================================ */

.discovery-cta-box {
  background: #f0f7ff;
  border: 2px solid #0066cc;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.discovery-cta-box h4 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.discovery-cta-box > p {
  color: #555;
  margin-bottom: 1rem;
}

.discovery-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
  display: inline-block;
}

.discovery-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #333;
}

.discovery-benefits .checkmark {
  color: #28a745;
  font-weight: bold;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.catalog-count,
.catalog-words,
.catalog-work,
.catalog-total {
  font-weight: 700;
  color: #0066cc;
}

/* Hero headline total inherits hero text color */
#hero .catalog-total {
  color: inherit;
}

.note {
  font-size: 0.95rem;
  color: #666;
  margin-top: 1rem;
}

/* Pricing tier restrictions (Starter tier NO items) */
.pricing-card li.restriction {
  color: #999;
  font-size: 0.9em;
}

.pricing-card li.restriction:before {
  content: '✗';
  color: #999;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablets (768px and up) */
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  #hero h1 {
    font-size: 2rem;
  }

  .cta-group {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .step {
    padding: 2rem 1.5rem;
  }

  /* Hero section - larger on tablets */
  #hero {
    min-height: 550px;
    padding: 5rem 0;
  }

  .search-input-group {
    max-width: 550px;
  }

  .name-search-widget h2 {
    font-size: 1.75rem;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  section {
    padding: 5rem 0;
  }

  #hero {
    min-height: 600px;
    padding: 6rem 0;
  }

  #hero h1 {
    font-size: 2.25rem;
  }

  #hero .hero-subhead {
    font-size: 1.25rem;
  }

  .search-input-group {
    max-width: 600px;
  }

  .name-search-widget h2 {
    font-size: 2rem;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}
