/* ==========================================================================
   HDM Broadband — Design System
   ========================================================================== */

:root {
  --primary: #0b4dbb;
  --primary-dark: #07347f;
  --secondary: #18a8ff;
  --accent: #ffb400;
  --dark: #071a35;
  --light: #f5f8fc;
  --white: #ffffff;
  --text: #4b5563;
  --text-dark: #1f2937;
  --border: #e5ebf5;
  --success: #0d9f6e;
  --danger: #dc2626;
  --shadow-sm: 0 2px 8px rgba(7, 26, 53, 0.06);
  --shadow-md: 0 8px 24px rgba(7, 26, 53, 0.1);
  --shadow-lg: 0 20px 48px rgba(7, 26, 53, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --header-offset: 118px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --container: 1200px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0.85rem;
}

.section-dark .section-title {
  color: var(--white);
}

.section-desc {
  color: var(--text);
  font-size: 1.05rem;
}

.section-dark .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition),
    color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(11, 77, 187, 0.28);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 12px 28px rgba(11, 77, 187, 0.38);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-accent {
  background: var(--accent);
  color: var(--dark);
}

.btn-accent:hover {
  color: var(--dark);
  filter: brightness(1.05);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 1.85rem;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  padding: 0.55rem 0;
}

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

.top-bar a {
  color: rgba(255, 255, 255, 0.88);
}

.top-bar a:hover {
  color: var(--secondary);
}

.top-bar-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.top-bar-contacts span,
.top-bar-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.main-nav .nav-menu {
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.brand:hover {
  color: var(--dark);
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(11, 77, 187, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #071a35 0%, #0b4dbb 55%, #18a8ff 100%);
  color: var(--white);
  overflow: hidden;
  min-height: clamp(520px, 78vh, 700px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255, 180, 0, 0.18) 0, transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  pointer-events: none;
}

.hero-slider {
  position: relative;
  z-index: 1;
}

.hero-slide {
  display: none;
  padding: 4.5rem 0 5rem;
}

.hero-slide.is-active {
  display: block;
  animation: heroIn 0.7s ease;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-text {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual img,
.hero-visual svg {
  width: min(100%, 460px);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.25));
}

.hero-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-float-1 {
  top: 12%;
  left: 0;
  animation: floatY 4s ease-in-out infinite;
}

.hero-float-2 {
  bottom: 18%;
  right: 0;
  animation: floatY 5s ease-in-out infinite reverse;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-controls {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.hero-dot.is-active,
.hero-dot:hover {
  background: var(--accent);
}

/* Highlights */
.highlights {
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
  padding-bottom: 1rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.highlight-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(11, 77, 187, 0.12), rgba(24, 168, 255, 0.18));
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.highlight-card p {
  font-size: 0.925rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: var(--white);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  max-width: 220px;
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1.1;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin: 1.5rem 0 2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.check-list i {
  color: var(--success);
  margin-top: 0.2rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(24, 168, 255, 0.45);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0.65rem;
}

.service-card .service-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(11, 77, 187, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-detail:first-child {
  padding-top: 0;
}

.service-detail.reverse .service-detail-media {
  order: 2;
}

.service-detail-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--light);
}

.service-detail-copy .section-eyebrow {
  margin-bottom: 0.5rem;
}

.service-detail-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--dark);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.service-detail-copy p {
  margin-bottom: 1rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.audience-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.audience-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

/* Plans */
.plans-note {
  text-align: center;
  background: rgba(255, 180, 0, 0.12);
  border: 1px solid rgba(255, 180, 0, 0.35);
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin: -1.5rem auto 2rem;
  max-width: 720px;
  font-size: 0.925rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.plan-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #f3f8ff 0%, #fff 40%);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.plan-speed {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.plan-speed span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.plan-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.plan-price .muted {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.plan-features li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-dark);
}

.plan-features i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.comparison-wrap {
  margin-top: 3rem;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table th {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table tr:hover td {
  background: rgba(11, 77, 187, 0.04);
}

.mobile-plan-cards {
  display: none;
}

/* Why Choose */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

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

.why-card .num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-family: var(--font-display);
  color: var(--dark);
  margin-bottom: 0.5rem;
}

/* Tech section */
.tech-section {
  background: linear-gradient(120deg, var(--dark), #0a3a8c 60%, #0d6ec4);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

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

.tech-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tech-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.25rem;
  backdrop-filter: blur(8px);
}

.tech-panel img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.tech-panel h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.tech-panel p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.speed-bars {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.speed-bar label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.speed-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.speed-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  width: 0;
  transition: width 1.2s ease;
}

.speed-fill.is-visible {
  width: var(--w);
}

/* Availability */
.availability {
  background: var(--light);
}

.availability-box {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.availability-copy {
  background: linear-gradient(160deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.availability-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0.5rem 0 1rem;
}

.availability-form {
  padding: 2.5rem;
}

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

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

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

.form-group label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(24, 168, 255, 0.15);
  outline: none;
}

.form-group .error {
  color: var(--danger);
  font-size: 0.8rem;
  min-height: 1.1em;
}

.form-group.is-invalid input,
.form-group.is-invalid textarea {
  border-color: var(--danger);
}

.form-success {
  display: none;
  background: rgba(13, 159, 110, 0.1);
  border: 1px solid rgba(13, 159, 110, 0.35);
  color: #065f46;
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1rem;
}

.form-success.is-visible {
  display: block;
}

/* CTA */
.cta-band {
  background: linear-gradient(120deg, #071a35, #0b4dbb 50%, #1280d8);
  padding: 4.5rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 180, 0, 0.12);
  top: -120px;
  right: -80px;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.85rem;
  position: relative;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
}

.cta-band .btn-group {
  justify-content: center;
  position: relative;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-offset) + 1rem);
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
}

.accordion-btn i {
  color: var(--primary);
  transition: transform var(--transition);
}

.accordion-item.is-open .accordion-btn i {
  transform: rotate(180deg);
}

.accordion-panel {
  display: none;
  padding: 0 1.25rem 1.2rem;
  color: var(--text);
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

/* Serving / Partners */
.serving-band {
  text-align: center;
  padding: 3.5rem 0;
  background: var(--light);
}

.serving-band h2 {
  font-family: var(--font-display);
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.partners {
  padding: 3rem 0 4rem;
}

.partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.partner-logo {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover {
  filter: none;
  opacity: 1;
}

.clients-section {
  padding: 3rem 0 4.5rem;
}

.client-logo {
  height: 64px;
  max-width: 180px;
  filter: none;
  opacity: 0.9;
}

/* Page hero (inner) */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--primary));
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 0.65rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

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

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.contact-card i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(11, 77, 187, 0.1);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-card h3 {
  font-family: var(--font-display);
  color: var(--dark);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.map-embed {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  background: var(--light);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 4rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-col a:hover {
  color: var(--secondary);
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--secondary);
  margin-top: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
}

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

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-family: var(--font-display);
  color: var(--dark);
  margin: 1.5rem 0 0.75rem;
}

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

.policy-content a.btn {
  margin-top: 0.5rem;
}
