/* ===========================

   SMARTPLANAI - CSS

   Responsive Design (Mobile-First)

   Spalvos: Žalia ir Balta

   =========================== */

/* ===========================

   CSS KINTAMIEJI

   =========================== */

:root {
  /* Spalvos */

  --green-primary: #4a7c59;

  --green-hover: #3d6b4a;

  --green-light: #e8f5e9;

  --white: #ffffff;

  --black: #000000;

  --gray-50: #f9fafb;

  --gray-100: #f3f4f6;

  --gray-200: #e5e7eb;

  --gray-300: #d1d5db;

  --gray-400: #9ca3af;

  --gray-500: #6b7280;

  --gray-600: #4b5563;

  --gray-700: #374151;

  --gray-800: #1f2937;

  --gray-900: #111827;

  /* Šešėliai */

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);

  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);

  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  /* Perėjimai */

  --transition: 0.3s ease;

  /* Border radius */

  --radius-sm: 4px;

  --radius-md: 8px;

  --radius-lg: 12px;

  --radius-xl: 20px;

  /* Layout offsets */

  --header-height: 80px;

  --header-height-scrolled: 64px;

  --header-height-current: 80px;

  --promo-height-current: 0px;
}

/* ===========================

   RESET

   =========================== */

*,
*::before,
*::after {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;

  background: var(--white);

  color: var(--gray-800);

  line-height: 1.6;

  overflow-x: hidden;
}

img {
  max-width: 100%;

  height: auto;

  display: block;
}

a {
  text-decoration: none;

  color: inherit;
}

main a:not(.btn) {
  text-decoration: underline;

  text-underline-offset: 3px;

  text-decoration-thickness: 1px;
}

.footer a,
.cookie-consent a {
  text-decoration: underline;

  text-underline-offset: 3px;

  text-decoration-thickness: 1px;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;

  cursor: pointer;

  border: none;

  background: none;
}

input,
select,
textarea {
  font-family: inherit;

  font-size: inherit;
}

.sr-only {
  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}

/* ===========================

   CONTAINER

   =========================== */

.container {
  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 1rem;
}

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

/* ===========================

   MYGTUKAI

   =========================== */

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  padding: 0.875rem 1.5rem;

  font-size: 0.95rem;

  font-weight: 600;

  border-radius: var(--radius-md);

  transition: all var(--transition);

  white-space: nowrap;
}

.btn-primary {
  background: var(--green-primary);

  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-hover);

  transform: translateY(-2px);

  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);

  color: var(--green-primary);

  border: 2px solid var(--green-primary);
}

.btn-secondary:hover {
  background: var(--green-light);
}

.btn-outline {
  background: transparent;

  color: var(--green-primary);

  border: 2px solid var(--green-primary);
}

.btn-outline:hover {
  background: var(--green-primary);

  color: var(--white);
}

/* ===========================

   LOADING SCREEN

   =========================== */

.loading-screen {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: var(--white);

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 99999;

  transition:
    opacity 0.5s,
    visibility 0.5s;
}

.loading-screen.hidden {
  opacity: 0;

  visibility: hidden;
}

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

.loading-icon img {
  width: auto;

  max-width: 180px;

  height: 65px;

  object-fit: contain;

  margin: 0 auto 1.5rem;

  animation: elegantPulse 2.5s ease-in-out infinite;
}

.loading-text {
  font-size: 1.8rem;

  font-weight: 800;

  color: var(--green-primary);

  margin-bottom: 0.25rem;

  letter-spacing: 2px;
}

.loading-subtitle {
  color: var(--gray-600);

  margin-bottom: 2rem;

  font-size: 0.9rem;

  text-transform: uppercase;

  letter-spacing: 1.5px;
}

@media (max-width: 767px) {
  .loading-screen {
    display: none;
  }
}

.loading-bar {
  width: 150px;

  height: 3px;

  background: var(--gray-100);

  border-radius: 10px;

  overflow: hidden;

  margin: 0 auto;
}

