html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

progress {
  vertical-align: baseline;
  display: inline-block;
}

a:active,
a:hover {
  outline: 0;
}

strong {
  font-weight: bold;
}

h1 {
  margin: 20px 0px;
  font-size: 2em;
}

h2 {
  margin: 20px 0px;
}

input {
  color: inherit;
  font: inherit;
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 500;
}

ul,
ol,
li {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

a {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  outline: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
  border: 0;
  height: auto;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

.wrapper {
  min-height: 100vh;
  margin: 0 auto;
  box-sizing: border-box;
}

.main {
  flex: 1 0 auto;
}

a {
  text-transform: none;
  margin: 0;
  padding: 0;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  max-width: 1680px;
  padding: 0px 5px;
  width: 100%;
  margin: 0 auto;
}

footer,
header,
menu,
nav,
section {
  display: block;
}

a:active,
a:hover {
  outline: 0;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
  text-align: center;
}

h3 {
  margin: 10px 0px;
  padding: 0px;
}

svg:not(:root) {
  overflow: hidden;
}

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

/* style.css — GamePort Market (index page) */
/* Color palette inspired by Indian accents: saffron, deep blue, emerald */
:root {
  --max-width: 1200px;
  --bg-500: #071025;
  --bg-600: #031027;
  --card: #07112a;
  --muted: #b8c6d8;
  --accent: #ff8f2b; /* saffron */
  --accent-2: #0077ff; /* electric blue */
  --accent-3: #00b07a; /* emerald */
  --glass: rgba(255, 255, 255, 0.03);
  --glass-2: rgba(255, 255, 255, 0.02);
  --radius: 14px;
  --container-padding: 8px;
  --shadow-lg: 0 16px 45px rgba(3, 10, 25, 0.6);
  --fw-heading: 700;
  --fw-body: 400;
  --transition: 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
  --maxw: 1200px;
  --page-bg: #041022;
  --card-bg: rgba(255, 255, 255, 0.02);
  --glass: rgba(255, 255, 255, 0.03);
  --muted: #b8cbdc;
  --text: #eaf4ff;

  /* accents */
  --saffron: #ff8f2b; /* primary saffron */
  --indigo: #0b57d0; /* strong blue */
  --emerald: #00a76f; /* green */
  --deep: #052033; /* deep background */
  --gold: #f3c34b;

  --radius: 14px;
  --gap: 18px;
  --transition: 240ms cubic-bezier(0.2, 0.9, 0.2, 1);
  --shadow-lg: 0 18px 48px rgba(1, 6, 20, 0.7);
  --shadow-sm: 0 8px 24px rgba(1, 6, 20, 0.5);

  --maxw: 1200px;
  --bg: #041022;
  --card: rgba(255, 255, 255, 0.02);
  --muted: #b8cbdc;
  --text: #eaf4ff;
  --accent1: #ff8f2b; /* saffron */
  --accent2: #0b57d0; /* indigo */
  --accent3: #00a76f; /* emerald */
  --glass: rgba(255, 255, 255, 0.02);
  --radius: 12px;
  --gap: 18px;
  --transition: 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.6);

  --primary-saffron: #ff9933;
  --bg-dark: #0d1117;
  --text-light: #eaf4ff;

  --header-bg: #1e1e2f;
  --footer-bg: #11111a;
  --logo-color: #ffd166;
  --nav-link-color: #f0f0f5;
  --nav-link-hover: #06d6a0;
  --footer-text-color: #e0e0f0;
  --footer-link-color: #ffd166;
  --footer-link-hover: #06d6a0;
  --toggler-color: #ffd166;
  --toggler-hover: #06d6a0;
  --accent-border: #06d6a0;

  --primary-saffron: #ff9933;
  --bg-dark: #0d1117;
  --text-light: #eaf4ff;
}

/* Base */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: linear-gradient(180deg, var(--bg-600) 0%, #021025 70%);
  color: #e7f0fb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  -webkit-tap-highlight-color: transparent;
}

/* Container */
.container-index {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Header */
.header-index {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(8px);
  background: linear-gradient(
    180deg,
    rgba(2, 6, 16, 0.55),
    rgba(2, 6, 16, 0.35)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.header-index .container-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.header-logo {
  margin: 0;
  font-weight: var(--fw-heading);
  letter-spacing: 0.6px;
  font-family: "Poppins", system-ui, sans-serif;
}
.nav-index ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav-index a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 500;
  transition: color var(--transition), background var(--transition),
    transform var(--transition);
}
.nav-index a:focus,
.nav-index a:hover {
  color: #fff;
  background: var(--glass);
  transform: translateY(-3px);
  outline: none;
}

/* HERO */
.hero-index {
  position: relative;
  margin: 28px 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
  background: radial-gradient(
      1200px 400px at 10% 10%,
      rgba(255, 143, 43, 0.07),
      transparent 8%
    ),
    linear-gradient(180deg, rgba(0, 10, 20, 0.36), rgba(3, 6, 15, 0.6));
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url("img/bg-app1.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.14;
  transform: scale(1.02);
  filter: blur(4px) saturate(120%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 6;
  padding: 48px;
  max-width: 720px;
  text-align: center;
}
.hero-title {
  margin: 0 0 10px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.6px;
  color: linear-gradient(90deg, var(--accent), var(--accent-2));
  background: linear-gradient(90deg, #fff, #cfe9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.hero-subtitle {
  margin: 10px 0 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

/* sub-ornament in hero: animated word (CSS only animation) */
.hero-title::after {
  content: " • India Ready";
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-3);
  margin-left: 10px;
  opacity: 0.95;
  display: inline-block;
  transform-origin: center;
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

/* QUICK ACTIONS */
.actions-index {
  margin: 28px 0;
}
.actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.action-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 12px;
  padding: 18px;
  min-height: 130px;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}
.action-card img {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.action-card h3 {
  margin: 0;
  font-size: 1.03rem;
}
.action-card p {
  margin: 6px 0 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(2, 8, 25, 0.6);
}

/* ASYMMETRIC GALLERY */
.gallery-index {
  margin: 28px 0;
}
.gallery-index h2 {
  margin: 0 0 12px 0;
  font-family: "Poppins", sans-serif;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 450ms cubic-bezier(0.2, 0.9, 0.2, 1);
  box-shadow: 0 10px 30px rgba(2, 6, 18, 0.6);
}
/* asymmetry — rely on implicit order to create unique layout */
.gallery-grid img:nth-child(1) {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
}
.gallery-grid img:nth-child(2) {
  grid-column: 4 / span 3;
  grid-row: 1 / span 1;
}
.gallery-grid img:nth-child(3) {
  grid-column: 4 / span 2;
  grid-row: 2 / span 1;
}
.gallery-grid img:nth-child(4) {
  grid-column: 1 / span 3;
  grid-row: 3 / span 1;
}
.gallery-grid img:hover {
  transform: scale(1.04);
}

/* LIVE STATS */
.stats-index {
  margin: 28px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0.015)
  );
  padding: 20px;
  border-radius: 12px;
}
.stats-index h2 {
  margin: 0 0 8px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 12px;
}
.stat-item {
  background: var(--card);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-item h3 {
  margin: 0;
  font-size: 1.35rem;
}
.stat-item p {
  margin: 8px 0 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.counter {
  font-weight: 700;
  font-size: 1.45rem;
  color: #fff;
  letter-spacing: 0.4px;
}

/* small progress accent bar under stats (visual) */
.stat-item::after {
  content: "";
  display: block;
  height: 6px;
  width: 60%;
  margin: 10px auto 0 auto;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 143, 43, 0.9),
    rgba(0, 119, 255, 0.85)
  );
  opacity: 0.9;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1200ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* QUOTE OF THE DAY */
.quote-index {
  margin: 28px 0;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(0, 20, 40, 0.25),
    rgba(0, 15, 30, 0.3)
  );
  display: flex;
  align-items: center;
}
.quote-index blockquote {
  margin: 0;
  font-size: 1.05rem;
  color: #f1f8ff;
  max-width: 84ch;
  font-style: italic;
}

/* TIMELINE - vertical */
.timeline-index {
  margin: 28px 0;
}
.timeline-index h2 {
  margin: 0 0 12px 0;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.timeline-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--glass);
  padding: 12px;
  border-radius: 12px;
  transition: transform var(--transition);
}
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #051124;
  flex-shrink: 0;
}
.timeline-step p {
  margin: 0;
  color: var(--muted);
}

/* COMMUNITY */
.community-index {
  margin: 28px 0;
}
.community-index h2 {
  margin: 0 0 12px 0;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.member-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  padding: 12px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: column;
}
.member-card img {
  width: 100%;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(2, 8, 20, 0.6);
}
.member-card h3 {
  margin: 0;
  font-size: 1.02rem;
}
.member-card p {
  margin: 4px 0 0 0;
  color: var(--muted);
}

/* SEASONAL OFFERS — carousel (CSS baseline, JS for movement) */
.offers-index {
  margin: 28px 0;
}
.offers-index h2 {
  margin: 0 0 12px 0;
}
.carousel {
  position: relative;
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(0, 10, 20, 0.2),
    rgba(0, 10, 20, 0.12)
  );
}
.carousel-item {
  min-width: 260px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 8px 28px rgba(2, 6, 20, 0.6);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #fff;
  transform: translateZ(0);
}

/* FINAL CALL */
.final-index {
  margin: 32px 0 80px 0;
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(1, 10, 20, 0.24),
    rgba(1, 15, 30, 0.36)
  );
  display: flex;
  gap: 16px;
  align-items: center;
}
.final-index h2 {
  margin: 0;
}
.final-index p {
  margin: 6px 0 0 0;
  color: var(--muted);
}

/* Footer */
.footer-index {
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(2, 6, 20, 0.6), rgba(2, 6, 20, 0.9));
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}
.footer-index p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

