/*
Theme Name: IberiaIPTV
Theme URI: https://iberiaiptv.com
Author: IberiaIPTV
Author URI: https://iberiaiptv.com
Description: Premium IPTV service theme for Spain
Version: 1.0.0
Text Domain: iberiaiptv
*/
:root {
  /* Colors - Clean Light Replica Palette */
  --bg-body: #ffffff;
  --bg-light-grey: #f8f9fa;
  --bg-dark-footer: #1a1a1a;

  /* Brand Colors */
  --primary: #ff6b00;
  /* Vibrant Orange for buttons/highlights */
  --primary-hover: #e65c00;
  --secondary: #25d366;
  /* WhatsApp Green */
  --secondary-hover: #128c7e;

  /* Text */
  --text-main: #666666;
  --text-headers: #111111;
  --text-white: #ffffff;

  /* Specific Design Colors */
  --blue-gradient: linear-gradient(135deg, #2563eb, #3b82f6);
  /* For CTA */
  --ribbon-red: #ea580c;
  /* Orange-Red for Hot Sale */
  --promo-bg: rgba(239, 68, 68, 0.08);
  /* Light red for promo box */
  --promo-text: #dc2626;

  /* Spacing & Layout */
  --container-width: 1200px;
  --header-height: 80px;

  /* Effects */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius-md: 8px;
  --radius-lg: 8px;
  /* Slightly squarer cards as per image */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-orange {
  color: var(--primary);
}

.bg-light {
  background-color: var(--bg-light-grey);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  /* More square buttons */
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 6px rgba(255, 107, 0, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}

.btn-white {
  background-color: white;
  color: var(--primary);
}

.btn-white:hover {
  background-color: #f0f0f0;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-full {
  width: 100%;
}

/* Top Bar */
.top-bar {
  background: #ef4444;
  /* Premium Red as requested */
  color: white;
  padding: 8px 0;
  font-size: 0.85rem;
  z-index: 1001;
  position: relative;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* Allow wrapping */
  gap: 5px;
  /* Spacing */
}

.top-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
  /* Force one line */
}

.top-link:hover {
  color: var(--primary);
}

.offer-flash {
  color: white;
  /* Clean white */
  font-weight: 700;
  letter-spacing: 0.5px;
  /* Removed gradient and pulse for cleaner look */
}

@keyframes pulse-text {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

/* Premium Navbar (Dark Cinema Style) */
.premium-nav {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #ffffff;
  /* White Text */
  letter-spacing: -0.5px;
}

.logo-highlight {
  color: var(--primary);
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: 50px;
}

.nav-link {
  text-decoration: none;
  color: #e0e0e0;
  /* Off-white for contrast */
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 5px 0;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  /* Cinema Style */
}

/* Glow Effect instead of Underline */
.nav-link:hover {
  color: var(--primary);
  text-shadow: 0 0 12px rgba(255, 107, 0, 0.6);
}

.nav-link::after {
  display: none;
}

/* Nav Buttons */
.nav-btns {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}

/* Custom ghost button for dark nav */
/* Custom ghost button for dark nav - Changed to Green per user request */
.nav-btns .btn-outline-white {
  background: var(--secondary);
  /* WhatsApp Green */
  border: 2px solid var(--secondary);
  color: white;
  box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
}

.nav-btns .btn-outline-white:hover {
  background: var(--secondary-hover);
  color: white;
  border-color: var(--secondary-hover);
  transform: translateY(-2px);
}

.nav-btns .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
}

/* Responsive Nav */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #ffffff;
    /* White background for mobile menu */
    flex-direction: column;
    padding: 80px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-links .nav-link {
    color: #111111;
    /* Black text for mobile links */
    text-shadow: none;
  }

  .nav-links .nav-link:hover {
    color: var(--primary);
    text-shadow: none;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-btns {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1001;
    color: var(--primary) !important;
  }
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  }

  50% {
    box-shadow: 0 4px 25px rgba(255, 107, 0, 0.5);
  }

  100% {
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  }
}

.btn-glow {
  background-image: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  border: none;
  animation: glow-pulse 3s infinite;
}



.nav-btns {
  display: flex;
  gap: 10px;
}

/* Hero Section */
/* Hero Section adjustment for sticky header */
.hero-section {
  /* No huge padding needed if using position: sticky, as header takes up space. 
     But we want some breathing room. */
  padding-top: 60px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 900;
  color: var(--text-headers);
  min-height: 120px;
  /* Reserve space for 2 lines of heading */
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 500px;
  min-height: 90px;
  /* Reserve space for 3 lines of text */
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  min-height: 50px;
  /* stabilize button area */
}

.flash-sale {
  background: linear-gradient(90deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.flash-header {
  font-weight: 800;
  text-transform: uppercase;
  color: #d63384;
  margin-bottom: 10px;
  display: block;
}

.flash-timer {
  font-family: monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-headers);
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* Hero Offer Banner (Right Side on Desktop) */
.hero-offer-banner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-offer-banner .christmas-flash-banner {
  max-width: 400px;
  width: 100%;
}

/* Mobile: Stack the banner under hero text */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-offer-banner {
    order: 2;
    margin-top: 30px;
  }

  .hero-offer-banner .christmas-flash-banner {
    max-width: 100%;
  }
}

/* Device Logos Refinement */
.devices-left img {
  width: 100%;
  max-width: 500px;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Features Section */
.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-headers);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-main);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff5eb;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-headers);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--text-headers);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: stretch;
  scroll-margin-top: 120px;
  /* Offset for sticky header */
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-card .btn {
  margin-top: auto;
}