.loading-progress {
  height: 100%;

  background: linear-gradient(90deg, var(--green-primary), #00b894);

  animation: loading 2.5s ease-in-out infinite;
}

@keyframes elegantPulse {
  0%,
  100% {
    transform: scale(1);

    opacity: 0.85;
  }

  50% {
    transform: scale(1.05);

    opacity: 1;
  }
}

@keyframes loading {
  0% {
    width: 0;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

/* ===========================

   HEADER

   =========================== */

.header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  background: var(--white);

  box-shadow: var(--shadow-sm);

  z-index: 1000;

  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  height: var(--header-height);

  transition: height 0.3s ease;
}

.header.scrolled .navbar {
  height: var(--header-height-scrolled);
}

.nav-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  height: 100%;

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 1rem;

  position: relative;
}

@media (max-width: 767px) {
  .nav-container {
    justify-content: center;
  }

  .hamburger {
    position: absolute;

    right: 1rem;

    top: 50%;

    transform: translateY(-50%);
  }
}

.logo {
  display: flex;

  justify-content: center;

  align-items: center;
}

.logo img {
  height: 50px;

  width: auto;

  transition: height 0.3s ease;
}

.header.scrolled .logo img {
  height: 40px;
}

.nav-menu {
  display: none;

  position: fixed;

  top: var(--header-height-current);

  left: 0;

  width: 100%;

  background: var(--white);

  padding: 1rem;

  box-shadow: var(--shadow-lg);

  flex-direction: column;

  gap: 0;

  transition: top 0.3s ease;

  align-items: center;
}

.nav-menu.active {
  display: flex;
}

.nav-menu li {
  width: 100%;

  max-width: 300px;

  text-align: center;
}

.nav-menu li a {
  display: block;

  padding: 1rem;

  color: var(--gray-700);

  font-weight: 500;

  border-radius: var(--radius-md);

  transition: all var(--transition);

  text-align: center;
}

.nav-menu li a:hover {
  background: var(--green-light);

  color: var(--green-primary);
}

.hamburger {
  display: flex;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;

  padding: 0.5rem;
}

.hamburger span {
  width: 25px;

  height: 3px;

  background: var(--gray-700);

  border-radius: 2px;

  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop nav */

@media (min-width: 992px) {
  .nav-menu {
    display: flex;

    position: static;

    flex-direction: row;

    width: auto;

    padding: 0;

    box-shadow: none;

    gap: 0.5rem;

    align-items: center;
  }

  .nav-menu li {
    width: auto;

    max-width: none;

    text-align: left;
  }

  .nav-menu li a {
    padding: 0.5rem 1rem;

    text-align: left;
  }

  .hamburger {
    display: none;
  }
}

/* ===========================

   PROMO BANNER

   =========================== */

.promo-banner {
  position: sticky;

  top: 0;

  left: 0;

  right: 0;

  width: 100%;

  z-index: 999;

  background: var(--white);

  box-shadow: var(--shadow-md);

  border-bottom: 2px solid var(--green-primary);

  height: auto;

  transition: height 0.3s ease;
}

.promo-banner.hidden {
  display: none;
}

/* Mobile header adjustments */

@media (max-width: 767px) {
  :root {
    --header-height: 64px;

    --header-height-scrolled: 56px;

    --header-height-current: 64px;
  }
}

.promo-banner-content {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 1rem;

  padding: 0.75rem 4rem 0.75rem 1.5rem;

  position: relative;
}

.promo-badge {
  display: flex;

  align-items: center;

  gap: 0.5rem;

  background: var(--green-primary);

  padding: 0.5rem 1rem;

  border-radius: var(--radius-lg);

  color: var(--white);

  font-weight: 700;

  font-size: 0.85rem;

  white-space: nowrap;

  flex-shrink: 0; /* Prevent badge from shrinking */
}

.promo-badge i {
  font-size: 1rem;

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.promo-info {
  flex: 1;

  display: flex;

  align-items: center;

  gap: 1rem;

  color: var(--gray-800);

  min-width: 0; /* Allow flex item to shrink */
}

.promo-info h3 {
  font-size: 1rem;

  font-weight: 600;

  margin: 0;

  color: var(--gray-800);
}

.promo-price {
  font-size: 1.1rem;

  font-weight: 700;

  margin: 0;

  color: var(--green-primary);
}

.promo-price span {
  font-size: 0.85rem;

  font-weight: 500;

  color: var(--gray-600);
}

.promo-action {
  display: flex;

  align-items: center;

  flex-shrink: 0; /* Prevent button from shrinking */
}

.promo-action .btn {
  padding: 0.625rem 1.5rem;

  font-size: 0.9rem;

  white-space: nowrap;

  background: var(--green-primary);

  color: var(--white);

  border: none;

  font-weight: 600;
}

.promo-action .btn:hover {
  background: var(--green-hover);

  transform: translateY(-2px);

  box-shadow: var(--shadow-md);
}

.promo-close {
  position: absolute;

  right: 1rem;

  top: 50%;

  transform: translateY(-50%);

  background: var(--gray-200);

  border: none;

  color: var(--gray-700);

  width: 28px;

  height: 28px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: all var(--transition);

  font-size: 0.85rem;
}

.promo-close:hover {
  background: var(--gray-300);

  transform: translateY(-50%) scale(1.1);

  color: var(--gray-900);
}

/* Mobile Promo Banner */

@media (max-width: 767px) {
  .logo img {
    height: 36px;
  }

  .header.scrolled .logo img {
    height: 30px;
  }

  .promo-banner-content {
    flex-direction: row;

    align-items: flex-start;

    justify-content: flex-start;

    gap: 0.5rem;

    padding: 0.45rem 2.25rem 0.45rem 0.75rem;

    flex-wrap: nowrap;
  }

  .promo-badge {
    padding: 0.4rem 0.75rem;

    font-size: 0.75rem;

    align-self: center;
  }

  .promo-info {
    flex-direction: column;

    align-items: flex-start;

    gap: 0.2rem;

    flex: 1;

    min-width: 0;
  }

  .promo-info h3 {
    font-size: 0.85rem;

    line-height: 1.2;

    white-space: normal;

    max-width: none;
  }

  .promo-price {
    font-size: 1rem;

    display: inline-flex;

    align-items: baseline;

    gap: 0.35rem;

    white-space: nowrap;
  }

  .promo-action {
    width: auto;

    align-self: center;
  }

  .promo-action .btn {
    width: auto;

    justify-content: center;

    padding: 0.5rem 0.9rem;

    font-size: 0.8rem;
  }

  .promo-close {
    right: 0.4rem;

    width: 22px;

    height: 22px;

    font-size: 0.7rem;
  }
}

/* ===========================

   HERO

   =========================== */

.hero {
  padding: 120px 0 4rem;

  background-color: #eef7ee;

  background-image:
    linear-gradient(
      90deg,
      rgba(238, 247, 238, 0.98) 0%,
      rgba(238, 247, 238, 0.94) 45%,
      rgba(238, 247, 238, 0.55) 70%,
      rgba(238, 247, 238, 0.2) 100%
    ),
    url("../images/hero/background.webp");

  background-size: cover;

  background-position: center right;

  background-repeat: no-repeat;

  /* Šviesiai žalia spalva iš nuotraukos */

  min-height: 600px;

  display: flex;

  align-items: center;

  position: relative;

  margin-top: var(--header-height-current);
}

@media (max-width: 767px) {
  .hero {
    background-image:
      linear-gradient(
        180deg,
        rgba(238, 247, 238, 0.9) 0%,
        rgba(238, 247, 238, 0.75) 40%,
        rgba(238, 247, 238, 0.5) 70%,
        rgba(238, 247, 238, 0.3) 100%
      ),
      url("../images/hero/background.webp");

    background-position: center top;

    background-size: cover;

    padding: 80px 0 2rem;

    min-height: auto;

    margin-top: var(--header-height-current);
  }

  .hero-visual {
    margin-top: 1rem;
  }

  .hero-plan {
    max-width: 280px;
  }

  .hero-plan .plan-card {
    padding: 1rem;
  }

  .hero-plan .plan-card .plan-header h3 {
    font-size: 1rem;
  }

  .hero-plan .plan-card .price {
    font-size: 1.3rem;
  }
}

.hero-content {
  display: flex;

  flex-direction: column;

  gap: 2rem;

  width: 100%;

  position: relative;

  z-index: 2;
}

.hero-text {
  text-align: center;

  color: var(--gray-800);

  text-shadow: none;
}

.hero-text .subtitle {
  color: var(--green-primary);

  font-weight: 600;

  font-size: 0.85rem;

  letter-spacing: 1px;

  margin-bottom: 1.25rem;

  text-transform: uppercase;

  text-shadow: none;
}

.hero-text h1 {
  font-size: 2.25rem;

  font-weight: 700;

  color: var(--gray-900);

  margin-bottom: 1.5rem;

  line-height: 1.2;

  text-shadow: none;
}

.hero-text > p {
  color: var(--gray-700);

  margin-bottom: 2rem;

  font-size: 1.1rem;

  max-width: 600px;

  margin-left: auto;

  margin-right: auto;

  text-shadow: none;
}

.hero-buttons {
  display: flex;

  flex-direction: column;

  gap: 1rem;

  margin-bottom: 2.5rem;

  justify-content: center;
}

.hero-features {
  display: grid;

  grid-template-columns: 1fr;

  gap: 1rem;

  margin-bottom: 2rem;

  text-align: left;

  max-width: 500px;

  margin-left: auto;

  margin-right: auto;
}

.feature-item {
  display: flex;

  align-items: center;

  gap: 0.75rem;

  color: var(--gray-700);

  font-size: 0.95rem;

  text-shadow: none;
}

.feature-item i {
  color: var(--green-primary);

  font-size: 1.1rem;
}

.hero-scroll-indicator {
  position: absolute;

  bottom: 2rem;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.5rem;

  color: var(--gray-500);

  font-size: 0.85rem;

  animation: bounce 2s infinite;

  text-shadow: none;
}

.hero-visual {
  display: flex;

  justify-content: center;

  align-items: center;

  width: 100%;

  margin: 0 auto;
}

.hero-plan {
  width: 100%;

  max-width: 340px;

  margin: 0 auto;
}

.hero-plan .plan-card {
  margin: 0;
}

/* Desktop hero */

@media (min-width: 768px) {
  .hero {
    padding: 100px 0 5rem;

    margin-top: 0;
  }

  .hero-content {
    flex-direction: row;

    align-items: center;

    gap: 2.5rem;
  }

  .hero-text {
    flex: 1;

    text-align: left;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text > p {
    margin-left: 0;

    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: row;

    justify-content: flex-start;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);

    max-width: none;

    margin-left: 0;
  }

  .hero-visual {
    flex: 0 0 300px;

    max-width: 300px;

    margin: 0;

    justify-content: flex-end;
  }

  .hero-plan {
    max-width: 300px;

    margin: 0;
  }
}

@media (min-width: 1200px) {
  .hero-text h1 {
    font-size: 4rem;
  }

  .hero-visual {
    flex: 0 0 280px;

    max-width: 280px;
  }

  .hero-plan {
    max-width: 280px;
  }

  .hero-content {
    gap: 3rem;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 10px);
  }
}

/* ===========================

   PLAN CARD

   =========================== */

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: visible;
}

.plan-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--shadow-xl);
}

.plan-card.featured {
  border-color: var(--green-primary);

  box-shadow: var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-primary);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  z-index: 2;
}

.plan-badge-sale {
  background: #dc3545;
}

.plan-header {
  text-align: center;

  margin-bottom: 1.5rem;

  padding-top: 0.5rem;
}

.plan-header .plan-icon {
  width: 50px;

  height: 50px;

  background: var(--green-light);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 1rem;

  color: var(--green-primary);

  font-size: 1.25rem;
}

.plan-header h3 {
  font-size: 1.1rem;

  color: var(--gray-800);

  margin-bottom: 0.5rem;
}

.plan-header p {
  color: var(--gray-500);

  font-size: 0.9rem;
}

.price {
  font-size: 2rem;

  font-weight: 700;

  color: var(--green-primary);
}

.price span {
  font-size: 0.9rem;

  font-weight: 400;

  color: var(--gray-500);
}

.plan-features {
  margin-bottom: 1.5rem;
}

