/* ==========================================================================
   Piwtv IPTV Website - Master Mobile-First Stylesheet (piwtv.store)
   ========================================================================== */

:root {
  --primary-navy: #172B4D;
  --secondary-navy: #0F172A;
  --accent-amber: #f59e0b;
  --accent-amber-dark: #d97706;
  --accent-blue: #0066FF;
  --accent-blue-dark: #0044CC;
  --accent-green: #25D366;
  --bg-white: #FFFFFF;
  --bg-soft-gray: #F5F7F9;
  --text-dark: #17202A;
  --text-muted: #5E6C84;
  --text-light: #F4F5F7;
  --border-color: #E2E8F0;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   0. Global Reset & Mobile Overflow Prevention Rules
   -------------------------------------------------------------------------- */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
  box-sizing: border-box;
}

section {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  padding: 60px 20px;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-navy);
  margin-top: 0;
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: break-word;
}

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

/* --------------------------------------------------------------------------
   1. Buttons & Typography
   -------------------------------------------------------------------------- */
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--primary-navy);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  word-break: break-word;
  box-sizing: border-box;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
  background-color: var(--bg-soft-gray);
  color: var(--primary-navy);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: #E2E8F0;
  color: var(--secondary-navy);
}

.btn-amber {
  background: linear-gradient(135deg, var(--accent-amber) 0%, var(--accent-amber-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* --------------------------------------------------------------------------
   2. Header & Navigation Structure
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary-navy);
}

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

.header__nav {
  display: flex;
  align-items: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.header__nav-item a:hover,
.header__nav-item a.active {
  color: var(--accent-blue);
  background-color: var(--bg-soft-gray);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__toggle-bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--primary-navy);
  border-radius: 2px;
  transition: var(--transition);
}

.header__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background-color: var(--primary-navy);
  color: #ffffff;
  z-index: 1000;
  padding: 80px 24px 30px 24px;
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.header__mobile-menu.active {
  right: 0;
}

.header__mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header__mobile-nav-item a {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.header__mobile-nav-item a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-amber);
}

@media (max-width: 991px) {
  .header__nav {
    display: none;
  }
  .header__toggle {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   3. HERO SECTION & HOT PLAYER UI PREVIEW
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  padding: 60px 16px 40px 16px;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
}

.hero__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero__content {
  flex: 1;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero__urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(245, 158, 11, 0.12);
  color: #d97706;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero__title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--primary-navy);
  margin-bottom: 18px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero__slogan-box {
  background-color: #EFF6FF;
  border-left: 4px solid var(--accent-blue);
  padding: 12px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 25px;
  font-weight: 600;
  color: var(--primary-navy);
  font-size: 0.95rem;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.hero__trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #166534;
  font-weight: 600;
}

/* HOT PLAYER UI STYLING */
.hero__preview {
  flex: 1;
  max-width: 100%;
}

.tv-content {
  background: linear-gradient(135deg, #090e17 0%, #121d33 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

.tv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.tv-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tv-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-amber);
  font-size: 1.2rem;
}

.tv-logo-icon {
  width: 28px;
  height: 28px;
  fill: var(--accent-amber);
}

.tv-version {
  font-size: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  color: #94a3b8;
}

.tv-sub-status {
  display: flex;
  align-items: center;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
}

.status-active {
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.status-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.status-expire {
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tv-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.tv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tv-card.active, .tv-card:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--accent-amber);
  transform: translateY(-3px);
}

.tv-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-card-icon svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.tv-card-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.tv-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f1f5f9;
}

.tv-footer {
  display: flex;
  justify-content: flex-end;
}

.tv-icon-group {
  display: flex;
  gap: 10px;
}

.tv-icon-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.tv-icon-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 16px 30px 16px;
  }
  .hero__container {
    flex-direction: column;
    text-align: center;
  }
  .hero__title {
    font-size: 1.9rem;
  }
  .hero__ctas {
    justify-content: center;
  }
  .hero__trust-badge {
    justify-content: center;
  }
  .tv-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   4. NON-STOP SEAMLESS INFINITE CAROUSEL SYSTEM
   -------------------------------------------------------------------------- */
.carousel-section {
  padding: 45px 0;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
}

.carousel-section--dark {
  background-color: var(--secondary-navy);
  color: #ffffff;
}