/* Best Value / Annual Card */
.pricing-card.annual {
  border: 2px solid var(--primary);
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Orange Centered Devices Section */
.devices-orange-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.text-white {
  color: white !important;
}

.devices-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.devices-header .lead-text {
  font-size: 1.25rem;
  margin-bottom: 50px;
  opacity: 0.95;
}

.device-logos-container {
  max-width: 800px;
  margin: 0 auto 50px;
  background: white;
  padding: 40px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.devices-grid-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.devices-grid-img:hover {
  transform: scale(1.02);
}

.devices-feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-bottom: 40px;
}

.devices-feature-list li {
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Supported Devices Section */
.supported-devices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
  justify-content: center;
}

@media (min-width: 600px) {
  .supported-devices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px) {
  .supported-devices-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.device-card {
  background: white;
  padding: 30px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.device-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.device-icon-wrapper {
  color: var(--primary);
  margin-bottom: 20px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-icon-wrapper svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
}

.device-card p {
  font-weight: 600;
  font-size: 0.9rem;
  color: #444;
  margin: 0;
  line-height: 1.4;
}



.devices-cta .btn-white {
  background: white;
  color: var(--primary);
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.devices-cta .btn-white:hover {
  background: #f8f8f8;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .device-logos-container {
    padding: 15px;
    /* Reduce padding to make image larger */
    margin-bottom: 30px;
  }

  .devices-header h2 {
    font-size: 2.25rem;
  }
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--text-headers);
  font-weight: 800;
}

.price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-headers);
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-amount {
  color: var(--primary);
  font-size: 2.5rem;
}

/* Pricing Card Styles */
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Premium Highlighted Card (Annual) */
.pricing-card.annual {
  border: 4px solid #ff6b00;
  /* Thick Orange Border */
  background: #fff9f0;
  /* Light Cream Background */
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding-top: 50px;
  /* Space for ribbon */
}

/* Hot Sale Ribbon */
.hot-sale-ribbon {
  position: absolute;
  top: 32px;
  right: -60px;
  width: 220px;
  text-align: center;
  background: linear-gradient(135deg, #cc0000 0%, #ff0000 100%);
  color: #fff;
  font-weight: 800;
  padding: 8px 0;
  transform: rotate(45deg);
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
  z-index: 10;
  text-transform: uppercase;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Typography Overrides for Premium Card */
.pricing-card.annual h3 {
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 5px;
}

.pricing-card.annual .price {
  font-size: 1.8rem;
  /* Reduced to 1.8rem */
  color: #111;
  margin-bottom: 5px;
}

.pricing-card.annual .plan-description {
  color: #556;
  font-weight: 500;
}

/* Promo Box (Pink Highlight) */
.promo-box {
  background: #ffe4e4;
  /* Light Pink */
  color: #b91c1c;
  /* Dark Red text */
  padding: 15px;
  border-radius: 6px;
  margin: 15px 0 25px;
  font-size: 0.95rem;
  border-left: 4px solid #ef4444;
  /* Red accent line */
}

.promo-box strong {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #991b1b;
}

.promo-timer {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #dc2626;
  font-weight: 600;
}

/* Button Gradient for Premium Card */
.pricing-card.annual .btn-primary {
  background: linear-gradient(180deg, #ff6b00 0%, #ea580c 100%);
  border: none;
  font-size: 1.1rem;
  padding: 14px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
}

.pricing-card.annual .btn-primary:hover {
  background: linear-gradient(180deg, #ea580c 0%, #c2410c 100%);
  transform: translateY(-2px);
}

/* Pricing Features */
.plan-features {
  list-style: none;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.plan-features li {
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.check-icon {
  color: var(--secondary);
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
}

/* Payment Section */
.payment-section {
  padding: 60px 0;
  text-align: center;
}

.payment-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fcfcfc;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid #eee;
}

.payment-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.payment-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-headers);
}

.review-header {
  display: block;
  /* No longer need flex for side-by-side since icon is gone */
  margin-bottom: 15px;
}

/* .avatar-icon removed */

.reviewer-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.grid-payments {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: white;
}

.icon-circle.orange {
  border-color: #ff6b00;
  color: #ff6b00;
}

.icon-circle.blue {
  border-color: #2563eb;
  color: #2563eb;
}

.icon-circle.green {
  border-color: #25d366;
  color: #25d366;
}

.payment-method span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-headers);
}

/* CTA Banner */
.cta-section {
  padding: 0 0 80px 0;
}

.cta-banner {
  background: var(--blue-gradient);
  border-radius: var(--radius-lg);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Footer */
.site-footer {
  background: var(--bg-dark-footer);
  color: #cccccc;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  color: white;
  margin-bottom: 20px;
}

.footer-links h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--secondary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  font-size: 2rem;
  transition: transform 0.3s;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ef4444;
  /* Red notification color */
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-btns {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    /* Fill screen to prevent gaps */
    background: white;
    padding: 20px 20px 100px;
    /* Extra padding at bottom */
    border-top: 1px solid #f0f0f0;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    z-index: 998;
    overflow-y: auto;
    /* Allow scrolling if needed */
  }

  .nav-btns.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 450px;
    /* Keep position to clear Ayuda */
    left: 0;
    width: 100%;
    background: transparent;
    /* Blend with links background */
    padding: 0 20px 30px;
    align-items: center;
    gap: 15px;
    z-index: 999;
    box-shadow: none;
    /* Remove shadow to look seamless */
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-headers);
    background: transparent;
    border: none;
    padding: 5px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: background 0.2s;
  }

  .mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  .mobile-menu-btn.open {
    color: var(--primary);
  }

  /* Fix for header layout to ensure logo and btn are space-between */
  .nav-container {
    padding: 0 15px;
    /* Ensure padding on small screens */
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 40px auto;
  }

  .grid-payments {
    gap: 20px;
  }

  /* Center Top Bar on Mobile */
  .top-bar-content {
    justify-content: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }
}

