/* ==========================================================================
   GNet — PT. Global Internet Indonesia
   Design tokens: fiber-optic light through dark glass.
   ========================================================================== */

:root {
  /* Color */
  --ink: #0a1120;
  --ink-2: #101b33;
  --ink-3: #16233f;
  --line-dark: #223052;
  --cyan: #35e7c9;
  --cyan-dim: #1e9e8c;
  --amber: #ffb238;
  --paper: #f7f9fc;
  --paper-2: #eef2f8;
  --text: #101828;
  --text-soft: #475069;
  --slate: #64748b;
  --line-light: #e3e8f1;
  --white: #ffffff;
  --danger: #e5484d;

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  /* Layout */
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 20px 40px -24px rgba(16, 27, 51, 0.25);
  --shadow-pop: 0 24px 60px -20px rgba(16, 27, 51, 0.35);
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 1em;
  color: var(--text-soft);
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cyan);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

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

/* ==========================================================================
   Buttons & badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--cyan);
  color: var(--ink);
  box-shadow: 0 12px 30px -10px rgba(53, 231, 201, 0.55);
}
.btn-primary:hover {
  background: #4af0d4;
}
.btn-amber {
  background: var(--amber);
  color: #26170a;
  box-shadow: 0 12px 30px -10px rgba(255, 178, 56, 0.55);
}
.btn-amber:hover {
  background: #ffc15c;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-light);
}
.btn-ghost:hover {
  border-color: var(--ink-2);
}
.btn-block {
  width: 100%;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-dim);
  background: rgba(53, 231, 201, 0.1);
  border: 1px solid rgba(53, 231, 201, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(53, 231, 201, 0.2);
}
.eyebrow.on-dark {
  color: var(--cyan);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.section-head p {
  font-size: 1.05rem;
}

section {
  padding: 88px 0;
}
@media (max-width: 720px) {
  section {
    padding: 64px 0;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 17, 32, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.brand-mark {
  color: var(--cyan);
  display: inline-flex;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.brand-dot {
  color: var(--amber);
}

/* .main-nav lives as a sibling right after </header> in the markup (see the
   note in header.php about why — backdrop-filter on an ancestor breaks
   position:fixed children). On desktop we pin it back on top of the header
   bar, centered, with a transparent background so the header's frosted glass
   still shows through; on mobile it becomes the slide-in drawer. */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  pointer-events: none;
  z-index: 101;
}
.main-nav a {
  pointer-events: auto;
}
.mobile-cta {
  display: none;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 999px;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}
.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.main-nav a.is-active {
  color: var(--ink);
  background: var(--cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}
.header-phone svg {
  color: var(--cyan);
}
.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  margin: 0 auto;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 960px) {
  .header-phone {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    inset: var(--header-h) 0 0 auto;
    left: auto;
    height: auto;
    width: min(320px, 84vw);
    max-width: 100vw;
    background: var(--ink-2);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    padding: 18px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    overflow-y: auto;
    pointer-events: none;
    visibility: hidden;
    z-index: 150;
    box-shadow: -20px 0 50px -20px rgba(0, 0, 0, 0.5);
  }
  .main-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }
  .main-nav a {
    padding: 13px 14px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
  }
  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
  }
  .main-nav a.is-active {
    color: var(--ink);
    background: var(--cyan);
  }
  .mobile-cta {
    display: flex;
    margin-top: 14px;
  }
  .header-cta {
    display: none;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 9, 18, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
    z-index: 140;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (min-width: 961px) {
  .nav-backdrop {
    display: none;
  }
}

.no-scroll {
  overflow: hidden;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 15% 0%, #142244 0%, var(--ink) 55%), var(--ink);
  color: var(--white);
  padding: 96px 0 120px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}
.hero-lede {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat b {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--cyan);
}
.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero-visual {
  position: relative;
  height: 420px;
}
.hero-visual svg {
  width: 100%;
  height: 100%;
}
.hero-node {
  fill: var(--ink-2);
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 1;
}
.hero-node-core {
  fill: var(--cyan);
}
.hero-link {
  stroke: rgba(53, 231, 201, 0.28);
  stroke-width: 1.2;
  fill: none;
}
.hero-pulse {
  fill: var(--cyan);
  filter: drop-shadow(0 0 6px rgba(53, 231, 201, 0.9));
}
.hero-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(16, 27, 51, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  width: 190px;
}
.hero-card b {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--cyan);
}
.hero-card span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.fiber-divider {
  line-height: 0;
  color: var(--cyan-dim);
  background: var(--ink);
}
.fiber-divider svg {
  width: 100%;
  height: 32px;
  display: block;
}
.fiber-pulse {
  filter: drop-shadow(0 0 5px rgba(53, 231, 201, 0.9));
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    height: 300px;
    order: -1;
  }
  .hero {
    padding: 56px 0 80px;
  }
}