/* Hover & focus accessibility */
a:focus {
  outline: 3px solid rgba(0, 119, 255, 0.14);
  outline-offset: 3px;
}

/* Animations when scrolled into view (will be toggled by JS via class .in-view) */
.in-view .stat-item::after {
  transform: scaleX(1);
} /* progress expand */
.in-view .counter {
  transform: translateY(0);
  opacity: 1;
  transition: transform 900ms var(--transition), opacity 400ms var(--transition);
}
.stat-item .counter {
  transform: translateY(10px);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 120px;
  }
  .gallery-grid img:nth-child(1) {
    grid-column: 1 / span 4;
    grid-row: 1 / span 1;
  }
  .gallery-grid img:nth-child(5) {
    grid-column: 1 / span 2;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content {
    padding: 28px;
  }
  .hero-index {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .container-index {
    width: 100%;
  }
  .nav-index ul {
    display: none;
  } /* mobile simplified nav for now */
  .actions-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 100px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .community-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 18px;
  }
  .hero-title {
    font-size: 1.45rem;
  }
  .carousel {
    padding: 8px;
  }
  .carousel-item {
    min-width: 200px;
  }
  .hero-index {
    min-height: 300px;
  }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* style.css — styles for service.html (GamePort Market)
   - All classes are prefixed with "service-"
   - No inline styles required
   - Colors inspired by India: saffron, deep blue, emerald
   - Responsive layout and CSS-only micro-interactions where practical
*/

/* ======================
   Root variables & reset
   ====================== */

/* central container used by page */
.service-container {
  width: 94%;
  max-width: var(--maxw);
  margin: 28px auto;
  padding-bottom: 80px; /* footer clearance if needed */
}

/* =======================
     HERO (minimalist)
     ======================= */
.service-hero {
  background: linear-gradient(
    180deg,
    rgba(255, 143, 43, 0.06),
    rgba(5, 17, 36, 0.55)
  );
  border-radius: 18px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  padding: 48px 20px;
  flex-direction: column;
}
.service-hero-title {
  margin: 0 0 14px;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  letter-spacing: -0.4px;
  background: linear-gradient(90deg, #fff, #cfe9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-hero-btn {
  display: inline-block;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--saffron), var(--indigo));
  color: #021024;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition),
    opacity var(--transition);
}
.service-hero-btn:hover,
.service-hero-btn:focus {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(3, 7, 28, 0.6);
  outline: none;
}

