/* MARUTI WORLD VISION OTT Landing Page */

:root {
  --primary-red: #ef3e42;
  --dark-blue: #0d1c3d;
  --light-gray: #f5f5f5;
  --dark-gray: #2d2d2d;
  --white: #ffffff;
  --text-gray: #666666;
  --accent-blue: #2f80ed;
  --live-tv-bg: #2c2c2c;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: 0.3s ease;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--primary-red);
  color: var(--white);
}

.btn--primary:hover {
  background: #d63539;
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--primary-red);
}

.btn--white:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--dark-gray);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.logo--footer {
  margin-bottom: 8px;
}

.logo__img--footer {
  height: 56px;
  max-width: 220px;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 18px;
}

.nav__list a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__list a:hover,
.nav__list a.nav__link--active {
  color: var(--primary-red);
}

/* Dropdown navigation */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
  transition: transform var(--transition);
}

.nav__dropdown:hover .nav__dropdown-trigger::after,
.nav__dropdown.open .nav__dropdown-trigger::after {
  transform: rotate(180deg);
}

.nav__submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}

.nav__dropdown:hover .nav__submenu,
.nav__dropdown.open .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__submenu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  white-space: normal;
  line-height: 1.4;
}

.nav__submenu a:hover {
  background: var(--light-gray);
  color: var(--primary-red);
}

/* Inner pages */
.page-hero {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1a3a6b 100%);
  color: var(--white);
  padding: 72px 0 64px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero__breadcrumb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.page-hero__breadcrumb a:hover {
  color: var(--white);
}

.page-content {
  padding: 64px 0 80px;
}

.page-content__lead {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 760px;
  margin-bottom: 40px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.info-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 28px;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.info-card h3 {
  font-size: 1.05rem;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.info-card p {
  color: var(--text-gray);
  font-size: 0.92rem;
}

.info-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--accent-blue);
}

.info-card__icon svg {
  width: 100%;
  height: 100%;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.split-section p {
  color: var(--text-gray);
  margin-bottom: 16px;
}

.split-section__panel {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 40px;
}

.split-section__panel h2 {
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 16px;
}

.cta-banner {
  margin-top: 48px;
  background: linear-gradient(90deg, #ef3e42, #ff7e5f);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.cta-banner p {
  margin-bottom: 24px;
  opacity: 0.9;
}

.header__cta {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-gray);
  transition: var(--transition);
}

/* Hero */
.hero {
  min-height: 600px;
  background: linear-gradient(90deg, #ef3e42, #ff7e5f);
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 24px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__title span {
  font-size: 0.65em;
  font-weight: 600;
}

.hero__desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 420px;
}

/* Device mockup */
.hero__banner-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  display: block;
  animation: float 4s ease-in-out infinite;
}

.device-mockup {
  position: relative;
  height: 380px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(-10px); }
  50% { transform: translateY(0); }
}