.plan-features li {
  display: flex;

  align-items: flex-start;

  gap: 0.75rem;

  padding: 0.5rem 0;

  color: var(--gray-700);

  font-size: 0.9rem;

  border-bottom: 1px solid var(--gray-100);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i {
  color: var(--green-primary);

  margin-top: 0.2rem;
}

.plan-card .btn {
  width: 100%;
}

/* ===========================

   SECTION STILIAI

   =========================== */

section {
  padding: 3rem 0;
}

.smart-plans-benefits,
.services,
.plans,
.store,
.home-internet,
.television,
.duk,
.contact,
.partners,
.google-reviews {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section-subtitle {
  color: var(--green-primary);

  font-weight: 600;

  font-size: 0.85rem;

  letter-spacing: 1px;

  text-align: center;

  margin-bottom: 0.5rem;
}

section h2 {
  font-size: 1.75rem;

  font-weight: 700;

  color: var(--gray-900);

  text-align: center;

  margin-bottom: 1rem;
}

.section-description {
  color: var(--gray-600);

  text-align: center;

  max-width: 600px;

  margin: 0 auto 2rem;
}

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

  section h2 {
    font-size: 2.25rem;
  }
}

/* ===========================
   GOOGLE REVIEWS
   =========================== */
.google-reviews {
  background:
    radial-gradient(
      circle at top left,
      rgba(74, 124, 89, 0.12),
      transparent 35%
    ),
    linear-gradient(180deg, #f8fcf8 0%, #ffffff 100%);
}

.google-reviews-header {
  text-align: center;
  margin-bottom: 2rem;
}

.google-reviews-summary {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(74, 124, 89, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.google-reviews-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--gray-900);
}

.google-reviews-brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}

.google-reviews-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #fbbc05;
  font-size: 1.05rem;
}

.google-reviews-stars strong {
  color: var(--gray-900);
  margin-right: 0.35rem;
}

.google-reviews-meta {
  margin: 0;
  color: var(--gray-600);
}

.google-reviews-slider {
  overflow: hidden;
  position: relative;
}

.google-reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: googleReviewsScroll 32s linear infinite;
}

.google-review-card {
  width: min(320px, calc(100vw - 3rem));
  min-height: 220px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(74, 124, 89, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.google-review-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.google-review-avatar {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-primary);
  font-size: 1.1rem;
  font-weight: 800;
}

.google-review-card-top h3 {
  margin: 0;
  color: var(--gray-900);
  font-size: 1rem;
}

.google-review-card-top p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.85rem;
}

.google-review-card-stars {
  display: inline-flex;
  gap: 0.25rem;
  color: #fbbc05;
}

.google-review-card-text {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.7;
}

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

@keyframes googleReviewsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 0.625rem));
  }
}

@media (max-width: 767px) {
  .google-reviews-summary {
    border-radius: var(--radius-xl);
  }

  .google-review-card {
    width: min(280px, calc(100vw - 3rem));
    min-height: 240px;
  }
}

/* ===========================
   PARTNERS
   =========================== */
.partners {
  background: var(--gray-50);
}

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

.partners-title {
  font-size: 1.75rem;

  margin-bottom: 0.5rem;
}

.partners-description {
  color: var(--gray-600);

  margin-bottom: 2rem;
}

.partners-slider {
  overflow: hidden;

  position: relative;

  padding: 1rem 0;
}

.partners-track {
  display: flex;

  gap: 3rem;

  animation: scroll 30s linear infinite;
}

.partner-logo {
  flex: 0 0 120px;

  height: 60px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.partner-logo img {
  max-width: 100%;

  max-height: 100%;

  object-fit: contain;

  filter: grayscale(100%);

  opacity: 0.7;

  transition: all var(--transition);
}

.partner-logo img:hover {
  filter: grayscale(0%);

  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===========================

   BENEFITS

   =========================== */

.smart-plans-benefits {
  background: var(--white);
}

.benefits-grid {
  display: grid;

  grid-template-columns: 1fr;

  gap: 1.5rem;
}

.benefit-card {
  background: var(--white);

  border-radius: var(--radius-lg);

  padding: 2rem 1.5rem;

  text-align: center;

  box-shadow: var(--shadow-md);

  border: 1px solid var(--gray-100);

  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--shadow-xl);
}

.benefit-icon-wrapper {
  width: 70px;

  height: 70px;

  background: var(--green-light);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 1.5rem;

  color: var(--green-primary);

  font-size: 1.75rem;
}

.benefit-card h3 {
  font-size: 1.1rem;

  color: var(--gray-800);

  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--gray-600);

  font-size: 0.95rem;
}

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

    gap: 2rem;
  }
}

/* ===========================

   SERVICES

   =========================== */

.services {
  background: var(--gray-50);
}

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

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

.service-summary-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.service-summary-card strong {
  display: block;
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.service-summary-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);

  padding: 2rem 1.5rem;

  box-shadow: var(--shadow-md);

  transition: all var(--transition);

  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--shadow-xl);
}

.icon-wrapper {
  width: 60px;

  height: 60px;

  background: var(--green-light);

  border-radius: var(--radius-md);

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 1.5rem;

  color: var(--green-primary);

  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.2rem;

  color: var(--gray-800);

  margin-bottom: 0.75rem;

  text-align: center;
}

.service-card > p {
  color: var(--gray-600);

  margin-bottom: 1rem;

  font-size: 0.95rem;

  text-align: center;
}

.service-features {
  display: flex;

  flex-direction: column;

  gap: 0.5rem;

  align-items: flex-start;

  max-width: fit-content;

  margin: 0 auto;
}

.service-features li {
  display: flex;

  align-items: center;

  gap: 0.5rem;

  color: var(--gray-700);

  font-size: 0.9rem;

  text-align: left;
}

.service-features li i {
  color: var(--green-primary);
  font-size: 0.85rem;
}

.services-cta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.services-cta p {
  max-width: 680px;
  margin: 0;
  color: var(--gray-600);
}

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

/* ===========================

   PLANS GRID

   =========================== */

.plans-grid,
.home-internet-plans,
.television-plans {
  display: grid;

  grid-template-columns: 1fr;

  gap: 1.5rem;
}

@media (min-width: 576px) {
  .plans-grid,
  .home-internet-plans,
  .television-plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;
  }

  .home-internet-plans,
  .television-plans {
    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;
  }
}

/* ===========================
   STORE
   =========================== */
.store {
  background: var(--gray-50);
}

.store-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.store-results {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
}

.store-toolbar-note {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.store-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.store-card:hover,
.store-card.active {
  transform: translateY(-4px);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-lg);
}

.store-card:focus-visible {
  outline: 3px solid rgba(74, 124, 89, 0.2);
  outline-offset: 2px;
}

.store-card-media {
  position: relative;
  background: linear-gradient(180deg, #f8fbf8 0%, #eef5ef 100%);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.store-card-media img {
  width: 100%;
  max-width: 260px;
  max-height: 180px;
  object-fit: contain;
}

.store-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 1;
}

.store-card-badge-sale {
  background: #fee2e2;
  color: #b91c1c;
}

.store-card-badge-popular,
.store-card-badge-new,
.store-card-badge-default {
  background: var(--green-light);
  color: var(--green-primary);
}

.store-card-body {
  padding: 1rem;
}

.store-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
}

.store-card-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--gray-600);
}

.store-card-body h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.store-card-short {
  color: var(--gray-600);
  font-size: 0.92rem;
  min-height: 44px;
}

