/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #1B2A3B;
  --color-accent: #F5C518;
  --color-badge: #6B4EFF;
  --color-bg-card: #F0F4F8;
  --color-bg-beige: #F5F0E8;
  --color-text-muted: #888888;
  --color-white: #ffffff;
  --color-black: #000000;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-primary);
  line-height: 1.6;
  background-color: var(--color-white);
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

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

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-ghost:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-yellow:hover {
  background-color: #e5b517;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 768px) {
  .header-inner {
    height: 80px;
  }
}

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

.logo-title {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .logo-title {
    font-size: 1.25rem;
  }
}

.logo-subtitle {
  font-size: 0.625rem;
  color: #9ca3af;
}

@media (min-width: 768px) {
  .logo-subtitle {
    font-size: 0.75rem;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  color: #d1d5db;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.phone-link:hover {
  color: #d1d5db;
}

@media (min-width: 640px) {
  .phone-link {
    display: flex;
  }
}

.phone-icon {
  display: flex;
  padding: 0.5rem;
  border-radius: 9999px;
  transition: background-color 0.3s;
}

.phone-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header-social {
  display: none;
  padding: 0.5rem;
  border-radius: 9999px;
  transition: background-color 0.3s;
  color: var(--color-white);
}

.header-social:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .header-social {
    display: flex;
  }
}

@media (min-width: 640px) {
  .phone-icon {
    display: none;
  }
}

/* Phone Dropdown Mob */
.header-phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.phone-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 240px;
  /* Increased slightly */
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.phone-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.phone-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--color-primary);
  transition: background-color 0.2s;
  text-decoration: none;
}

.phone-dropdown-item:hover {
  background-color: #f3f4f6;
}

.phone-dropdown-item svg {
  color: var(--color-accent);
}

.phone-dropdown-tg {
  background-color: #24A1DE;
  color: white !important;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  /* Scaled down for one line */
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.phone-dropdown-tg:hover {
  background-color: #2094cd;
}

.phone-dropdown-tg svg {
  width: 16px;
  height: 16px;
  color: white !important;
  flex-shrink: 0;
}

.menu-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: 9999px;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 0.3s;
}

.menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background-color: var(--color-primary);
  z-index: 40;
  padding: 1.5rem;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  color: #d1d5db;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: var(--color-white);
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  color: #d1d5db;
  padding: 1rem 0;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 2rem 0 3rem;
  background-color: var(--color-white);
}

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

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