/* ==========================================================================
   Why-us
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(53, 231, 201, 0.12);
  color: var(--cyan-dim);
  margin-bottom: 18px;
}
.why-card h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.92rem;
  margin: 0;
}

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

/* ==========================================================================
   Packages
   ========================================================================== */
.packages {
  background: var(--paper-2);
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-btn:hover {
  border-color: var(--cyan-dim);
  color: var(--text);
}
.filter-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-pop);
}
.pkg-card.is-hidden {
  display: none;
}
.pkg-card.is-featured {
  border-color: var(--ink);
  position: relative;
  background: var(--ink);
  color: var(--white);
}
.pkg-card.is-featured .pkg-cat,
.pkg-card.is-featured p {
  color: rgba(255, 255, 255, 0.62);
}
.pkg-card.is-featured .pkg-speed {
  color: var(--cyan);
}
.pkg-card.is-featured li {
  color: rgba(255, 255, 255, 0.88);
}
.pkg-card.is-featured .btn-ghost {
  background: var(--cyan);
  color: var(--ink);
  border-color: var(--cyan);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--amber);
  color: #26170a;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}
.pkg-cat {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-dim);
  margin-bottom: 10px;
}
.pkg-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.pkg-speed {
  font-family: var(--font-mono);
  font-size: 2.1rem;
  color: var(--text);
  margin-bottom: 4px;
}
.pkg-speed span {
  font-size: 0.95rem;
  color: var(--slate);
  font-family: var(--font-body);
}
.pkg-card > p {
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.pkg-features {
  margin-bottom: 26px;
  flex: 1;
}
.pkg-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  padding: 6px 0;
  color: var(--text-soft);
}
.pkg-features svg {
  flex-shrink: 0;
  color: var(--cyan-dim);
  margin-top: 3px;
}
.pkg-card.is-featured .pkg-features svg {
  color: var(--cyan);
}

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

/* ==========================================================================
   Additional services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  border-radius: var(--radius-md);
  padding: 26px 22px;
  background: var(--ink-2);
  color: var(--white);
  border: 1px solid var(--line-dark);
}
.service-card .why-icon {
  background: rgba(255, 178, 56, 0.14);
  color: var(--amber);
}
.service-card h3 {
  color: var(--white);
  font-size: 1.02rem;
}
.service-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin: 0;
}
.services-wrap {
  background: var(--ink);
  color: var(--white);
}
.services-wrap .section-head p {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-light);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  position: relative;
  transition: all 0.2s ease;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--text-soft);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faq-q .plus::before {
  width: 10px;
  height: 1.5px;
}
.faq-q .plus::after {
  width: 1.5px;
  height: 10px;
  transition: transform 0.2s ease;
}
.faq-item.is-open .plus {
  background: var(--ink);
  border-color: var(--ink);
}
.faq-item.is-open .plus::before,
.faq-item.is-open .plus::after {
  background: var(--white);
}
.faq-item.is-open .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  padding: 0 4px 22px;
  margin: 0;
}
.faq-item.is-open .faq-a {
  max-height: 220px;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: radial-gradient(90% 140% at 85% 20%, #16233f 0%, var(--ink) 60%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin: 0 24px;
  max-width: calc(var(--container) - 0px);
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 10px;
  max-width: 480px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 420px;
  margin: 0;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  color: var(--cyan);
  font-size: 1rem;
}

@media (max-width: 760px) {
  .cta-banner {
    padding: 40px 26px;
    margin: 0 16px;
  }
}

/* ==========================================================================
   About page
   ========================================================================== */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0 88px;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow {
  margin-bottom: 18px;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.9rem);
  max-width: 720px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
  font-size: 1.05rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.about-intro .stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat-box {
  background: var(--paper-2);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.stat-box b {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--cyan-dim);
}
.stat-box span {
  font-size: 0.82rem;
  color: var(--text-soft);
}
@media (max-width: 860px) {
  .about-intro {
    grid-template-columns: 1fr;
  }
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vmv-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.vmv-card .eyebrow {
  margin-bottom: 14px;
}
.vmv-card h3 {
  font-size: 1.15rem;
}
@media (max-width: 860px) {
  .vmv-grid {
    grid-template-columns: 1fr;
  }
}

.timeline {
  background: var(--paper-2);
}
.timeline-track {
  position: relative;
}
.timeline-track::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line-light);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 60px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: 11px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--cyan-dim);
}
.timeline-year {
  font-family: var(--font-mono);
  color: var(--cyan-dim);
  font-size: 0.85rem;
  font-weight: 600;
}
.timeline-item h3 {
  font-size: 1.15rem;
  margin: 4px 0 6px;
}
.timeline-item p {
  margin: 0;
  max-width: 560px;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.leader-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  padding: 34px 22px;
}
.leader-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.leader-card h3 {
  font-size: 1.08rem;
  margin-bottom: 2px;
}
.leader-role {
  color: var(--cyan-dim);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-mono);
  margin-bottom: 12px;
}
.leader-card p {
  font-size: 0.9rem;
  margin: 0;
}
@media (max-width: 860px) {
  .leaders-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Coverage page
   ========================================================================== */
.coverage-search {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 10px;
  display: flex;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  max-width: 560px;
  margin: 0 auto 12px;
}
.coverage-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: transparent;
  color: var(--text);
}
.coverage-search svg {
  color: var(--slate);
  margin: auto 6px auto 14px;
  flex-shrink: 0;
}
.coverage-hint {
  text-align: center;
  color: var(--slate);
  font-size: 0.85rem;
  margin-bottom: 48px;
}