/* =======================
     Service Matrix (3x3)
     ======================= */
.service-matrix {
  margin-top: 28px;
}
.service-section-title {
  font-family: "Poppins", sans-serif;
  margin: 0 0 14px 0;
  font-size: 1.15rem;
  color: var(--text);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service-cell {
  background: var(--card-bg);
  padding: 18px;
  border-radius: 12px;
  min-height: 110px;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.service-cell h3 {
  margin: 0;
  font-size: 1.02rem;
}
.service-cell p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* color accents per cell */
.service-cell.orange {
  box-shadow: 0 10px 30px rgba(255, 143, 43, 0.06);
  border-left: 4px solid var(--saffron);
}
.service-cell.green {
  box-shadow: 0 10px 30px rgba(0, 167, 111, 0.06);
  border-left: 4px solid var(--emerald);
}
.service-cell.blue {
  box-shadow: 0 10px 30px rgba(11, 87, 208, 0.06);
  border-left: 4px solid var(--indigo);
}
.service-cell.purple {
  box-shadow: 0 10px 30px rgba(140, 70, 200, 0.04);
  border-left: 4px solid #9b6ef2;
}
.service-cell.red {
  box-shadow: 0 10px 30px rgba(255, 85, 85, 0.04);
  border-left: 4px solid #ff5b5b;
}
.service-cell.gold {
  box-shadow: 0 10px 30px rgba(243, 195, 75, 0.06);
  border-left: 4px solid var(--gold);
}
.service-cell.teal {
  box-shadow: 0 10px 30px rgba(0, 160, 150, 0.04);
  border-left: 4px solid #00b3a6;
}
.service-cell.violet {
  box-shadow: 0 10px 30px rgba(120, 80, 200, 0.04);
  border-left: 4px solid #8c5be0;
}
.service-cell.navy {
  box-shadow: 0 10px 30px rgba(2, 40, 80, 0.04);
  border-left: 4px solid #073b6a;
}

/* hover micro-interaction */
.service-cell:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(2, 6, 30, 0.6);
}

/* =======================
     Case Studies (tabs)
     ======================= */
.service-cases {
  margin-top: 32px;
}
.service-tabs {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0.02)
  );
  padding: 14px;
  border-radius: 12px;
}
.service-tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.service-tab-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 600;
}
.service-tab-btn.active {
  background: linear-gradient(90deg, var(--indigo), var(--saffron));
  color: #021024;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.service-tab-content {
  display: none;
  color: var(--muted);
  padding: 12px;
}
.service-tab-content.active {
  display: block;
}