.hero-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-offer {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

@media (min-width: 768px) {
  .hero-offer {
    font-size: 1.25rem;
  }
}

.hero-slider {
  position: relative;
}

.slider-container {
  position: relative;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .slider-container {
    height: 500px;
  }
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.slider-slide.active {
  opacity: 1;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
  z-index: 10;
}

@media (min-width: 768px) {
  .slider-btn {
    width: 48px;
    height: 48px;
  }
}

.slider-btn:hover {
  background-color: var(--color-white);
}

.slider-btn-prev {
  left: 0.5rem;
}

.slider-btn-next {
  right: 0.5rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background-color: var(--color-primary);
  width: 24px;
}

/* Hero Bottom Cards */
.hero-bottom {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.hero-card {
  background-color: var(--color-bg-card);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hero-card-number {
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}

.hero-card-text {
  color: #374151;
  font-weight: 500;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

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

.section-overline {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

/* ===== WHY US SECTION ===== */
.why-us {
  background-color: var(--color-white);
}

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

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

.why-card {
  background-color: var(--color-bg-card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

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

.why-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.why-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg {
  width: 30px;
  height: 30px;
  color: var(--color-white);
}

.why-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.why-text {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ===== LOCATIONS SECTION ===== */
.locations {
  background-color: var(--color-bg-beige);
}

.locations-intro {
  color: #4b5563;
  margin-bottom: 1rem;
  max-width: 48rem;
}

.locations-intro strong {
  color: var(--color-primary);
}

.locations-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

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

@media (min-width: 1024px) {
  .locations-title {
    font-size: 3rem;
  }
}

.locations-title-accent {
  color: var(--color-primary);
}

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

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

.location-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(5rem);
  transition: all 0.7s ease;
}

.location-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 42, 59, 0.8), rgba(27, 42, 59, 0.2), transparent);
}

.location-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .location-title {
    font-size: 1.125rem;
    padding: 1.5rem;
  }
}

/* ===== CATALOG SLIDER ===== */
.catalog {
  background-color: var(--color-white);
}

.catalog-slider {
  position: relative;
}

.catalog-slides {
  overflow: hidden;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .catalog-slides {
    padding: 0 3rem;
  }
}

.catalog-track {
  display: flex;
  transition: transform 0.5s ease;
}

.catalog-slide {
  width: 100%;
  flex-shrink: 0;
  padding: 0 1rem;
}

.catalog-card {
  background-color: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  max-width: 42rem;
  margin: 0 auto;
}

.catalog-image {
  height: 320px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .catalog-image {
    height: 450px;
  }
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.catalog-content {
  padding: 1.5rem;
  text-align: center;
}

.catalog-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .catalog-title {
    font-size: 1.75rem;
  }
}

.catalog-desc {
  color: #4b5563;
  margin-bottom: 1rem;
}

/* ===== SUPPORT SECTION ===== */
.support {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  text-align: center;
  /* Center content on mobile */
}

.support-content .btn-yellow {
  margin: 0 auto;
  /* Extra insurance for centering */
}

@media (min-width: 1024px) {
  .support-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
    /* Restore left align for desktop */
  }
}

.support-text {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .support-text {
    font-size: 1.25rem;
  }
}

.support-text-accent {
  color: var(--color-accent);
  font-weight: 600;
}

.support-list {
  list-style: none;
  margin-bottom: 2rem;
}

.support-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.support-check {
  width: 24px;
  height: 24px;
  background-color: var(--color-accent);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.support-check svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.support-icon {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  flex-shrink: 0;
}

.support-item-text {
  color: #d1d5db;
}

.video-frame {
  display: block;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

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

.video-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.video-frame:hover .video-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}

.video-play {
  width: 80px;
  height: 80px;
  background-color: var(--color-accent);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.video-frame:hover .video-play {
  transform: scale(1.1);
}

.video-play svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  margin-left: 4px;
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.video-title {
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.125rem;
}

.video-subtitle {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.5rem;
}

.video-link {
  color: #d1d5db;
  font-size: 0.875rem;
  text-decoration: underline;
}

.support-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.support-image img {
  max-height: 300px;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .support-image img {
    max-height: 400px;
  }
}

/* ===== STATS SECTION ===== */
.stats {
  background-color: var(--color-white);
  color: var(--color-primary);
}

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

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

@media (min-width: 1024px) {
  .stat-number {
    font-size: 3.75rem;
  }
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.stat-desc {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  background-color: var(--color-white);
}

.reviews-slider {
  position: relative;
}

.reviews-slides {
  overflow: hidden;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .reviews-slides {
    padding: 0 3rem;
  }
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-slide {
  width: 100%;
  flex-shrink: 0;
  padding: 0 0.75rem;
}

@media (min-width: 768px) {
  .review-slide {
    width: 33.333%;
  }
}

.review-card {
  background-color: var(--color-white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.review-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.review-image {
  aspect-ratio: 4/5;
  background-color: #f3f4f6;
}

@media (max-width: 767px) {
  .review-image {
    aspect-ratio: 3/4;
    max-height: 350px;
  }
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Case Study */
.case-study {
  margin-top: 4rem;
  background: linear-gradient(to right, var(--color-primary), #2d3f56);
  border-radius: 1rem;
  padding: 2rem;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .case-study {
    padding: 3rem;
  }
}

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

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

.case-image {
  aspect-ratio: 4/3;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .case-content {
    text-align: left;
  }
}

.case-overline {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.case-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .case-title {
    font-size: 1.875rem;
  }
}

.case-text {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

/* ===== PARTNERS SECTION ===== */
.partners {
  background-color: var(--color-bg-card);
}

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

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

.partners-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

.partners-text {
  color: #4b5563;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-white);
}

.benefit-title {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.benefit-text {
  font-size: 0.875rem;
  color: #4b5563;
}

.partners-image {
  display: none;
}

@media (min-width: 1024px) {
  .partners-image {
    display: block;
  }
}

.partners-image-inner {
  aspect-ratio: 1;
  background: linear-gradient(to bottom right, var(--color-primary), #2d3f56);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-image-icon {
  width: 96px;
  height: 96px;
  background-color: var(--color-accent);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-image-icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
}

/* ===== FAQ SECTION ===== */
.faq {
  background-color: var(--color-white);
}

.faq-list {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: #9ca3af;
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

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

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

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: #4b5563;
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-cta-text {
  color: #4b5563;
  margin-bottom: 1rem;
}

/* ===== CONTACT FORM ===== */
.contact {
  background-color: var(--color-primary);
  color: var(--color-white);
}

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

.contact-overline {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

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

.contact-subtitle {
  color: #d1d5db;
  font-size: 1.125rem;
}

.contact-form-wrapper {
  max-width: 48rem;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form-wrapper {
    padding: 2rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.form-input-wrapper {
  position: relative;
}

.form-input-wrapper svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #9ca3af;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-left: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #4b5563;
  border-radius: 0.75rem;
  color: var(--color-white);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input::placeholder {
  color: #6b7280;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-input.textarea {
  padding-left: 1rem;
  min-height: 100px;
  resize: vertical;
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #4b5563;
  border-radius: 0.75rem;
  color: var(--color-white);
  font-size: 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.5rem;
}

.form-select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-select option {
  background-color: var(--color-primary);
}

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 0;
  accent-color: var(--color-accent);
}

.form-checkbox span {
  font-size: 0.625rem;
  /* 10px */
  color: #9ca3af;
  white-space: nowrap;
}

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

.form-error {
  background-color: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  border-radius: 0.75rem;
  padding: 1rem;
  color: #fca5a5;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.form-success {
  text-align: center;
  padding: 3rem 0;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background-color: #22c55e;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-white);
}

.form-success-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-success-text {
  color: #d1d5db;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.footer-logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.footer-logo-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

.footer-text {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.3s;
}

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

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.footer-contact:hover {
  color: white;
}

.footer-contact svg,
.footer-contact img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  filter: none !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--color-white);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

/* ===== PRODUCT PAGE ===== */
.product-page {
  padding: 2rem 0 4rem;
}

.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb svg {
  width: 16px;
  height: 16px;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

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

.product-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .product-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .product-title {
    font-size: 3rem;
  }
}

.product-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .product-subtitle {
    font-size: 1.5rem;
  }
}

.product-desc {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .product-price {
    font-size: 1.875rem;
  }
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .product-actions {
    flex-direction: row;
  }
}

.product-image {
  aspect-ratio: 1;
  background: transparent;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  max-height: 220px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .product-image {
    max-height: 280px;
  }
}

@media (min-width: 768px) {
  .product-image {
    padding: 1.5rem;
    max-height: 350px;
  }
}

@media (min-width: 1024px) {
  .product-image {
    padding: 2rem;
    max-height: 450px;
  }
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Features Section */
.features-section {
  background-color: var(--color-bg-card);
  padding: 4rem 0;
  margin-bottom: 4rem;
}

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

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

.feature-card {
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.feature-title {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.feature-text {
  font-size: 0.875rem;
  color: #4b5563;
}

/* Tariffs Section */
.tariffs-section {
  padding-bottom: 4rem;
}

.tariff-card {
  background-color: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 3rem;
}

.tariff-grid {
  display: grid;
  grid-template-columns: 1fr;
}

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

.tariff-image {
  height: 480px;
  /* Increased 3x (from 160px) for mobile */
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .tariff-image {
    height: 200px;
  }
}

@media (min-width: 768px) {
  .tariff-image {
    height: 280px;
    padding: 1rem;
  }
}

@media (min-width: 1024px) {
  .tariff-image {
    height: 380px;
  }
}

.tariff-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.tariff-content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .tariff-content {
    padding: 2rem;
  }
}

.tariff-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .tariff-name {
    font-size: 1.875rem;
  }
}

.tariff-desc {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.tariff-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.tariff-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #374151;
  margin-bottom: 0.5rem;
}

.tariff-list li::before {
  content: '•';
  color: var(--color-accent);
  font-weight: 700;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--color-white);
  border-radius: 1rem;
  max-width: 56rem;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  /* Allow whole content to scroll on mobile */
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr;
  flex: 1;
  min-height: 0;
}

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

.modal-image {
  height: 480px;
  /* Increased for mobile (approx 3x) */
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .modal-image {
    height: 200px;
  }
}

@media (min-width: 768px) {
  .modal-image {
    height: auto;
    padding: 1.5rem;
  }
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.modal-form {
  padding: 1.5rem;
  position: relative;
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background-color: #f3f4f6;
  border: none;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.modal-close:hover {
  background-color: #e5e7eb;
}

.modal-close svg {
  width: 20px;
  height: 20px;
  color: #4b5563;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  padding-right: 3rem;
}

@media (min-width: 768px) {
  .modal-title {
    font-size: 1.5rem;
  }
}

.modal-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.modal-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.modal-input::placeholder {
  color: #9ca3af;
}

.modal-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}

.modal-label span {
  color: #ef4444;
}

.modal-hint {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.modal-checkboxes {
  margin-bottom: 1rem;
}

.modal-checkboxes-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.modal-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.modal-checkbox input {
  width: 16px;
  height: 16px;
}

.modal-checkbox label {
  font-size: 0.875rem;
  color: #374151;
}

.modal-submit {
  width: 100%;
  background-color: #0088cc;
  color: var(--color-white);
  font-weight: 700;
  padding: 1rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 1rem;
}

.modal-submit:hover {
  background-color: #0077b3;
}

.modal-terms {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}

.modal-terms a {
  color: #0088cc;
  text-decoration: underline;
}

.modal-consent {
  margin-bottom: 1.5rem;
}

.modal-consent-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  /* Reduced for mobile */
  font-size: 0.625rem;
  /* 10px */
  color: #6b7280;
  margin-bottom: 0.5rem;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  /* Forced single line */
}

.modal-consent-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 0;
  flex-shrink: 0;
}

.modal-consent-item a {
  color: #0088cc;
  text-decoration: underline;
}

.modal-success {
  text-align: center;
  padding: 2rem 0;
}

.modal-success-icon {
  width: 64px;
  height: 64px;
  background-color: #22c55e;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.modal-success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-white);
}

.modal-success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.modal-success-text {
  color: #6b7280;
}

/* ===== 404 PAGE ===== */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.page-404-content {
  text-align: center;
  max-width: 42rem;
}

.page-404-number {
  font-size: 6rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-404-number {
    font-size: 9rem;
  }
}

.page-404-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-404-title {
    font-size: 1.875rem;
  }
}

.page-404-text {
  color: #4b5563;
  margin-bottom: 2rem;
}

.page-404-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .page-404-actions {
    flex-direction: row;
  }
}

.page-404-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.page-404-links a {
  padding: 0.5rem 1rem;
  background-color: var(--color-bg-card);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--color-primary);
  transition: all 0.3s;
}

.page-404-links a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* ===== PRIVACY & DATA PAGES ===== */
.legal-page {
  padding: 4rem 0;
  background-color: var(--color-white);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  margin-bottom: 2rem;
  transition: color 0.3s;
}

.legal-back:hover {
  color: var(--color-primary);
}

.legal-back svg {
  width: 16px;
  height: 16px;
}

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

.legal-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-primary);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.legal-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-white);
}

.legal-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

.legal-date {
  color: #6b7280;
  font-size: 0.875rem;
}

.legal-content {
  max-width: 56rem;
  margin: 0 auto;
  color: #4b5563;
  line-height: 1.7;
}

.legal-content section {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  font-weight: 600;
  color: var(--color-primary);
}

/* Mobile Button Centering */
@media (max-width: 768px) {
  .tariff-content .btn-primary {
    width: 100%;
    max-width: 320px;
    margin: 1rem auto 0;
    display: block;
  }

  .contact-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
  }

  .contact-form-wrapper .btn-yellow,
  .contact-form-wrapper .btn-ghost {
    width: 100%;
    max-width: 320px;
    margin: 0 !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    /* Consistent height */
    padding: 0 32px;
    /* Uniform horizontal padding */
  }
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* Case block button styling */
#modalCase .modal-submit,
.btn-case {
  background-color: #fcd34d !important;
  /* Yellow */
  color: #1f2937 !important;
  /* Dark text */
  font-weight: 700;
}

#modalCase .modal-submit:hover,
.btn-case:hover {
  background-color: #fbbf24 !important;
}

/* Branded buttons for all popups */
.modal-submit {
  background-color: var(--color-primary);
  color: var(--color-white);
  transition: all 0.3s ease;
}

.modal-submit:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Mobile Optimizations */
@media (max-width: 768px) {

  /* Center Hero, but keep Partners left-aligned for readability */
  .hero-content {
    text-align: center;
  }

  .partners-content {
    text-align: left;
  }

  .hero-content .btn-primary,
  .faq-cta .btn-primary,
  .contact-form-wrapper .modal-submit {
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 320px;
  }

  /* Keep partners button left-aligned as part of readability fix */
  .partners-content .btn-primary {
    margin-left: 0;
    margin-right: auto;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 320px;
  }

  /* Center product images on mobile first screens */
  .product-hero .product-hero-image.product-image {
    display: flex;
    justify-content: center;
    margin: 0 auto 2rem;
    height: 400px;
    max-height: none;
    aspect-ratio: auto;
    align-items: center;
    width: 100%;
    padding: 0;
    background: transparent;
  }

  .product-hero-image img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  /* Form optimization on home page */
  #contactForm {
    gap: 1rem !important;
  }

  #contactForm .form-group {
    margin-bottom: 0.75rem;
  }

  .modal-checkbox span {
    font-size: 0.625rem;
    /* 10px */
    white-space: nowrap;
  }

  .modal-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .form-row .form-group {
    margin-bottom: 0;
  }
}
/* User Request: Make modal images smaller */
.modal-image img, .modal-product-image img, .modal-product picture img, .popup-main-img { max-height: 250px !important; object-fit: contain !important; margin: 0 auto; display: block; }