.carousel-section--dark .section-title {
  color: #ffffff;
}

.carousel-section--dark .section-subtitle {
  color: #94a3b8;
}

.carousel-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
  animation: infiniteCarouselScroll 35s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

/* Seamless 50% shift calculation for infinite loops with zero gaps */
@keyframes infiniteCarouselScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-50% - 7px), 0, 0);
  }
}

/* CAROUSEL ITEM STYLING: Tight spacing, creamy soft background & borders */
.carousel-item {
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
  box-sizing: border-box;
}

.carousel-section--dark .carousel-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-amber);
}

/* ASPECT RATIOS AS PER PROMPT RULES */
.carousel--logos .carousel-item img {
  width: 140px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 8px;
  background: rgba(255, 255, 255, 0.95);
}

.carousel--movies .carousel-item {
  width: 160px;
}

.carousel--movies .carousel-item img {
  width: 100%;
  aspect-ratio: 1 / 1.482;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.carousel--devices .carousel-item {
  width: 170px;
}

.carousel--devices .carousel-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.carousel--sport .carousel-item {
  width: 190px;
}

.carousel--sport .carousel-item img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.carousel--wtsp .carousel-item {
  width: 210px;
}

.carousel--wtsp .carousel-item img {
  width: 100%;
  aspect-ratio: 473 / 1024;
  object-fit: contain;
  background: #f8fafc;
  border-radius: var(--radius-md);
}

/* --------------------------------------------------------------------------
   5. COMPARES TABLE SECTION
   -------------------------------------------------------------------------- */
.compares-section {
  background-color: var(--bg-soft-gray);
}

.compares-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: #ffffff;
  border: 1px solid var(--border-color);
}

.compares-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.compares-table th, .compares-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
}

.compares-table th {
  background-color: var(--primary-navy);
  color: #ffffff;
  font-size: 1.05rem;
}

.compares-table .highlight-col {
  background-color: rgba(0, 102, 255, 0.04);
  font-weight: 700;
  color: var(--accent-blue);
}

.compares-table td.check-yes {
  color: #166534;
  font-weight: 700;
}

.compares-table td.check-no {
  color: #dc2626;
}

/* --------------------------------------------------------------------------
   6. PRICING SECTION
   -------------------------------------------------------------------------- */
.pricing-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7F9 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
  border-color: var(--accent-amber);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-amber) 0%, var(--accent-amber-dark) 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
}

.pricing-features li.disabled {
  color: #94a3b8;
  text-decoration: line-through;
}

.pricing-horizontal {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-payment-methods {
  text-align: center;
  margin: 30px auto;
  max-width: 531px;
}

.pricing-payment-methods img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  padding: 4px;
  background: #ffffff;
}

.multi-screen-header {
  text-align: center;
  margin: 50px 0 25px 0;
}

.multi-screen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .pricing-grid, .multi-screen-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   7. 3-STEP ACTIVATION SECTION
   -------------------------------------------------------------------------- */
.activation-section {
  background-color: var(--bg-soft-gray);
}

.activation-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.activation-card {
  flex: 1;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  text-align: center;
}

.activation-step {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 102, 255, 0.15);
  margin-bottom: 10px;
}

.activation-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.activation-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .activation-grid {
    flex-direction: column;
  }
}

/* --------------------------------------------------------------------------
   8. REVIEWS SECTION
   -------------------------------------------------------------------------- */
.reviews-section {
  background: #ffffff;
}

.reviews-summary {
  text-align: center;
  margin-bottom: 35px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-navy);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-soft-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user-info h4 {
  margin: 0;
  font-size: 1rem;
}

.review-user-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  background: #DCFCE7;
  color: #15803D;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.review-stars {
  color: #f59e0b;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.93rem;
  color: var(--text-dark);
  line-height: 1.5;
}

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

/* --------------------------------------------------------------------------
   9. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-section {
  background: var(--bg-soft-gray);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

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

/* --------------------------------------------------------------------------
   10. FOOTER (3 Columns - Mobile Collapse)
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 60px 0 30px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer__col h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer__col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent-amber);
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: #cbd5e1;
  font-size: 0.92rem;
}

.footer__links a:hover {
  color: var(--accent-amber);
  padding-left: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

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