.device {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.device__screen {
  background: linear-gradient(135deg, #1a2a4a 0%, #2f80ed 100%);
  border-radius: inherit;
  position: relative;
  overflow: hidden;
}

.device__screen::after {
  content: '';
  position: absolute;
  inset: 20%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.device--tv {
  width: 220px;
  height: 130px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  padding: 8px 8px 0;
}

.device--tv .device__screen {
  height: 100px;
}

.device--tv .device__stand {
  width: 60px;
  height: 12px;
  background: #333;
  margin: 4px auto 0;
  border-radius: 0 0 4px 4px;
}

.device--laptop {
  width: 180px;
  height: 115px;
  bottom: 60px;
  left: 0;
  background: #2d2d2d;
  padding: 6px 6px 0;
}

.device--laptop .device__screen {
  height: 85px;
}

.device--laptop .device__base {
  height: 8px;
  background: #444;
  border-radius: 0 0 6px 6px;
  margin-top: 2px;
}

.device--tablet {
  width: 90px;
  height: 120px;
  bottom: 40px;
  right: 30px;
  background: #222;
  padding: 6px;
}

.device--tablet .device__screen {
  height: 100%;
}

.device--phone {
  width: 55px;
  height: 95px;
  top: 80px;
  right: 0;
  background: #222;
  padding: 5px;
  border-radius: 12px;
}

.device--phone .device__screen {
  height: 100%;
  border-radius: 8px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section--gray {
  background: var(--light-gray);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.section-title--center {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-title {
  margin-bottom: 8px;
}

/* Intro */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.intro__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-red);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.intro__col p {
  color: var(--text-gray);
  margin-bottom: 16px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--dark-gray);
  font-weight: 500;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent-blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Features */
.features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 25px;
  text-align: center;
  border: 1px solid #eee;
  background: var(--white);
  border-radius: 8px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--accent-blue);
}

.feature-card__icon svg,
.feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-blue);
}

/* Live TV */
.live-tv {
  display: flex;
  min-height: 400px;
}

.live-tv__visual {
  flex: 1;
  background: var(--light-gray) center / cover no-repeat;
  min-height: 320px;
}

.live-tv__visual--photo {
  background-image: url('assets/live_tv.jpg');
}

.tv-frame {
  width: 100%;
  max-width: 420px;
}

.tv-frame__screen {
  aspect-ratio: 16 / 10;
  background: #111;
  border-radius: 8px;
  padding: 12px;
  border: 4px solid #333;
}

.tv-frame__content {
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 4px;
  padding: 20px;
  position: relative;
}

.tv-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.tv-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.tv-channels span {
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.tv-frame__stand {
  width: 120px;
  height: 16px;
  background: #444;
  margin: 8px auto 0;
  border-radius: 0 0 8px 8px;
}

.live-tv__content {
  flex: 1;
  background: var(--live-tv-bg);
  color: var(--white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.live-tv__content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.live-tv__content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  max-width: 480px;
}

/* VOD */
.vod {
  display: flex;
  min-height: 400px;
}

.vod__content {
  flex: 1;
  background: var(--primary-red);
  color: var(--white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vod__content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.vod__content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 400px;
}

.vod__posters {
  flex: 1;
  min-height: 320px;
  background: var(--dark-blue) center / cover no-repeat;
}

.vod__posters--photo {
  background-image: url('assets/vod.jpg');
}

.poster {
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    hsl(var(--hue, 220) 60% 35%),
    hsl(var(--hue, 220) 40% 20%)
  );
  transition: transform var(--transition);
}

.poster:hover {
  transform: scale(1.05);
}

/* Movies */
.movies {
  display: flex;
  min-height: 400px;
}

.movies__collage {
  flex: 1;
  min-height: 320px;
  background: var(--light-gray) center / cover no-repeat;
}

.movies__collage--photo {
  background-image: url('assets/movies.jpg');
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 120px);
  gap: 10px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.collage-item {
  border-radius: 8px;
  background: linear-gradient(135deg, #3d5a80, #293241);
}

.collage-item--lg {
  grid-row: span 2;
  background: linear-gradient(135deg, #ef3e42, #c92a2e);
}

.collage-item--wide {
  grid-column: span 2;
  background: linear-gradient(135deg, #2f80ed, #1a5fb4);
}

.movies__panel {
  flex: 1;
  background: var(--live-tv-bg);
  color: var(--white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.movies__panel h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.movies__panel p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  max-width: 480px;
}

/* Plans */
.plans-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.plans-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.plans-table thead {
  background: var(--primary-red);
  color: var(--white);
}

.plans-table th,
.plans-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
}

.plans-table th {
  font-weight: 600;
}

.plans-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background var(--transition);
}

.plans-table tbody tr:hover {
  background: #fafafa;
}

.plans-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.plans-company {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 24px 0 16px;
}

/* Enquiry */
.enquiry-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.enquiry-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group--captcha {
  grid-column: 1 / -1;
  max-width: 280px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
}

.btn--submit {
  padding: 12px 30px;
}

/* Testimonials */
.testimonials__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
  overflow: hidden;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  text-align: center;
}

.testimonial-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  background: linear-gradient(
    135deg,
    hsl(var(--avatar-hue, 210) 70% 50%),
    hsl(var(--avatar-hue, 210) 50% 35%)
  );
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--primary-red);
  font-weight: 500;
  margin-bottom: 16px;
}

.testimonial-card__review {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary-red);
  background: var(--white);
  color: var(--primary-red);
  font-size: 1.5rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}

.carousel-btn:hover {
  background: var(--primary-red);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--primary-red);
}

/* FAQ */
.faq-list {
  margin-top: 8px;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--dark-blue);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary-red);
  font-weight: 400;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer__address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 16px 0;
}