/* =========================================
   NEW STYLES: Reviews Page & Pricing Header
   ========================================= */

/* Reviews Page Styles */
.legal-hero {
  background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
  margin-top: 0;
  /* Since nav is sticky */
}

.legal-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.breadcrumbs {
  color: #9ca3af;
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin-right: 5px;
}

.breadcrumbs a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.review-card {
  background: white;
  padding: 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: #ffc107;
  /* Gold */
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
}

.location-icon {
  margin-right: 4px;
}

/* Pricing Header Banner Component */
.pricing-header-container {
  text-align: center;
  margin-bottom: 40px;
  background: white;
  border-radius: 12px;
  padding: 40px 20px;
  /* Optional: subtle border if needed matching image context */
  /* border: 1px solid #eee; */
}

.pricing-title-main {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text-headers);
}

.pricing-subtitle {
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1rem;
}

/* The Orange/Red Flash Banner */
.pricing-flash-banner {
  background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
  border-radius: 10px;
  padding: 25px;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
  position: relative;
  overflow: hidden;
}

.pricing-flash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pricing-flash-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-flash-note {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.pricing-timer-box {
  display: flex;
  gap: 15px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-digits {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px 12px;
  font-family: monospace;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  min-width: 60px;
  text-align: center;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.timer-label {
  font-size: 0.7rem;
  margin-top: 5px;
  text-transform: uppercase;
  opacity: 0.8;
  letter-spacing: 1px;
}

/* Legal Content Pages */
.legal-content {
  padding: 60px 0;
  max-width: 900px;
  /* Readability */
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--text-headers);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-headers);
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-headers);
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--text-main);
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}


/* Installation Guides Accordion */
.guides-intro {
  margin-bottom: 40px;
  color: var(--text-main);
  text-align: center;
}