.store-card-footer {
  margin-top: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.store-card-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.store-card-compare {
  color: var(--gray-400);
  text-decoration: line-through;
  font-size: 0.82rem;
}

.store-card-pricing strong {
  color: var(--green-primary);
  font-size: 1.2rem;
  line-height: 1;
}

.store-product-panel {
  margin-top: 0.5rem;
}

.store-details {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;

  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 1.5rem;
}

.store-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.store-main-image {
  background: var(--gray-50);

  border: 1px solid var(--gray-200);

  border-radius: var(--radius-md);

  padding: 1rem;

  min-height: 240px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.store-main-image img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.store-thumbs {
  display: flex;

  flex-wrap: wrap;

  gap: 0.5rem;
}

.store-thumb {
  width: 58px;

  height: 58px;

  border: 1px solid var(--gray-200);

  border-radius: var(--radius-sm);

  background: var(--white);

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 0.25rem;

  cursor: pointer;

  transition: all var(--transition);
}

.store-thumb img {
  max-width: 100%;

  max-height: 100%;

  object-fit: contain;
}

.store-thumb.active {
  border-color: var(--green-primary);
}

.store-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.store-detail-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.store-badge {
  align-self: flex-start;
  background: var(--green-light);
  color: var(--green-primary);

  padding: 0.35rem 0.75rem;

  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.store-detail-meta {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.store-short {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.store-description {
  color: var(--gray-700);
  font-size: 0.95rem;
}

.store-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.store-price-stack {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.store-compare-price {
  color: var(--gray-400);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.store-main-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-primary);
}

.store-stock-chip {
  padding: 0.5rem 0.8rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-700);
}

.store-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.store-meta-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);

  padding: 0.5rem 0.75rem;

  min-width: 120px;
}

.store-meta-label {
  display: block;

  font-size: 0.75rem;

  color: var(--gray-500);
}

.store-meta-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
}

.store-specs-block {
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
}

.store-specs-block h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--gray-900);
}

.store-specs-list {
  display: grid;
  gap: 0.55rem;
  padding-left: 1rem;
  color: var(--gray-700);
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 1100px) {
  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-details {
    grid-template-columns: 1fr;
  }

  .store-meta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .store-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-grid {
    grid-template-columns: 1fr;
  }

  .store-card-footer,
  .store-price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-meta-grid {
    grid-template-columns: 1fr;
  }

  .store-actions .btn {
    width: 100%;
  }

  .store-details {
    padding: 1rem;
  }
}

/* ===========================
   HOME INTERNET
   =========================== */
.home-internet {
  background: var(--gray-50);
}

/* ===========================

   SPEED TEST

   =========================== */

/* ===========================

   TELEVISION

   =========================== */

.television {
  background: var(--gray-50);
}

/* ===========================

   FAQ (DUK)

   =========================== */

.duk {
  background: var(--white);

  padding: 4rem 0;
}

.faq-header {
  text-align: center;

  margin-bottom: 3rem;
}

.faq-search-wrapper {
  max-width: 600px;

  margin: 0 auto 3rem;
}

.faq-search-box {
  position: relative;

  display: flex;

  align-items: center;
}

.faq-search-box i {
  position: absolute;

  left: 1rem;

  color: var(--gray-400);
}

.faq-search-box input {
  width: 100%;

  padding: 1rem 3.5rem 1rem 3rem;

  border: 2px solid var(--gray-200);

  border-radius: var(--radius-lg);

  font-size: 1rem;

  transition: all var(--transition);

  background: var(--white);
}

.faq-search-box input:focus {
  outline: none;

  border-color: var(--green-primary);

  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);

  background: var(--white);
}

.faq-search-box input::placeholder {
  color: var(--gray-400);
}

.faq-search-clear {
  position: absolute;

  right: 1rem;

  background: none;

  color: var(--gray-400);

  font-size: 1rem;

  padding: 0.5rem;
}

.faq-search-clear:hover {
  color: var(--gray-600);
}

.faq-results-info {
  text-align: center;

  color: var(--gray-500);

  font-size: 0.9rem;

  margin-top: 0.75rem;
}

.faq-container {
  max-width: 800px;

  margin: 0 auto;
}

.faq-item {
  background: var(--white);

  border: 2px solid var(--gray-200);

  border-radius: var(--radius-lg);

  margin-bottom: 1rem;

  overflow: hidden;

  transition: all var(--transition);

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  border-color: var(--gray-300);

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.faq-item.hidden {
  display: none;
}

.faq-item.highlight {
  border-color: var(--green-primary);

  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.15);
}

.faq-item.active {
  border-color: var(--green-primary);

  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.15);
}

.faq-question {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 1.5rem;

  cursor: pointer;

  transition: all var(--transition);

  user-select: none;

  width: 100%;

  background: none;

  border: none;

  text-align: left;

  font-family: inherit;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(74, 124, 89, 0.35);

  outline-offset: 2px;
}

.faq-item.active .faq-question {
  background: var(--green-light);
}

.faq-question h3 {
  font-size: 1.1rem;

  font-weight: 600;

  color: var(--gray-800);

  text-align: left;

  flex: 1;

  padding-right: 1.5rem;

  margin: 0;

  line-height: 1.4;
}

.faq-item.active .faq-question h3 {
  color: var(--green-primary);
}

.faq-question i {
  color: var(--green-primary);

  transition: transform 0.3s ease;

  font-size: 0.9rem;

  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.4s ease,
    padding 0.3s ease;

  background: var(--white);
}

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;

  color: var(--gray-600);

  line-height: 1.8;

  margin: 0;

  font-size: 0.95rem;
}

/* Responsive: Mobile */

@media (max-width: 767px) {
  .duk {
    padding: 3rem 0;
  }

  .faq-header {
    margin-bottom: 2rem;
  }

  .faq-search-wrapper {
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 1.25rem;
  }

  .faq-question h3 {
    font-size: 1rem;

    padding-right: 1rem;
  }

  .faq-answer p {
    padding: 0 1.25rem 1.25rem;

    font-size: 0.9rem;
  }

  .faq-item {
    margin-bottom: 0.75rem;
  }
}

/* Responsive: Tablet and Desktop */

@media (min-width: 768px) {
  .faq-container {
    max-width: 900px;
  }

  .faq-item {
    margin-bottom: 1.25rem;
  }
}

/* ===========================

   CONTACT

   =========================== */

.contact {
  background: var(--gray-50);

  padding: 3rem 0;
}

.contact-header {
  text-align: center;

  margin-bottom: 3rem;
}

.contact-header .section-subtitle {
  margin-bottom: 0.5rem;
}

.contact-header h2 {
  margin-bottom: 1rem;
}

.contact-header .section-description {
  margin-bottom: 0;
}

.contact-content {
  display: grid;

  grid-template-columns: 1fr;

  gap: 2rem;

  max-width: 1000px;

  margin: 0 auto;
}

.contact-info {
  display: flex;

  flex-direction: column;

  gap: 1rem;

  max-width: 500px;
}

.contact-item {
  display: flex;

  gap: 1rem;

  align-items: flex-start;

  background: var(--white);

  padding: 1.25rem;

  border-radius: var(--radius-lg);

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

  border: 1px solid var(--gray-100);
}

.contact-icon-wrapper {
  width: 48px;

  height: 48px;

  background: var(--green-light);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--green-primary);

  font-size: 1.2rem;

  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-details h3 {
  font-size: 1rem;

  font-weight: 700;

  color: #000;

  margin-bottom: 0.5rem;

  line-height: 1.3;
}

.contact-details p {
  color: var(--gray-600);

  font-size: 0.9rem;

  margin: 0;

  line-height: 1.6;
}

.contact-details a {
  color: var(--gray-600);

  text-decoration: none;

  transition: all var(--transition);

  display: inline-block;
}

.contact-details a:hover {
  color: var(--green-primary);

  text-decoration: underline;
}

.contact-form-wrapper {
  background: var(--white);

  padding: 1.5rem;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-md);
}

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

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  display: block;

  font-weight: 500;

  color: var(--gray-700);

  margin-bottom: 0.4rem;

  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 0.75rem;

  border: 2px solid var(--gray-200);

  border-radius: var(--radius-md);

  transition: all var(--transition);

  font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;

  border-color: var(--green-primary);

  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group textarea {
  resize: vertical;

  min-height: 100px;
}

/* Responsive: Mobile */

@media (max-width: 767px) {
  .contact {
    padding: 2rem 0;
  }

  .contact-header {
    margin-bottom: 1.5rem;
  }

  .contact-info {
    max-width: 100%;
  }

  .contact-item {
    padding: 1rem;

    gap: 0.875rem;
  }

  .contact-icon-wrapper {
    width: 44px;

    height: 44px;

    font-size: 1.1rem;
  }

  .contact-form-wrapper {
    padding: 1.25rem;
  }

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

/* Responsive: Tablet and Desktop */

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1.2fr;

    gap: 2.5rem;

    align-items: flex-start;
  }

  .contact-info {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .contact-content {
    gap: 3rem;
  }
}