/* =======================
     Comparison Table
     ======================= */
.service-pricing {
  margin-top: 28px;
}
.service-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-table thead tr {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
}
.service-table th,
.service-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.95rem;
}
.service-table th {
  color: #fff;
  font-weight: 700;
}
.service-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.01);
}

/* highlight Pro column */
.service-table td:nth-child(3) {
  background: linear-gradient(
    180deg,
    rgba(7, 87, 208, 0.06),
    rgba(7, 87, 208, 0.02)
  );
}

/* =======================
     Before/After Gallery (CSS-only slider hover)
     ======================= */
.service-gallery {
  margin-top: 28px;
}
.service-slider {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.service-slide {
  width: 100%;
  max-width: 980px;
  height: 360px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.06));
}
/* Stack images: before is below, after on top clipped */
.service-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: clip-path 600ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 600ms var(--transition);
}
.service-slide img:first-child {
  z-index: 1;
  transform: scale(1.02);
}
.service-slide img:last-child {
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%); /* reveal half */
  -webkit-clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
  transition: clip-path 600ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.service-slide::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  transform: translateX(-50%);
  z-index: 3;
}
/* handle decorative */
.service-slide::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--saffron), var(--indigo));
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.6);
  display: grid;
  place-items: center;
  color: #021024;
  font-weight: 800;
  font-size: 0.9rem;
}
.service-slide:hover img:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* reveal full after */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* =======================
     FAQ Accordion
     ======================= */