.guide-accordion {
  margin-bottom: 20px;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.accordion-header {
  width: 100%;
  padding: 20px 25px;
  background: white;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-headers);
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #fcfcfc;
}

.accordion-header.active {
  background: #fff5eb;
  /* Light orange tint */
  color: var(--primary);
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.icon-device {
  margin-right: 15px;
  font-size: 1.5rem;
  vertical-align: middle;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: #aaa;
}

.accordion-header.active .accordion-icon {
  color: var(--primary);
  font-weight: 700;
}

.accordion-content {
  display: none;
  /* Hidden by default */
  padding: 30px;
  background: white;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.guide-steps h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-headers);
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.guide-steps ol {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.guide-steps li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 50px;
  color: var(--text-main);
}

.guide-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: -2px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Review Form */
.review-form-container {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  /* Soft wide shadow */
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #eee;
}

.review-form-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-headers);
  font-size: 1.8rem;
}

.review-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .review-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* Wider gap on desktop */
  }
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-headers);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
  background: #fdfdfd;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  background: white;
}

.rating-input {
  display: flex;
  gap: 5px;
  margin-top: 5px;
  cursor: pointer;
}

.star-input {
  font-size: 2rem;
  color: #ddd;
  /* Inactive color */
  transition: color 0.2s;
  cursor: pointer;
}

.star-input.active,
.star-input:hover {
  color: #ffc107;
  /* Gold */
}

/* Hover effect: light up previous stars too */
.rating-input:hover .star-input {
  color: #ddd;
}

.star-input:hover,
.star-input:hover~.star-input {
  color: #ddd;
}

.rating-input .star-input:hover,
.rating-input .star-input:has(~ .star-input:hover) {
  color: #ffc107;
}


.btn-submit-review {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 20px;
  cursor: pointer;
  background-color: var(--primary);
  color: white;
  border: none;
  transition: transform 0.2s, background-color 0.2s;
}

.btn-submit-review:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.review-success-message {
  display: none;
  /* Hidden by default */
  text-align: center;
  padding: 40px;
  background: #f0fdf4;
  /* Light green bg */
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  border: 1px solid #10b981;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 15px;
  display: block;
}

.success-title {
  font-size: 1.8rem;
  color: #065f46;
  font-weight: 800;
  margin-bottom: 10px;
}

.success-text {
  color: #047857;
  font-size: 1.1rem;

}

/* DYNAMIC DEVICES SLIDER Styles */
/* DYNAMIC DEVICES SLIDER Styles */
.devices-slider-section {
  padding: 25px 0;
  background: var(--primary);
  /* Orange background as requested */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  width: max-content;
  /* Allow track to fit all icons */
  animation: scroll 30s linear infinite;
  /* Slightly faster for many icons */
}

.slide-item {
  width: auto;
  /* Natural icon width */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  /* Reduced gap between icons */
}

.slide-item img {
  height: 35px;
  /* Consistent height matching reference */
  width: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
  /* Ensure icons are white */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Scroll exactly half (one full set) */
  }
}

/* Mobile Adjustments for Slider */
@media (max-width: 768px) {
  .devices-slider-section {
    padding: 20px 0;
  }

  .slide-item {
    width: auto;
    padding: 0 5px;
    /* Very tight spacing for mobile to show more icons */
  }

  .slide-item img {
    height: 24px;
    /* Compact icons */
  }
}

/* Testimonial Section Styles */
.testimonial-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  /* Or white depending on index context */
  text-align: center;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-headers);
  margin-bottom: 10px;
}

.testimonial-header p {
  color: var(--text-main);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-user {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.user-avatar {
  background-color: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 15px;
}

.user-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-headers);
}

.user-info span {
  font-size: 0.9rem;
  color: #888;
}

.stars {
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
}

.testimonial-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.btn-read-reviews {
  color: var(--primary);
  border: 2px solid var(--primary);
  background: transparent;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-read-reviews:hover {
  background: var(--primary);
  color: white;
}

.cta-join-text {
  margin-top: 30px;
  color: var(--text-main);
  margin-bottom: 20px;
}

/* Contact Section Styles */
.contact-section-new {
  padding: 80px 0;
  background-color: white;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-headers);
}

.contact-header p {
  color: var(--text-main);
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contact-info-box {
  background: #fff;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.info-item p {
  color: var(--text-main);
  margin-bottom: 5px;
  margin-left: 34px;
  /* Align with text not icon */
}

.info-item a {
  color: var(--text-headers);
  text-decoration: none;
  font-weight: 600;
}

.hours-box {
  background: #f9fafb;
  padding: 25px;
  border-radius: 12px;
  margin-top: 40px;
}

.hours-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-headers);
}