/* ===========================

   FOOTER

   =========================== */

.footer {
  background: var(--green-primary);

  color: var(--white);

  padding: 2rem 0;
}

.footer-content-wrapper {
  display: flex;

  flex-direction: column;

  gap: 1rem;

  text-align: center;
}

.footer-social {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.75rem;
}

.footer-social a {
  width: 36px;

  height: 36px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.18);

  color: #ffffff;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  transition: all var(--transition);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.3);

  transform: translateY(-1px);
}

.footer-content-wrapper p {
  font-size: 0.9rem;

  opacity: 0.9;
}

.author-name {
  font-weight: 600;
}

@media (min-width: 768px) {
  .footer-content-wrapper {
    flex-direction: row;

    justify-content: space-between;

    text-align: left;

    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ===========================

   COOKIE CONSENT

   =========================== */

.cookie-consent {
  position: fixed !important;

  bottom: 20px !important;

  left: 20px !important;

  right: 20px !important;

  width: auto !important;

  max-width: 600px !important;

  margin: 0 auto !important;

  background: #ffffff !important;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;

  z-index: 999999 !important;

  padding: 1.25rem !important;

  border-radius: 16px !important;

  transform: translateY(150%) !important;

  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;

  visibility: hidden !important;
}

.cookie-consent.active {
  transform: translateY(0) !important;

  visibility: visible !important;
}

.cookie-content {
  display: flex !important;

  flex-direction: column !important;

  align-items: center !important;

  gap: 1.25rem !important;

  text-align: center !important;
}

.cookie-text {
  display: flex !important;

  align-items: center !important;

  gap: 1rem !important;

  text-align: left !important;
}

.cookie-text i {
  font-size: 1.75rem !important;

  color: var(--green-primary) !important;

  flex-shrink: 0 !important;
}

.cookie-text p {
  font-size: 0.95rem !important;

  color: var(--gray-700) !important;

  line-height: 1.5 !important;

  margin: 0 !important;
}

.cookie-text a {
  color: var(--green-primary) !important;

  text-decoration: underline !important;

  font-weight: 600 !important;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row !important;

    justify-content: space-between !important;

    text-align: left !important;
  }

  .cookie-text {
    max-width: 75% !important;
  }
}

/* ===========================

   MODALS

   =========================== */

.modal {
  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  z-index: 10000;
}

.modal.active {
  display: flex;

  align-items: center;

  justify-content: center;
}

.modal-overlay {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.5);

  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;

  background: var(--white);

  border-radius: var(--radius-lg);

  padding: 2rem;

  max-width: 500px;

  width: 90%;

  max-height: 90vh;

  overflow-y: auto;

  z-index: 1;
}

.modal-header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 1.5rem;
}

.modal-header h2 {
  font-size: 1.25rem;

  text-align: left;

  margin: 0;
}

.modal-close {
  width: 40px;

  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: var(--gray-500);

  font-size: 1.25rem;

  transition: all var(--transition);
}

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

  color: var(--gray-700);
}

.request-form p {
  color: var(--gray-600);

  line-height: 1.7;
}

/* ===========================

   MOBILE MODAL (Request Form)

   =========================== */

.mobile-modal {
  display: none;

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  z-index: 10000;

  overflow-y: auto;

  padding: 1rem;
}

.mobile-modal.active {
  display: flex;

  align-items: center;

  justify-content: center;
}

.mobile-modal-overlay {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.5);

  backdrop-filter: blur(4px);

  z-index: 1;
}

.mobile-modal-content {
  position: relative;

  background: var(--white);

  width: 100%;

  max-width: 600px;

  margin: auto;

  border-radius: var(--radius-lg);

  z-index: 2;

  animation: modalFadeIn 0.3s ease;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);

  overflow: hidden;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;

    transform: scale(0.9);
  }

  to {
    opacity: 1;

    transform: scale(1);
  }
}

.mobile-modal-handle {
  display: none;
}

.handle-bar {
  width: 40px;

  height: 4px;

  background: var(--gray-300);

  border-radius: 2px;
}

.mobile-modal-header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 1.5rem;

  border-bottom: 2px solid var(--gray-200);

  background: var(--gray-50);

  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.mobile-modal-header h2 {
  font-size: 1.5rem;

  margin: 0;

  text-align: left;

  color: var(--gray-900);

  font-weight: 700;
}

.mobile-modal-close {
  width: 36px;

  height: 36px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: var(--gray-600);

  font-size: 1.1rem;

  transition: all var(--transition);

  background: transparent;

  border: none;

  cursor: pointer;

  flex-shrink: 0;
}

.mobile-modal-close:hover {
  background: var(--gray-200);

  color: var(--gray-900);

  transform: rotate(90deg);
}

.mobile-modal-close:active {
  transform: rotate(90deg) scale(0.95);
}

.mobile-form-container {
  padding: 1.5rem;
}

.mobile-form-group {
  margin-bottom: 1rem;
  min-width: 0;
}

.floating-label-group {
  position: relative;
  display: block;
  width: 100%;
}

.floating-input,
.floating-select,
.floating-textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: var(--white);
  transition: all var(--transition);
}

.floating-textarea {
  inline-size: 100%;
  min-height: 140px;
  line-height: 1.5;
  resize: vertical;
  field-sizing: fixed;
}

.floating-input:focus,
.floating-select:focus,
.floating-textarea:focus {
  outline: none;

  border-color: var(--green-primary);

  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.floating-label {
  position: absolute;

  left: 3rem;

  top: 1rem;

  color: var(--gray-400);

  pointer-events: none;

  transition: all var(--transition);

  background: var(--white);

  padding: 0 0.25rem;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label,
.floating-select:focus ~ .floating-label,
.floating-select:valid ~ .floating-label,
.floating-textarea:focus ~ .floating-label,
.floating-textarea:not(:placeholder-shown) ~ .floating-label {
  top: -0.5rem;

  left: 0.75rem;

  font-size: 0.8rem;

  color: var(--green-primary);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--green-primary);
}

.request-helper-text {
  margin-top: 0.5rem;
  padding: 0 0.25rem;
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.5;
}

#selectedNumberOptionGroup.is-hidden {
  display: none;
}

.floating-select.locked,
.floating-select:disabled {
  background: var(--gray-100);
  color: var(--gray-700);
  cursor: not-allowed;
}

.mobile-form-actions {
  padding-top: 1rem;
}

.mobile-submit-btn {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  padding: 1rem;

  background: var(--green-primary);

  color: var(--white);

  border-radius: var(--radius-md);

  font-size: 1rem;

  font-weight: 600;

  transition: all var(--transition);
}

.mobile-submit-btn:hover {
  background: var(--green-hover);
}

.mobile-submit-btn:disabled {
  opacity: 0.7;

  cursor: not-allowed;
}

/* Desktop modal adjustments */

@media (min-width: 768px) {
  .mobile-modal.active {
    display: flex;

    align-items: center;

    justify-content: center;

    padding: 2rem;
  }

  .mobile-modal-content {
    width: 100%;

    max-width: 600px;

    margin: auto;

    border-radius: var(--radius-lg);

    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;

      transform: scale(0.95);
    }

    to {
      opacity: 1;

      transform: scale(1);
    }
  }

  .mobile-modal-handle {
    display: none;
  }

  .mobile-modal-header {
    padding: 2rem;
  }

  .mobile-modal-header h2 {
    font-size: 1.75rem;
  }

  .mobile-form-container {
    padding: 2rem;
  }

  .mobile-request-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1rem;
  }

  .mobile-form-group:first-child,
  .mobile-form-group:nth-child(6),
  .mobile-form-group:nth-child(7) {
    grid-column: 1 / -1;
  }

  .mobile-form-group-full {
    grid-column: 1 / -1;
  }

  .mobile-form-actions {
    grid-column: 1 / -1;
  }
}

/* ===========================

   NOTIFICATION

   =========================== */