.service-faq {
  margin-top: 28px;
}
.service-faq-item {
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card-bg);
}
.service-faq-question {
  width: 100%;
  text-align: left;
  padding: 14px;
  font-weight: 700;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-faq-question::after {
  content: "▾";
  display: inline-block;
  transform: rotate(0);
  transition: transform var(--transition);
  color: var(--muted);
}
.service-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms cubic-bezier(0.2, 0.9, 0.2, 1),
    padding var(--transition);
  padding: 0 14px;
  color: var(--muted);
}
.service-faq-question.open::after {
  transform: rotate(180deg);
  color: #fff;
}
.service-faq-answer.open {
  padding: 12px 14px 18px 14px;
  max-height: 420px;
}

/* =======================
     Process timeline (horizontal)
     ======================= */
.service-process {
  margin-top: 28px;
}
.service-timeline {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  overflow: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.service-step {
  min-width: 160px;
  background: var(--card-bg);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.service-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--indigo), var(--saffron));
  color: #021024;
  font-weight: 800;
}
.service-step p {
  margin: 0;
  color: var(--muted);
}

/* =======================
     Testimonials grid
     ======================= */
.service-testimonials {
  margin-top: 28px;
}
.service-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.service-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  padding: 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.service-card p {
  margin: 0 0 8px 0;
  color: var(--muted);
}
.service-card span {
  font-weight: 800;
  color: var(--saffron);
}

/* =======================
     Guarantees (icons with appear animation)
     ======================= */
.service-guarantee {
  margin-top: 28px;
}
.service-guarantee-icons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.service-icon-item {
  background: var(--card-bg);
  padding: 12px;
  border-radius: 12px;
  min-width: 160px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transform: translateY(12px);
  opacity: 0;
  animation: riseIn 700ms var(--transition) forwards;
}
.service-icon-item:nth-child(1) {
  animation-delay: 120ms;
}
.service-icon-item:nth-child(2) {
  animation-delay: 260ms;
}
.service-icon-item:nth-child(3) {
  animation-delay: 400ms;
}
.service-icon-item span {
  font-size: 1.6rem;
}
.service-icon-item p {
  margin: 0;
  color: var(--muted);
}
@keyframes riseIn {
  to {
    transform: none;
    opacity: 1;
  }
}

/* =======================
     Final CTA block
     ======================= */
.service-final {
  margin-top: 32px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    rgba(2, 8, 20, 0.22),
    rgba(2, 12, 30, 0.34)
  );
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.service-final p {
  margin: 0;
  color: var(--muted);
}
.service-final-btn {
  background: linear-gradient(90deg, var(--saffron), var(--indigo));
  color: #021024;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.service-final-btn:hover {
  transform: translateY(-6px);
}

/* =======================
     Utility: responsive & accessibility
     ======================= */
@media (max-width: 1000px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-timeline {
    gap: 10px;
  }
  .service-step {
    min-width: 140px;
  }
}
@media (max-width: 620px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-tab-buttons {
    gap: 8px;
  }
  .service-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .service-slide {
    height: 240px;
  }
  .service-timeline {
    overflow-x: auto;
    padding-bottom: 14px;
  }
  .service-hero {
    padding: 28px 18px;
  }
  .service-hero-title {
    font-size: 1.25rem;
  }
  .service-final {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

/* Container */
.about-page {
  width: 94%;
  max-width: var(--maxw);
  margin: 28px auto 80px auto;
}

/* HERO */
.about-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/bg-app2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.26;
  filter: saturate(1.05) contrast(0.97);
  transform: scale(1.02);
}
.about-hero-content {
  position: relative;
  padding: 34px 24px;
  z-index: 2;
  max-width: 900px;
}
.about-hero-title {
  margin: 0 0 8px 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.02;
  background: linear-gradient(90deg, #fff, #cfe9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-hero-sub {
  margin: 0;
  color: var(--muted);
}

/* SECTION TITLES */
.about-section-title {
  font-family: "Poppins", sans-serif;
  margin: 0 0 12px 0;
  font-size: 1.05rem;
  color: var(--text);
}

/* TIMELINE */
.about-timeline {
  margin-bottom: 28px;
}
.about-tl-wrap {
  position: relative;
}
.about-tl-track {
  display: flex;
  gap: 14px;
  padding: 10px 6px;
  overflow: auto;
  scroll-behavior: smooth;
  align-items: stretch;
}
.about-tl-item {
  min-width: 220px;
  background: var(--card);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition);
}
.about-tl-item:focus-within,
.about-tl-item:hover {
  transform: translateY(-8px);
}
.about-tl-time {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--accent2);
}