.hours-box p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--text-main);
  border-bottom: 1px dashed #eee;
  padding-bottom: 5px;
}

.contact-form-box {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.contact-form-box h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-headers);
}

.btn-whatsapp-submit {
  background-color: #ff6b00;
  /* Orange matching theme */
  color: white;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
  display: block;
  text-align: center;
  text-decoration: none;
}

.btn-whatsapp-submit:hover {
  background-color: #e65100;
}

/* CHRISTMAS FLASH PROMO BANNER 2.0 - Refined */
.christmas-flash-banner {
  background: linear-gradient(135deg, #4a0404 0%, #8a1c1c 100%);
  border-radius: 20px;
  padding: 25px 20px;
  max-width: 800px;
  margin: 30px auto 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(138, 28, 28, 0.4), inset 0 0 0 1px rgba(255, 215, 0, 0.3);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  animation: pulse-border 3s infinite alternate;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 15px 40px rgba(138, 28, 28, 0.4), inset 0 0 0 1px rgba(255, 215, 0, 0.3);
  }

  100% {
    box-shadow: 0 15px 50px rgba(138, 28, 28, 0.6), inset 0 0 0 3px rgba(255, 215, 0, 0.6);
  }
}

/* Circuit/Tech Pattern Overlay (Squares Removed) */
.christmas-flash-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Snow Overlay - Improved */
.snow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(3px 3px at 20px 30px, rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0)),
    radial-gradient(3px 3px at 40px 70px, rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0)),
    radial-gradient(4px 4px at 50px 160px, rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0)),
    radial-gradient(3px 3px at 90px 40px, rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0)),
    radial-gradient(3px 3px at 130px 80px, rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: snowFall 8s linear infinite;
  opacity: 0.7;
  pointer-events: none;
  z-index: 2;
}

@keyframes snowFall {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(200px);
  }
}

.xmas-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.xmas-title {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(to right, #ffffff, #ffcccc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.xmas-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 5px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-family: 'Inter', sans-serif;
}

.xmas-highlight {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 5px 0 15px;
  background: linear-gradient(90deg, #00ffff, #00ffaa, #00ffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.xmas-highlight .check {
  background: none;
  -webkit-text-fill-color: #aaff00;
  /* Lime Check */
  color: #aaff00;
  font-size: 2.2rem;
  filter: drop-shadow(0 0 5px rgba(170, 255, 0, 0.8));
}

.xmas-timer-display {
  font-family: 'Courier New', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: #ccff00;
  /* Vibrant Lime */
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 10px;
  align-items: center;
  text-shadow: 0 0 20px rgba(204, 255, 0, 0.8);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.xmas-timer-display span {
  display: inline-block;
  min-width: 50px;
  text-align: center;
}

@media (max-width: 768px) {
  .christmas-flash-banner {
    padding: 20px 15px;
  }

  .xmas-title {
    font-size: 1.1rem;
  }

  .xmas-subtitle {
    font-size: 1rem;
  }

  .xmas-highlight {
    font-size: 2rem;
  }

  .xmas-timer-display {
    font-size: 2rem;
    padding: 8px 12px;
    gap: 4px;
  }

  .xmas-timer-display span {
    min-width: 35px;
  }
}

/* FAQ Accordion Styles */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: white;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  flex: 1;
  padding-right: 15px;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.3s ease;
}

/* Rotate icon when active */
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background: white;
  color: #666;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}


/* Unmatched Performance Section */
.unmatched-performance {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%);
  /* Orange background */
  padding: 80px 0;
  color: white;
}

.unmatched-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.unmatched-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.unmatched-header p {
  font-size: 1.15rem;
  opacity: 0.95;
  line-height: 1.6;
}

.performance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 900px) {
  .performance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-full {
    grid-column: 1 / -1;
  }
}

.performance-card {
  background: white;
  /* White cards for contrast on orange */
  border-radius: 12px;
  padding: 40px;
  color: #333;
  /* Dark text on white card */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease;
}

.performance-card:hover {
  transform: translateY(-5px);
}

.p-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.p-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff5eb;
  /* Light orange tint */
  color: var(--primary);
  flex-shrink: 0;
}

.p-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.p-card-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  color: #111;
  line-height: 1.3;
}

.performance-card p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* Specific Highlight Colors inside text */
.highlight-orange {
  color: #e65100;
  font-weight: 700;
}