.notification {
  position: fixed;

  top: 100px;

  right: 20px;

  background: var(--green-primary);

  color: var(--white);

  padding: 1rem 1.5rem;

  border-radius: var(--radius-md);

  box-shadow: var(--shadow-lg);

  z-index: 10001;

  max-width: 350px;

  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);

    opacity: 0;
  }

  to {
    transform: translateX(0);

    opacity: 1;
  }
}

/* ===========================

   SCROLL ANIMATIONS

   =========================== */

section,
.plan-card,
.service-card,
.benefit-card {
  opacity: 0;

  transform: translateY(20px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

section.visible,
.plan-card.visible,
.service-card.visible,
.benefit-card.visible {
  opacity: 1;

  transform: translateY(0);
}

/* Mobile: skip scroll animations — IntersectionObserver unreliable on iOS Safari */
@media (max-width: 767px) {
  section,
  .plan-card,
  .service-card,
  .benefit-card,
  .tutorial-card {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}

/* ===========================

   RESPONSIVE UTILITIES

   =========================== */

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ===========================

   ACCESSIBILITY

   =========================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--green-primary);

  outline-offset: 2px;
}

/* ===========================

   TUTORIALS SECTION

   =========================== */

.tutorials {
  background: var(--white);

  padding: 3rem 0;
}

main {
  padding-top: var(--header-height-current);
}

/* For home page with promo banner */

body.home main {
  padding-top: calc(var(--header-height-current));
}

/* Ensure consistent spacing for all pages */

body:not(.home) main {
  padding-top: var(--header-height-current);
}

.tutorials-header-hero {
  background: var(--gray-50);
  padding: 4rem 0 3rem;
  margin-top: 0;
}

.tutorials-header {
  text-align: center;

  margin-bottom: 2rem;
}

.tutorials-header h1 {
  font-size: 2rem;

  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .tutorials-header-hero {
    padding: 5rem 0 4rem;
  }

  .tutorials-header h1 {
    font-size: 2.5rem;
  }
}

.tutorial-categories {
  margin-bottom: 2rem;

  display: flex;

  justify-content: center;

  gap: 0.5rem;

  flex-wrap: wrap;
}

.tutorial-category-btn {
  padding: 0.625rem 1.25rem;

  border: 2px solid var(--gray-200);

  border-radius: var(--radius-lg);

  font-weight: 600;

  font-size: 0.9rem;

  transition: all var(--transition);

  color: var(--gray-600);

  background: var(--white);

  cursor: pointer;

  display: flex;

  align-items: center;

  gap: 0.5rem;
}

.tutorial-category-btn:hover {
  border-color: var(--green-primary);

  color: var(--green-primary);

  background: var(--green-light);
}

.tutorial-category-btn.active {
  background: var(--green-primary);

  border-color: var(--green-primary);

  color: var(--white);

  box-shadow: var(--shadow-md);
}

.tutorial-category-btn i {
  font-size: 0.9rem;
}

.tutorials-grid {
  display: grid;

  grid-template-columns: 1fr;

  gap: 1.5rem;

  max-width: 1200px;

  margin: 0 auto;
}

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

    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .tutorials-grid {
    gap: 2.5rem;
  }
}

.tutorial-card {
  background: var(--white);

  border-radius: var(--radius-lg);

  padding: 1.5rem;

  box-shadow: var(--shadow-md);

  border: 1px solid var(--gray-200);

  transition: all var(--transition);

  display: flex;

  flex-direction: column;

  opacity: 0;

  transform: translateY(20px);
}

.tutorial-card.visible {
  opacity: 1;

  transform: translateY(0);
}

.tutorial-card:hover {
  box-shadow: var(--shadow-lg);

  transform: translateY(-3px);

  border-color: var(--green-primary);
}

.tutorial-icon {
  width: 50px;

  height: 50px;

  background: var(--green-light);

  border-radius: var(--radius-md);

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 1rem;

  color: var(--green-primary);

  font-size: 1.25rem;

  flex-shrink: 0;
}

.tutorial-card h3 {
  font-size: 1.25rem;

  margin-bottom: 0.75rem;

  color: var(--gray-900);

  line-height: 1.3;
}

.tutorial-description {
  color: var(--gray-600);

  margin-bottom: 1.5rem;

  font-size: 0.9rem;

  line-height: 1.6;
}

.tutorial-steps {
  margin-bottom: 1.5rem;
}

.tutorial-step {
  display: flex;

  gap: 1rem;

  margin-bottom: 1.25rem;
}

.tutorial-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;

  width: 28px;

  height: 28px;

  background: var(--green-primary);

  color: var(--white);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 700;

  font-size: 0.9rem;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 0.95rem;

  margin-bottom: 0.4rem;

  color: var(--gray-800);

  font-weight: 600;

  line-height: 1.3;
}

.step-content p {
  font-size: 0.85rem;

  color: var(--gray-600);

  line-height: 1.5;

  margin: 0;
}

.tutorial-tips {
  margin-top: auto;

  background: var(--gray-50);

  padding: 1rem;

  border-radius: var(--radius-md);

  border-left: 4px solid var(--green-primary);
}

.tutorial-tips h4 {
  font-size: 0.9rem;

  margin-bottom: 0.75rem;

  display: flex;

  align-items: center;

  gap: 0.5rem;

  color: var(--green-primary);

  font-weight: 600;
}

.tutorial-tips ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.tutorial-tips li {
  font-size: 0.85rem;

  color: var(--gray-600);

  margin-bottom: 0.5rem;

  padding-left: 1.25rem;

  position: relative;

  line-height: 1.5;
}

.tutorial-tips li:last-child {
  margin-bottom: 0;
}

.tutorial-tips li::before {
  content: "•";

  color: var(--green-primary);

  position: absolute;

  left: 0;

  font-weight: bold;

  font-size: 1.2rem;
}

/* Mobile Optimizations */

@media (max-width: 767px) {
  .tutorials-header-hero {
    padding: 3rem 0 2rem;
    margin-top: 0;
  }

  .tutorials {
    padding: 2rem 0;
  }

  .tutorials-header {
    margin-bottom: 1.5rem;
  }

  .tutorials-header h1 {
    font-size: 1.75rem;
  }

  .tutorial-categories {
    margin-bottom: 1.5rem;

    gap: 0.4rem;
  }

  .tutorial-category-btn {
    padding: 0.5rem 1rem;

    font-size: 0.85rem;
  }

  .tutorial-category-btn span {
    display: none;
  }

  .tutorials-grid {
    gap: 1.25rem;
  }

  .tutorial-card {
    padding: 1.25rem;
  }

  .tutorial-icon {
    width: 44px;

    height: 44px;

    font-size: 1.1rem;

    margin-bottom: 0.875rem;
  }

  .tutorial-card h3 {
    font-size: 1.1rem;

    margin-bottom: 0.625rem;
  }

  .tutorial-description {
    font-size: 0.85rem;

    margin-bottom: 1.25rem;
  }

  .tutorial-steps {
    margin-bottom: 1.25rem;
  }

  .tutorial-step {
    gap: 0.875rem;

    margin-bottom: 1rem;
  }

  .step-number {
    width: 24px;

    height: 24px;

    font-size: 0.85rem;
  }

  .step-content h4 {
    font-size: 0.9rem;
  }

  .step-content p {
    font-size: 0.8rem;
  }

  .tutorial-tips {
    padding: 0.875rem;
  }

  .tutorial-tips h4 {
    font-size: 0.85rem;

    margin-bottom: 0.625rem;
  }

  .tutorial-tips li {
    font-size: 0.8rem;

    padding-left: 1rem;
  }
}

@media (min-width: 768px) {
  .tutorial-category-btn span {
    display: inline;
  }
}

/* ===========================

   PRIVACY POLICY SECTION

   =========================== */

.privacy-policy {
  padding: 3rem 0;
  background: var(--gray-50);
  margin-top: 0;
}

.privacy-content {
  background: var(--white);

  padding: 2rem;

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-md);

  max-width: 900px;

  margin: 0 auto;
}

@media (min-width: 768px) {
  .privacy-policy {
    padding: 4rem 0;
  }

  .privacy-content {
    padding: 3rem;
  }
}

.privacy-header {
  border-bottom: 2px solid var(--gray-200);

  padding-bottom: 1.5rem;

  margin-bottom: 2rem;

  text-align: center;
}