.coverage-empty {
  display: none;
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
  background: #fff6ea;
  border: 1px solid #ffe1ad;
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.coverage-empty.is-visible {
  display: block;
}
.coverage-empty h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.coverage-empty p {
  margin-bottom: 18px;
}

.province-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.province-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: opacity 0.15s ease;
}
.province-card.is-hidden {
  display: none;
}
.province-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.province-head h3 {
  font-size: 1.05rem;
  margin: 0;
}
.province-count {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--cyan-dim);
  background: rgba(53, 231, 201, 0.1);
  padding: 3px 10px;
  border-radius: 999px;
}
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--text-soft);
  background: var(--paper-2);
  padding: 7px 13px;
  border-radius: 999px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.city-chip.is-hidden {
  display: none;
}
.city-chip.is-match {
  background: var(--ink);
  color: var(--white);
}
.city-chip svg {
  color: var(--cyan-dim);
}
.city-chip.is-match svg {
  color: var(--cyan);
}
@media (max-width: 720px) {
  .province-grid {
    grid-template-columns: 1fr;
  }
}

.coverage-cta {
  text-align: center;
  margin-top: 56px;
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.contact-info-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}
.contact-info-card h2 {
  color: var(--white);
  font-size: 1.3rem;
}
.info-row {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
}
.info-row:first-of-type {
  border-top: none;
  padding-top: 22px;
}
.info-row svg {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-row h4 {
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.info-row p,
.info-row a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  margin: 0;
}
.info-row a:hover {
  color: var(--cyan);
}
.hours-table {
  margin-top: 6px;
}
.hours-table div {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  padding: 3px 0;
}
.hours-table b {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.support-note {
  margin-top: 22px;
  padding: 14px 16px;
  background: rgba(53, 231, 201, 0.08);
  border: 1px solid rgba(53, 231, 201, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--cyan);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--paper);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan-dim);
  box-shadow: 0 0 0 3px rgba(53, 231, 201, 0.18);
  background: var(--white);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field-error {
  display: none;
  color: var(--danger);
  font-size: 0.78rem;
  margin-top: 6px;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
}
.field.has-error .field-error {
  display: block;
}
.form-note {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: -6px;
  margin-bottom: 20px;
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: 14px;
  background: #ecfdf6;
  border: 1px solid #b7efd9;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.form-success.is-visible {
  display: flex;
}
.form-success svg {
  color: #14a672;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-success h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
}
.form-success p {
  margin: 0;
  font-size: 0.87rem;
}

.map-embed {
  margin-top: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-light);
}
.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Misc
   ========================================================================== */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cyan);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  box-shadow: var(--shadow-pop);
  z-index: 90;
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding: 56px 24px 40px;
}
.footer-col h3 {
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col ul li {
  padding: 6px 0;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}
.footer-col ul a:hover {
  color: var(--cyan);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  max-width: 320px;
  margin-top: 14px;
}
.footer-copy-inline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 20px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  padding: 8px 0;
}
.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--cyan);
}
.footer-contact a:hover {
  color: var(--cyan);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Gallery & Articles
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: var(--paper-2);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-pop);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(transparent, rgba(10, 17, 32, 0.85));
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 0.82rem;
  font-weight: 500;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item.gallery-tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2;
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.gallery-wide,
  .gallery-item.gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* Article grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

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

.article-card .article-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-2);
}

.article-card .article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-img img {
  transform: scale(1.04);
}

.article-card .article-body {
  padding: 20px 22px 24px;
}

.article-card .article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--slate);
  font-family: var(--font-mono);
  margin-bottom: 8px;
}