.footer__contact {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.footer__contact a:hover {
  color: var(--primary-red);
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__col ul a:hover {
  color: var(--white);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background var(--transition);
}

.social-icons a:hover {
  background: var(--primary-red);
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a:hover {
  color: var(--white);
}

/* About Us page */
.about-stats {
  background: var(--light-gray);
  padding: 48px 0;
}

.about-stats__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
}

.about-stats__banner {
  background: var(--accent-blue);
  color: var(--white);
  padding: 28px 24px;
  border-radius: 4px;
  text-align: center;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-stats__banner p {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.about-stats__banner-icon svg {
  width: 64px;
  height: 64px;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-stat {
  text-align: center;
}

.about-stat__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stat__icon svg {
  width: 32px;
  height: 32px;
}

.about-stat__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.about-stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.about-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 40px;
}

.about-heading span {
  color: var(--primary-red);
}

.about-heading--left {
  text-align: left;
  margin-bottom: 24px;
}

.about-heading--muted {
  color: var(--text-gray);
}

.about-heading--muted span {
  color: var(--text-gray);
}

.about-intro {
  padding: 64px 0;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.about-intro__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.about-intro__col p {
  color: var(--text-gray);
  margin-bottom: 16px;
  font-size: 0.92rem;
  line-height: 1.75;
}

.about-bullets {
  margin-bottom: 24px;
}

.about-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
}

.about-pillars {
  background: var(--accent-blue);
}

.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.about-pillar {
  padding: 48px 32px;
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.about-pillar:last-child {
  border-right: none;
}

.about-pillar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.about-pillar__icon svg {
  width: 100%;
  height: 100%;
}

.about-pillar h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-pillar p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 20px;
  min-height: 100px;
}

.about-pillar__link {
  background: none;
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-pillar__link:hover {
  opacity: 0.85;
}

.about-profile__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.about-profile__col p {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-group {
  margin-bottom: 28px;
}

.about-group h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.about-group p {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

.about-ceo__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.about-ceo__photo-inner {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #4a5568 0%, #2d3748 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.about-ceo__photo-inner::after {
  content: 'NS';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
}

.about-ceo__role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.about-ceo__content p {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-ceo__content .btn {
  margin-top: 8px;
}

.about-leadership__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.leader-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--dark-gray);
}

.leader-card__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.leader-card__photo--1 {
  background: linear-gradient(180deg, #5a6a7a 0%, #3d4a56 100%);
}

.leader-card__photo--2 {
  background: linear-gradient(180deg, #6b5b4f 0%, #4a3f38 100%);
}

.leader-card__photo--3 {
  background: linear-gradient(180deg, #4a5d6a 0%, #2f3e48 100%);
}

.leader-card__photo--4 {
  background: linear-gradient(180deg, #556b7a 0%, #3a4f5c 100%);
}

.leader-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 20px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--white);
}

.leader-card__info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.leader-card__info p {
  font-size: 0.82rem;
  color: var(--primary-red);
  font-weight: 500;
}

.leader-card__btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark-blue);
  border-radius: 3px;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition);
}

.leader-card:hover .leader-card__btn {
  opacity: 1;
}

.about-partners__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}

.partner-logo {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 20px 16px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-gray);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.partner-logo:hover {
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}

.partner-logo--airtel { color: #e40000; }
.partner-logo--tatasky { color: #1a1a1a; }
.partner-logo--tcs { color: #0066b3; }
.partner-logo--videocon { color: #e31837; }
.partner-logo--vodafone { color: #e60000; }
.partner-logo--bsnl { color: #0054a6; }
.partner-logo--den { color: #003da5; }
.partner-logo--idea { color: #f7941d; }
.partner-logo--ericsson { color: #002561; }
.partner-logo--huawei { color: #cf0a2c; }

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.modal__dialog {
  position: relative;
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal__dialog--wide {
  max-width: 720px;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text-gray);
  cursor: pointer;
}

.modal__close:hover {
  color: var(--primary-red);
}

.modal__dialog h3 {
  font-size: 1.25rem;
  color: var(--dark-blue);
  margin-bottom: 16px;
  padding-right: 32px;
}

.modal__dialog p,
.modal__dialog li {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.modal__dialog ul {
  padding-left: 20px;
  list-style: disc;
}

@media (max-width: 1024px) {
  .about-stats__inner {
    grid-template-columns: 1fr;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-pillars__grid {
    grid-template-columns: 1fr;
  }

  .about-pillar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .about-pillar p {
    min-height: auto;
  }

  .about-leadership__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-partners__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-intro__grid,
  .about-profile__grid,
  .about-ceo__grid,
  .about-leadership__grid {
    grid-template-columns: 1fr;
  }

  .about-stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leader-card__btn {
    opacity: 1;
  }
}

/* Digital Cable TV page */
.float-enquire {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  z-index: 900;
  background: var(--primary-red);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px 4px 0 0;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.15);
  transition: background var(--transition);
}

.float-enquire:hover {
  background: #d63539;
}

.cable-hero,
.solution-hero {
  width: 100%;
  background: var(--light-gray);
}

.cable-hero__banner,
.solution-hero__banner {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

/* CCTV page */
.cctv-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.cctv-intro__col p {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.cctv-products__subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-top: -28px;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cctv-products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.cctv-product-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.cctv-product-card__img {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto 20px;
  object-fit: contain;
}

.cctv-product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 16px;
}

.cctv-product-card p {
  color: var(--text-gray);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: left;
}

.cctv-benefits__list li {
  align-items: flex-start;
}

.cctv-mid-banner {
  position: relative;
  overflow: hidden;
}

.cctv-mid-banner__img {
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.cctv-mid-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  padding: 24px;
}

.cctv-mid-banner__overlay p {
  color: var(--white);
  font-size: clamp(1.1rem, 3vw, 1.75rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cctv-mid-banner__overlay strong {
  color: var(--primary-red);
  font-weight: 700;
}

.cctv-dvr__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.cctv-dvr-card {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.cctv-dvr-card__img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 16px;
  object-fit: contain;
}

.cctv-dvr-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 12px;
  line-height: 1.4;
}

.cctv-dvr-card__link {
  background: none;
  border: none;
  color: var(--accent-blue);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cctv-dvr-card__link:hover {
  color: var(--primary-red);
}

.cctv-faq {
  padding-bottom: 80px;
}

/* Wi-Fi page */
.wifi-intro .check-list li {
  align-items: flex-start;
}

.wifi-features {
  display: flex;
  min-height: 480px;
}

.wifi-features__visual {
  flex: 1;
  background: url('assets/wifi_uses.jpg') center / cover no-repeat;
  min-height: 320px;
}

.wifi-features__content {
  flex: 1;
  background: var(--primary-red);
  color: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -4%;
}

.wifi-features__content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.wifi-features__content > p {
  font-size: 0.92rem;
  line-height: 1.75;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 520px;
}

.wifi-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 420px;
}

.wifi-features__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.wifi-features__item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.wifi-features__item span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.3;
}

.wifi-benefits__list li {
  align-items: flex-start;
}

.wifi-benefits .about-intro__label {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .wifi-features {
    flex-direction: column;
  }

  .wifi-features__content {
    clip-path: none;
    margin-left: 0;
    padding: 40px 24px;
  }

  .wifi-features__visual {
    min-height: 260px;
  }
}

/* Biometric page */
.biometric-intro .check-list li {
  align-items: flex-start;
}

.biometric-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cctv-product-card .plan-card__features {
  text-align: left;
  margin-top: 16px;
  margin-bottom: 0;
}

.biometric-benefits__list li {
  align-items: flex-start;
}

.biometric-benefits .about-intro__label {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .biometric-products__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* Intercom page */
.intercom-intro .check-list li {
  align-items: flex-start;
}

.intercom-features {
  display: flex;
  min-height: 480px;
}

.intercom-features__visual {
  flex: 1;
  background: url('assets/intercom_bg.jpg') center / cover no-repeat;
  min-height: 320px;
}

.intercom-features__content {
  flex: 1;
  background: var(--primary-red);
  color: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -4%;
}

.intercom-features__content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.intercom-features__content > p {
  font-size: 0.92rem;
  line-height: 1.75;
  opacity: 0.95;
  margin-bottom: 12px;
  max-width: 520px;
}

.intercom-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 420px;
  margin-top: 20px;
}

.intercom-features__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.intercom-features__item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.intercom-features__item span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.3;
}

.intercom-benefits__list li {
  align-items: flex-start;
}

.intercom-benefits .about-intro__label {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .intercom-features {
    flex-direction: column;
  }

  .intercom-features__content {
    clip-path: none;
    margin-left: 0;
    padding: 40px 24px;
  }

  .intercom-features__visual {
    min-height: 260px;
  }
}

.cable-intro {
  padding: 64px 0;
}

.cable-intro .check-list li {
  align-items: flex-start;
}

.cable-why {
  display: flex;
  min-height: 420px;
}

.cable-why__visual {
  flex: 1;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.cable-why__visual::after {
  content: '';
  position: absolute;
  inset: 20%;
  background: linear-gradient(160deg, rgba(47, 128, 237, 0.3), rgba(0, 0, 0, 0.5));
  border-radius: 4px;
  border: 3px solid #333;
}

.cable-why__content {
  flex: 1;
  background: var(--primary-red);
  color: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cable-why__content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cable-why__content > p {
  font-size: 0.92rem;
  line-height: 1.75;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 520px;
}

.cable-why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  max-width: 480px;
}

.cable-why__feature {
  padding: 24px 20px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cable-why__feature-icon {
  width: 40px;
  height: 40px;
}

.cable-why__feature-icon svg {
  width: 100%;
  height: 100%;
}

.cable-why__feature span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.3;
}

.cable-plans__subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-top: -28px;
  margin-bottom: 40px;
}

.cable-plans__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
}

.plan-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: 32px 28px 0;
  text-align: center;
  overflow: hidden;
}

.plan-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.plan-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 16px;
}

.plan-card__price small {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-gray);
  margin-top: 4px;
}

.plan-card__pack-btn {
  background: var(--light-gray);
  border: 1px solid #ddd;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark-gray);
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 24px;
  transition: var(--transition);
}

.plan-card__pack-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.plan-card__features {
  text-align: left;
  margin-bottom: 28px;
}

.plan-card__features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--text-gray);
}

.plan-card__features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
}

.plan-card__buy {
  display: block;
  width: calc(100% + 56px);
  margin: 0 -28px;
  padding: 14px;
  background: var(--accent-blue);
  color: var(--white);
  border-radius: 0;
  font-weight: 600;
  transition: background var(--transition);
}

.plan-card__buy:hover {
  background: #1a6fd4;
}

.cable-testimonials__wrapper {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.cable-testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
  overflow: hidden;
}

.cable-testimonial {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cable-testimonial__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.cable-testimonial__avatar--1 { background: linear-gradient(135deg, #5a7a9a, #3d5a72); }
.cable-testimonial__avatar--2 { background: linear-gradient(135deg, #7a6a5a, #524838); }
.cable-testimonial__avatar--3 { background: linear-gradient(135deg, #6a7a8a, #455560); }
.cable-testimonial__avatar--4 { background: linear-gradient(135deg, #8a6a5a, #5c4538); }
.cable-testimonial__avatar--5 { background: linear-gradient(135deg, #5a8a7a, #3d5c52); }
.cable-testimonial__avatar--6 { background: linear-gradient(135deg, #7a5a6a, #523d48); }
.cable-testimonial__avatar--7 { background: linear-gradient(135deg, #6a6a8a, #454560); }

.cable-testimonial__body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 2px;
}

.cable-testimonial__role {
  font-size: 0.78rem;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.cable-testimonial__quote {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--primary-red);
  font-weight: 700;
  margin-bottom: 4px;
}

.cable-testimonial__body p:last-child {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.65;
}

.enquiry-form--modal {
  box-shadow: none;
  padding: 0;
  max-width: none;
}

@media (max-width: 1024px) {
  .cable-testimonials__track {
    grid-template-columns: 1fr;
  }

  .cable-plans__grid {
    max-width: 420px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .cable-why {
    flex-direction: column;
  }

  .cable-why__visual {
    min-height: 220px;
  }

}

@media (max-width: 768px) {
  .float-enquire {
    display: none;
  }

  .cable-hero__banner,
  .solution-hero__banner {
    max-height: 280px;
    object-position: center top;
  }

  .cctv-intro__grid,
  .cctv-products__grid,
  .cctv-dvr__grid {
    grid-template-columns: 1fr;
  }

  .cable-why__content {
    padding: 40px 24px;
  }

  .cable-testimonial {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav__list {
    gap: 4px 12px;
  }

  .nav__list a {
    font-size: 0.75rem;
  }
}

@media (max-width: 900px) {
  .testimonials__track {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .live-tv,
  .vod,
  .movies {
    flex-direction: column;
  }

  .movies {
    flex-direction: column-reverse;
  }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 20px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav__list a {
    font-size: 0.95rem;
  }

  .nav__dropdown {
    width: 100%;
  }

  .nav__submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0 0 0 16px;
    min-width: 0;
    display: none;
    background: transparent;
  }

  .nav__dropdown.open .nav__submenu {
    display: block;
    transform: none;
  }

  .nav__submenu a {
    padding: 8px 0;
    font-size: 0.9rem;
  }

  .nav__submenu a:hover {
    background: transparent;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .header__cta {
    display: none;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 24px;
    min-height: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .device-mockup {
    height: 280px;
    transform: scale(0.85);
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .live-tv__content,
  .vod__content,
  .movies__panel {
    padding: 40px 24px;
  }

  .vod__posters {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }

  .enquiry-form {
    padding: 24px;
  }

  .enquiry-form__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .live-tv__content h2,
  .vod__content h2 {
    font-size: 1.6rem;
  }

  .plans-table th,
  .plans-table td {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
}