.privacy-header h1 {
  font-size: 2rem;

  margin-bottom: 0.75rem;
}

.privacy-updated {
  color: var(--gray-600);

  font-size: 0.9rem;

  margin-top: 0.5rem;
}

.privacy-header h1 {
  font-size: 2.5rem;

  margin-bottom: 1rem;

  color: var(--gray-900);
}

.privacy-updated {
  color: var(--gray-500);

  font-size: 0.95rem;
}

.privacy-body {
  line-height: 1.7;
}

.privacy-body h2 {
  font-size: 1.5rem;

  margin: 2rem 0 1rem;

  color: var(--gray-900);

  text-align: left;

  font-weight: 700;

  padding-top: 1rem;

  border-top: 1px solid var(--gray-200);
}

.privacy-body h2:first-of-type {
  border-top: none;

  padding-top: 0;

  margin-top: 0;
}

.privacy-body h3 {
  font-size: 1.15rem;

  margin: 1.5rem 0 0.75rem;

  color: var(--gray-800);

  font-weight: 600;
}

.privacy-body p {
  margin-bottom: 1rem;

  color: var(--gray-700);

  line-height: 1.8;

  font-size: 0.95rem;
}

.privacy-body a {
  color: var(--green-primary);

  text-decoration: none;

  transition: all var(--transition);
}

.privacy-body a:hover {
  color: var(--green-primary);

  text-decoration: underline;
}

.privacy-body ul {
  margin-bottom: 1.25rem;

  padding-left: 1.5rem;
}

.privacy-body li {
  margin-bottom: 0.625rem;

  color: var(--gray-700);

  position: relative;

  line-height: 1.7;

  font-size: 0.95rem;
}

.privacy-body li::before {
  content: "•";

  color: var(--green-primary);

  margin-right: 0.75rem;

  font-weight: bold;

  position: absolute;

  left: -1.25rem;
}

.privacy-section {
  margin-bottom: 2.5rem;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-contact {
  background: var(--green-light);

  padding: 2rem;

  border-radius: var(--radius-md);

  margin-top: 2rem;
}

.privacy-contact p {
  margin-bottom: 0.75rem;
}

.privacy-contact i {
  color: var(--green-primary);

  width: 25px;
}

.privacy-footer {
  margin-top: 3rem;

  text-align: center;

  border-top: 2px solid var(--gray-200);

  padding-top: 2rem;
}

/* Mobile Optimizations */

@media (max-width: 767px) {
  .privacy-policy {
    padding: 2rem 0;
    margin-top: 0;
  }

  .privacy-content {
    padding: 1.5rem;

    border-radius: var(--radius-md);
  }

  .privacy-header {
    padding-bottom: 1.25rem;

    margin-bottom: 1.5rem;
  }

  .privacy-header h1 {
    font-size: 1.75rem;
  }

  .privacy-updated {
    font-size: 0.85rem;
  }

  .privacy-body h2 {
    font-size: 1.25rem;

    margin: 1.5rem 0 0.875rem;

    padding-top: 0.875rem;
  }

  .privacy-body h3 {
    font-size: 1.05rem;

    margin: 1.25rem 0 0.625rem;
  }

  .privacy-body p {
    font-size: 0.9rem;

    margin-bottom: 0.875rem;
  }

  .privacy-body li {
    font-size: 0.9rem;

    margin-bottom: 0.5rem;
  }

  .privacy-section {
    margin-bottom: 2rem;
  }

  .privacy-footer {
    margin-top: 2rem;

    padding-top: 1.5rem;
  }
}

/* ===========================
   REFERRAL
   =========================== */
.referral-card,
.referral-banner {
  background: linear-gradient(135deg, var(--green-primary), var(--green-hover));
  color: var(--white);
}

.referral-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: var(--shadow-md);
}

.referral-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.referral-card-icon i {
  font-size: 1.25rem;
}

.referral-card-content {
  flex: 1;
}

.referral-card-content h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
  font-weight: 700;
}

.referral-card-content p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.95;
}

.referral-card-content strong {
  font-weight: 700;
}

.btn-referral-card,
.referral-action .btn-referral,
.btn-share {
  background: var(--white);
  color: var(--green-primary);
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-referral-card:hover,
.referral-action .btn-referral:hover,
.btn-share:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Premium Numbers Section */

.premium-numbers {
  background: linear-gradient(135deg, var(--green-primary), var(--green-hover));

  padding: 2.5rem 0;

  margin: 3rem 0;

  position: relative;

  overflow: hidden;
}

.premium-numbers::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

  opacity: 0.3;

  pointer-events: none;
}

.premium-numbers-content {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 2rem;

  flex-wrap: wrap;

  position: relative;

  z-index: 1;
}