/* TL controls */
.about-tl-controls {
  position: absolute;
  right: 10px;
  top: 6px;
  display: flex;
  gap: 8px;
}
.about-tl-prev,
.about-tl-next {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}

/* TEAM */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-bottom: 28px;
}
.about-member {
  background: var(--card);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-member-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 10px;
}
.about-member h3 {
  margin: 0;
  font-size: 1rem;
}
.about-member-role {
  margin: 6px 0 0 0;
  color: var(--muted);
}
.about-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(3, 7, 28, 0.6);
}

/* VALUES - circular charts */
.about-values-grid {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.about-circle {
  width: 160px;
  height: 160px;
  position: relative;
  border-radius: 12px;
  background: var(--card);
  display: grid;
  place-items: center;
  @media (max-width: 425px) {
    width: 100%;
  }
}
.about-circle-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.about-circle-svg .bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 3.5;
}
.about-circle-svg .progress {
  fill: none;
  stroke: var(--accent1);
  stroke-width: 3.5;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 900ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.about-circle-content {
  position: relative;
  text-align: center;
  color: var(--text);
}
.about-circle-content strong {
  display: block;
  font-size: 0.95rem;
}
.about-circle-content span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

/* AWARDS shelf */
.about-award-shelf {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.about-award {
  width: 220px;
  background: var(--card);
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  @media (max-width: 425px) {
    width: 100%;
  }
}
.about-award img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
}
.about-award figcaption {
  margin-top: 8px;
  color: var(--muted);
}

/* ECOSYSTEM DIAGRAM (CSS nodes) */
.about-eco-diagram {
  position: relative;
  height: 320px;
  margin-bottom: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 12px;
  padding: 18px;
  display: grid;
  align-items: center;
  justify-items: center;
}
.eco-node {
  position: absolute;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--card);
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.eco-node-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  color: #021024;
  font-weight: 800;
  width: 160px;
}
.eco-node-dev {
  left: 14%;
  top: 30%;
  @media (max-width: 550px) {
    left: 0%;
    top: 15%;
  }
}
.eco-node-players {
  right: 12%;
  top: 28%;
  @media (max-width: 550px) {
    right: 0%;
    top: 10%;
  }
}
.eco-node-partners {
  left: 20%;
  bottom: 18%;
  @media (max-width: 550px) {
    left: 10%;
    bottom: 10%;
  }
}
.eco-node-analytics {
  right: 20%;
  bottom: 18%;
  @media (max-width: 550px) {
    right: 0%;
    bottom: 20%;
  }
}
.eco-caption {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* MISSION */
.about-mission {
  margin-bottom: 28px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0.02)
  );
  padding: 18px;
  border-radius: 12px;
}
.about-mission-text {
  font-size: 1.12rem;
  margin: 0;
  color: var(--text);
}
.about-mission-text strong {
  color: var(--accent3);
  font-weight: 800;
}

/* MASONRY GALLERY (CSS columns) */
.about-masonry {
  column-count: 3;
  column-gap: 12px;
  margin-bottom: 28px;
}
.about-masonry img {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* GROWTH NUMBERS */
.about-growth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.about-growth-card {
  background: var(--card);
  padding: 12px;
  border-radius: 10px;
  text-align: center;
}
.growth-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent2);
}
.about-growth-chart {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-spark {
  width: 100%;
  max-width: 540px;
  height: 80px;
}
.spark-line {
  stroke: var(--accent1);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  fill: none;
}

/* FINAL WORD */
.about-final {
  margin-top: 28px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.06),
    rgba(255, 255, 255, 0.01)
  );
  padding: 18px;
  border-radius: 12px;
}
.about-final-text {
  margin: 0;
  color: var(--muted);
}