.article-card .article-meta .tag {
  background: rgba(53, 231, 201, 0.12);
  color: var(--cyan-dim);
  padding: 2px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.article-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.article-card h3 a {
  color: var(--text);
  transition: color 0.15s ease;
}

.article-card h3 a:hover {
  color: var(--cyan-dim);
}

.article-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .read-more {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--cyan-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.article-card .read-more:hover {
  gap: 12px;
}

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

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

/* ==========================================================================
   Floating Action Button (FAB) with FAQ & WhatsApp
   ========================================================================== */
.fab-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.fab-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--cyan);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(53, 231, 201, 0.5);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fab-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(53, 231, 201, 0.6);
  background: #4af0d4;
}

.fab-toggle:active {
  transform: scale(0.92);
}

.fab-toggle .fab-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fab-toggle.is-open .fab-icon {
  transform: rotate(45deg);
}

.fab-toggle .fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(53, 231, 201, 0.3);
  animation: fabPulse 2s ease-in-out infinite;
}

.fab-toggle .fab-pulse:nth-child(2) {
  animation-delay: 0.6s;
}

@keyframes fabPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* FAB menu */
.fab-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom right;
}

.fab-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fab-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  min-width: 200px;
}

.fab-menu-item:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-pop);
  border-color: var(--cyan-dim);
}

.fab-menu-item .fab-menu-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.fab-menu-item .fab-menu-icon.green {
  background: #25d366;
}

.fab-menu-item .fab-menu-icon.cyan {
  background: var(--cyan-dim);
}

.fab-menu-item .fab-menu-icon.amber {
  background: var(--amber);
}

.fab-menu-item .fab-menu-icon.purple {
  background: #7c3aed;
}

.fab-menu-item .fab-menu-label {
  display: flex;
  flex-direction: column;
}

.fab-menu-item .fab-menu-label small {
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--slate);
}

/* FAQ panel in FAB */
.fab-faq-panel {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  width: 340px;
  max-height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fab-faq-panel .fab-faq-header {
  padding: 16px 20px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.fab-faq-panel .fab-faq-header h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0;
}

.fab-faq-panel .fab-faq-header button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.fab-faq-panel .fab-faq-header button:hover {
  color: var(--white);
}

.fab-faq-panel .fab-faq-list {
  overflow-y: auto;
  padding: 8px 0;
  flex: 1;
}

.fab-faq-panel .fab-faq-list .fab-faq-item {
  border-bottom: 1px solid var(--line-light);
}

.fab-faq-panel .fab-faq-list .fab-faq-item:last-child {
  border-bottom: none;
}

.fab-faq-panel .fab-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.15s ease;
}

.fab-faq-panel .fab-faq-q:hover {
  background: var(--paper-2);
}

.fab-faq-panel .fab-faq-q .fab-plus {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  position: relative;
  transition: all 0.2s ease;
}

.fab-faq-panel .fab-faq-q .fab-plus::before,
.fab-faq-panel .fab-faq-q .fab-plus::after {
  content: "";
  position: absolute;
  background: var(--text-soft);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.fab-faq-panel .fab-faq-q .fab-plus::before {
  width: 8px;
  height: 1.5px;
}

.fab-faq-panel .fab-faq-q .fab-plus::after {
  width: 1.5px;
  height: 8px;
  transition: transform 0.2s ease;
}

.fab-faq-panel .fab-faq-item.is-open .fab-plus {
  background: var(--ink);
  border-color: var(--ink);
}

.fab-faq-panel .fab-faq-item.is-open .fab-plus::before,
.fab-faq-panel .fab-faq-item.is-open .fab-plus::after {
  background: var(--white);
}

.fab-faq-panel .fab-faq-item.is-open .fab-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.fab-faq-panel .fab-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.fab-faq-panel .fab-faq-a p {
  padding: 0 20px 16px 20px;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.fab-faq-panel .fab-faq-item.is-open .fab-faq-a {
  max-height: 160px;
}

.fab-faq-panel .fab-faq-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--line-light);
  flex-shrink: 0;
  background: var(--paper);
}

.fab-faq-panel .fab-faq-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--cyan-dim);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.15s ease;
}

.fab-faq-panel .fab-faq-footer a:hover {
  color: var(--ink);
}

.fab-faq-panel .fab-faq-footer a svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .fab-wrapper {
    bottom: 16px;
    right: 16px;
  }
  .fab-toggle {
    width: 52px;
    height: 52px;
  }
  .fab-faq-panel {
    width: calc(100vw - 32px);
    max-width: 360px;
    max-height: 360px;
    right: 0;
  }
  .fab-menu-item {
    min-width: 160px;
    padding: 12px 16px;
    font-size: 0.82rem;
  }
}