.premium-icon {
  width: 80px;

  height: 80px;

  background: rgba(255, 255, 255, 0.2);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 36px;

  color: var(--white);

  flex-shrink: 0;

  animation: pulse-soft 3s ease-in-out infinite;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@keyframes pulse-soft {
  0%,
  100% {
    transform: scale(1);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  50% {
    transform: scale(1.05);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
}

.premium-text {
  flex: 1;

  color: var(--white);
}

.premium-text h2 {
  font-size: 2rem;

  font-weight: 700;

  margin: 0 0 0.5rem 0;

  color: var(--white);

  text-align: left;
}

.premium-text .highlight {
  color: #ffd700;

  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);

  font-weight: 900;
}

.premium-text p {
  font-size: 1.125rem;

  margin: 0;

  opacity: 0.95;

  text-align: left;
}

.btn-premium {
  background: var(--white);

  color: var(--green-primary);

  padding: 1rem 2rem;

  font-size: 1rem;

  font-weight: 600;

  border-radius: var(--radius-md);

  text-decoration: none;

  white-space: nowrap;

  transition: all var(--transition);

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: var(--green-light);
}

.premium-numbers-page-hero {
  background: linear-gradient(
    180deg,
    rgba(238, 247, 238, 0.94) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  padding: 3.5rem 0 2rem;
}

.premium-numbers-page-header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.premium-numbers-page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.premium-numbers-page-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.premium-numbers-page-stat,
.premium-number-card,
.premium-numbers-empty {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.premium-numbers-page-stat {
  padding: 1rem;
}

.premium-numbers-page-stat strong {
  display: block;
  color: var(--green-primary);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.premium-numbers-page-stat span {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.premium-numbers-listing {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.premium-numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.premium-number-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.premium-number-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-primary);
}

.premium-number-card-top {
  display: flex;
  justify-content: flex-end;
}

.premium-number-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.premium-number-card h2 {
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--gray-900);
  letter-spacing: 0.04em;
}

.premium-number-card p,
.premium-numbers-empty p {
  color: var(--gray-600);
  margin: 0;
}

.premium-number-card .btn {
  margin-top: auto;
}

.premium-plan-modal-content {
  max-width: 920px;
}

.premium-plan-modal-subtitle {
  margin: 0.35rem 0 0;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.premium-plan-modal-body {
  max-height: min(70vh, 760px);
  overflow-y: auto;
  background: var(--white);
}

/* Premium Plan Selector - New Clean Design */
.premium-plan-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100px;
}

.premium-plan-row {
  position: relative;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.premium-plan-row:hover {
  border-color: var(--green-primary);
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.premium-plan-row:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 2px;
  border-color: var(--green-primary);
}

.premium-plan-row:active {
  transform: translateY(0);
}

.premium-plan-row-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.premium-plan-row-info {
  flex: 1;
  min-width: 0;
}

.premium-plan-row-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.premium-plan-row-header h3 {
  margin: 0;
  color: var(--gray-900);
  font-size: 1.15rem;
  font-weight: 700;
}

.premium-plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.premium-plan-badge.popular {
  background: #fef3c7;
  color: #92400e;
}

.premium-plan-badge.recommended {
  background: var(--green-light);
  color: var(--green-primary);
}

.premium-plan-badge.best-value {
  background: #dbeafe;
  color: #1e40af;
}

.premium-plan-badge.default {
  background: var(--gray-100);
  color: var(--gray-700);
}

.premium-plan-row-subtitle {
  margin: 0.35rem 0 0;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.premium-plan-row-price {
  text-align: right;
  flex-shrink: 0;
}

.premium-plan-row-price strong {
  display: block;
  color: var(--green-primary);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.premium-plan-row-price span {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.15rem;
}

.premium-plan-row-action {
  display: flex;
  justify-content: flex-end;
}

.premium-plan-row-action .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.premium-plan-row:hover .premium-plan-row-action .btn {
  background: var(--green-hover);
}

body.premium-numbers-page .premium-number-card .btn {
  width: 100%;
}

.premium-numbers-empty {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.premium-numbers-empty h2 {
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

@media (max-width: 768px) {
  .premium-numbers {
    padding: 2rem 0;
    margin: 2rem 0;
  }

  .premium-numbers-content {
    flex-direction: column;

    text-align: center;

    gap: 1.5rem;
  }

  .premium-icon {
    width: 70px;

    height: 70px;

    font-size: 32px;
  }

  .premium-text h2 {
    font-size: 1.5rem;

    text-align: center;
  }

  .premium-text p {
    font-size: 1rem;

    text-align: center;
  }

  .btn-premium {
    width: 100%;
    justify-content: center;
  }

  .premium-numbers-page-hero {
    padding: 2.5rem 0 1rem;
  }

  .premium-numbers-page-stats,
  .premium-numbers-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile: premium plan modal fixes */
  .premium-plan-modal.active {
    align-items: flex-start;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .premium-plan-modal-content {
    max-width: 100%;
    width: calc(100% - 1.5rem);
    margin: 0 auto;
    max-height: calc(100vh - 6rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .premium-plan-modal-body {
    flex: 1;
    max-height: none;
    overflow-y: auto;
    padding: 1rem;
    min-height: 200px;
  }

  .premium-plan-selector {
    min-height: 100px;
  }

  .premium-plan-row {
    padding: 0.875rem;
    border-width: 1px;
  }

  .premium-plan-row-main {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .premium-plan-row-header {
    gap: 0.35rem;
    flex-wrap: nowrap;
  }

  .premium-plan-row-header h3 {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .premium-plan-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    flex-shrink: 0;
  }

  .premium-plan-row-subtitle {
    font-size: 0.8rem;
    margin-top: 0.25rem;
  }

  .premium-plan-row-price {
    text-align: right;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    flex-shrink: 0;
  }

  .premium-plan-row-price strong {
    font-size: 1.1rem;
  }

  .premium-plan-row-price span {
    font-size: 0.75rem;
  }

  .premium-plan-row-action .btn {
    width: 100%;
    padding: 0.6rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .premium-text h2 {
    font-size: 1.25rem;
  }

  .premium-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  /* Premium number card mobile fixes */
  .premium-number-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .premium-number-card h2 {
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    word-break: break-all;
  }

  .premium-number-card p {
    font-size: 0.9rem;
  }

  /* Premium plan modal mobile fixes */
  .premium-plan-modal-content {
    margin: 0.25rem;
    width: calc(100% - 0.5rem);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 4rem);
  }

  .premium-plan-modal-body {
    flex: 1;
    max-height: none;
  }

  .mobile-modal-header {
    padding: 0.875rem 1rem;
  }

  .mobile-modal-header h2 {
    font-size: 1.05rem;
  }

  .premium-plan-modal-subtitle {
    font-size: 0.8rem;
  }

  .premium-plan-row {
    padding: 0.875rem;
  }

  .premium-plan-row-header h3 {
    font-size: 1rem;
  }

  .premium-plan-row-price strong {
    font-size: 1.15rem;
  }

  .premium-plan-row-action .btn {
    padding: 0.6rem;
    font-size: 0.85rem;
  }

  .premium-numbers-page-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* ===========================
   LAYOUT CLEANUP
   =========================== */
main {
  padding-top: var(--header-height-current);
}

body.home main {
  padding-top: var(--header-height-current);
}

body:not(.home) main {
  padding-top: var(--header-height-current);
}

.header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar {
  min-height: var(--header-height);
}

.nav-container {
  width: 100%;
}

.nav-menu {
  max-height: calc(100vh - var(--header-height-current));
  overflow-y: auto;
}

.nav-menu li a.active,
.nav-menu li a[aria-current="page"] {
  background: var(--green-light);
  color: var(--green-primary);
}

.hero {
  margin-top: 0;
  padding: 4rem 0 4rem;
  min-height: clamp(520px, 80vh, 760px);
}

.hero .container {
  width: 100%;
}

.hero-content {
  min-height: inherit;
}

.hero-text h1 {
  text-wrap: balance;
}

.hero-text > p {
  text-wrap: pretty;
}

.hero-plan .plan-card {
  width: 100%;
}

.hero-scroll-indicator {
  bottom: 1rem;
}

.tutorials-header-hero,
.store-page-hero,
.privacy-policy {
  margin-top: 0;
}

.store-page-hero {
  background: linear-gradient(
    180deg,
    rgba(238, 247, 238, 0.9) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  padding: 3.5rem 0 1.5rem;
}

.store-page-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.store-page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.store-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.store-stat {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.store-stat strong {
  display: block;
  color: var(--green-primary);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.store-stat span {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.store-page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.store-page-header .section-description {
  margin-bottom: 0;
}

body.store-page .store {
  padding-top: 1.5rem;
}

.store-overview {
  background: var(--white);
  padding-top: 1rem;
}

.store-process {
  background: var(--gray-50);
}

.store-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.store-step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.store-step-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  color: var(--green-primary);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 1rem;
}

.store-step-card h3 {
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.store-step-card p {
  color: var(--gray-600);
  margin: 0;
}

.tutorials,
.privacy-policy,
.contact,
.duk,
.plans,
.store,
.home-internet,
.television,
.services,
.smart-plans-benefits {
  scroll-margin-top: calc(
    var(--header-height-current) + var(--promo-height-current) + 16px
  );
}

.google-reviews {
  scroll-margin-top: calc(
    var(--header-height-current) + var(--promo-height-current) + 16px
  );
}

.store-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.store-empty h3 {
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.store-empty p {
  margin: 0;
  color: var(--gray-600);
}

.store-details,
.contact-form-wrapper,
.service-card,
.benefit-card,
.tutorial-card,
.privacy-content {
  overflow: hidden;
}

@media (max-width: 991px) {
  .nav-menu {
    border-top: 1px solid var(--gray-200);
  }

  .hero {
    padding: 3rem 0 2.5rem;
    min-height: auto;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .hero-text > p {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .store-main-image {
    min-height: 200px;
  }
}

@media (max-width: 767px) {
  main {
    padding-top: var(--header-height-current);
  }

  .nav-container {
    min-height: var(--header-height);
    padding: 0 0.875rem;
  }

  .logo img {
    max-width: 150px;
    height: auto;
  }

  .nav-menu {
    padding: 0.75rem;
  }

  .nav-menu li {
    max-width: 100%;
  }

  .nav-menu li a {
    padding: 0.875rem 1rem;
  }

  .promo-banner-content {
    align-items: center;
  }

  .hero {
    padding: 2.5rem 0 2rem;
    background-position: center top;
  }

  .store-page-hero {
    padding: 2.5rem 0 1rem;
  }

  .store-stats,
  .store-steps {
    grid-template-columns: 1fr;
  }

  .hero-text {
    text-align: left;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text > p {
    margin-right: 0;
    max-width: none;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .hero-features {
    max-width: none;
    margin-right: 0;
  }

  .hero-visual,
  .hero-plan {
    max-width: 100%;
  }

  .plans-grid,
  .home-internet-plans,
  .television-plans,
  .services-grid,
  .benefits-grid,
  .tutorials-grid {
    grid-template-columns: 1fr;
  }

  .store-details {
    gap: 1rem;
  }

  .contact-content {
    gap: 1.5rem;
  }

  .footer-content-wrapper {
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 4rem 0 4.5rem;
  }

  .hero-visual {
    flex: 0 0 min(340px, 34vw);
    max-width: min(340px, 34vw);
  }

  .hero-plan {
    max-width: 340px;
  }
}

@media (min-width: 1200px) {
  .hero {
    padding: 4.5rem 0 5rem;
  }

  .hero-content {
    gap: 3.5rem;
  }
}