/* responsive */
@media (max-width: 1000px) {
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-masonry {
    column-count: 2;
  }
  .about-values-grid {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .about-growth-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .about-page {
    width: 96%;
  }
  .about-tl-track {
    flex-direction: row;
  }
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  .about-masonry {
    column-count: 1;
  }
  .about-values-grid {
    gap: 12px;
    justify-content: center;
  }
  .about-growth-grid {
    grid-template-columns: 1fr;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
}

.contact-page {
  width: 94%;
  max-width: 1200px;
  margin: 2rem auto;
  font-family: "Poppins", sans-serif;
  color: #f5f5f5;
  background: #0b0c10;
}

/* HERO MAP */
.contact-hero {
  text-align: center;
  margin-bottom: 2rem;
}
.contact-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(90deg, #ff6a00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.contact-map-container iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.3);
}

/* MULTI CONTACT GRID */
.contact-methods {
  margin-bottom: 2rem;
}
.contact-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.contact-method {
  flex: 1 1 150px;
  background: linear-gradient(135deg, #1f2833, #66fcf1);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  text-decoration: none;
  color: #0b0c10;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(102, 252, 241, 0.3);
}
.contact-method:hover {
  background: linear-gradient(135deg, #45a29e, #66fcf1);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(102, 252, 241, 0.5);
}

/* FORM */
.contact-form-section {
  margin-bottom: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #f0f0f0;
  transition: 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #ff6a00;
  background: rgba(255, 255, 255, 0.15);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  width: 100%;
  max-width: 320px;
  padding: 0.85rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff6a00, #ffb347);
  color: #0b0c10;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}
.contact-form button:hover {
  opacity: 0.95;
  transform: scale(1.03);
}
.privacy-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #c5c6c7;
}

/* ACCORDION */
.branch-accordion {
  margin-bottom: 2rem;
}
.branch-header {
  width: 100%;
  padding: 0.85rem 1.2rem;
  text-align: left;
  border: none;
  background: linear-gradient(135deg, #0b0c10, #1f2833);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #66fcf1;
  transition: all 0.3s ease;
}
.branch-header:hover {
  background: linear-gradient(135deg, #45a29e, #66fcf1);
  color: #0b0c10;
}
.branch-body {
  padding: 0.75rem 1rem;
  display: none;
  background: rgba(102, 252, 241, 0.05);
  border-radius: 8px;
  color: #0b0c10;
}
.branch-body p {
  color: #fff;
}
.branch-body a {
  color: #ff6a00;
  text-decoration: underline;
}

/* HOURS & EMERGENCY */
.contact-hours,
.contact-emergency {
  margin-bottom: 2rem;
  background: rgba(255, 106, 0, 0.08);
  padding: 1rem;
  border-radius: 12px;
}
.contact-status {
  font-weight: 700;
  color: #ffb347;
}

/* SOCIAL PROOF & FACTS */
.contact-proof ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-proof li {
  margin-bottom: 0.5rem;
  color: #c5c6c7;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* GALLERY */
.gallery-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  padding-bottom: 0.5rem;
  @media (max-width: 550px) {
    justify-content: flex-start;
  }
}
.gallery-slider img {
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(255, 106, 0, 0.3);
  transition: transform 0.3s ease;
}
.gallery-slider img:hover {
  transform: scale(1.05);
}

/* FINAL WORD */
.contact-final {
  text-align: center;
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffb347;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.thanks-content {
  padding: 10px;
}

.thanks-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  text-align: center;
  flex-direction: column;
  gap: 1rem;
}
.btn-return-home {
  padding: 0.75rem 1.5rem;
  background: var(--primary-saffron);
  color: #000;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}
.btn-return-home:hover {
  opacity: 0.9;
}

.index-header {
  background: var(--header-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease;
}

.index-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--logo-color);
  text-decoration: none;
}

.index-nav-list {
  display: flex;
  gap: 2rem;
}

.index-nav-link {
  color: var(--nav-link-color);
  font-weight: 600;
  position: relative;
  text-decoration: none;
}

.index-nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent-border);
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease;
}

.index-nav-link:hover::after {
  width: 100%;
}
.index-nav-link:hover {
  color: var(--nav-link-hover);
}

/* Burger Toggler */
.index-toggler {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.index-toggler-line {
  width: 28px;
  height: 3px;
  background: var(--toggler-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Адаптив */
@media (max-width: 900px) {
  .index-nav-list {
    position: fixed;
    top: 35px;
    right: -100%;
    width: 150px;
    height: 100%;
    flex-direction: column;
    background: var(--header-bg);
    padding: 2rem 1rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.25);
    text-align: right;
  }

  .index-nav-list.active {
    right: 0;
  }

  .index-toggler {
    display: flex;
  }
}

/* Анимация линий при открытии */
.index-toggler.active .index-toggler-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.index-toggler.active .index-toggler-line:nth-child(2) {
  opacity: 0;
}
.index-toggler.active .index-toggler-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Footer Styles */
.index-footer {
  background: var(--footer-bg);
  color: var(--footer-text-color);
  padding: 3rem 1rem;
  border-top: 3px solid var(--accent-border);
}
.index-footer h3 {
  margin-bottom: 0.75rem;
  color: var(--footer-link-color);
}
.index-footer-nav-list,
.index-footer-contacts,
.index-footer-policies {
  list-style: none;
  padding: 0;
  margin: 0;
}
.index-footer-nav-link,
.index-footer-contacts a {
  color: var(--footer-link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.index-footer-nav-link:hover,
.index-footer-contacts a:hover {
  color: var(--footer-link-hover);
}
.index-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.index-footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #bbb;
  font-style: italic;
}

/* Добавляем псевдоэлементы для декоративности */
.index-footer::before {
  content: "";
  display: block;
  height: 4px;
  width: 50px;
  background: var(--accent-border);
  margin: 0 auto 1rem auto;
  border-radius: 2px;
}
.index-header::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #ffd166, #06d6a0, #118ab2);
  opacity: 0.4;
}

.privacy-header {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 2rem 0;
  color: #fff;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  padding: 0 1.5rem;
  font-family: "Arial", sans-serif;
  line-height: 1.7;
  color: #333;
}

.privacy-container h2 {
  color: #0077cc;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.privacy-container p {
  margin-bottom: 1rem;
  text-align: justify;
}

.privacy-point {
  background: #f9f9f9;
  border-left: 5px solid #0077cc;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.privacy-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.privacy-contact {
  font-weight: 600;
  color: #0077cc;
  text-decoration: none;
}

.terms-header {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 2rem 0;
  color: #fff;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  padding: 0 1.5rem;
  font-family: "Arial", sans-serif;
  line-height: 1.7;
  color: #333;
}

.terms-container h2 {
  color: #d35400;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.terms-container p {
  margin-bottom: 1rem;
  text-align: justify;
}

.terms-point {
  background: #fff8f0;
  border-left: 5px solid #d35400;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.terms-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.terms-contact {
  font-weight: 600;
  color: #d35400;
  text-decoration: none;
}

.about-growth {
  background: linear-gradient(160deg, #0f1c2c, #1b2a48);
  padding: 3rem 2rem;
  border-radius: 16px;
  color: #f0f8ff;
}
.about-section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  font-weight: 800;
  background: linear-gradient(90deg, #ffcc00, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}
.about-growth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.about-growth-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.about-growth-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255, 204, 0, 0.15);
}
.growth-num {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #00ffe0;
  margin-bottom: 0.5rem;
  transition: color 0.4s ease;
}
.growth-num.animated {
  color: #ffcc00;
}
.about-growth-card p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #d0e7ff;
}
.about-growth-chart {
  margin-top: 2rem;
  text-align: center;
}
.spark-line {
  stroke: #ffcc00;
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.about-growth-chart.in-view .spark-line {
  stroke-dashoffset: 0;
}
