:root {
  --sunelix-gold: #b89a4f;
  --sunelix-gold-dark: #9a7e39;
  --bg-light: #f7f5f0;
  --bg-white: #ffffff;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --transition-fast: 0.2s ease;
}

/* Global reset + base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #fafafa;
  color: var(--text-main);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ===== NAVBAR ===== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(209, 213, 219, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.8rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 40px;
  width: auto;
}

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

.brand-name {
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--sunelix-gold-dark);
  font-size: 1.1rem;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-block: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: var(--sunelix-gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===== GENERIC BUTTONS ===== */

.btn {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background var(--transition-fast), color var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--sunelix-gold);
  color: #fff;
  box-shadow: 0 12px 30px rgba(184, 154, 79, 0.35);
}

.btn-primary:hover {
  background: var(--sunelix-gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(184, 154, 79, 0.5);
}

.btn-outline {
  border-color: var(--sunelix-gold);
  color: var(--sunelix-gold-dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--sunelix-gold);
  color: #fff;
  box-shadow: 0 12px 30px rgba(184, 154, 79, 0.35);
}

.btn-ghost {
  border-color: rgba(184, 154, 79, 0.18);
  background: rgba(255, 255, 255, 0.8);
}

.btn-ghost:hover {
  border-color: rgba(184, 154, 79, 0.5);
}

.full-width {
  width: 100%;
}

/* ===== HERO ===== */

.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top left, #fff7e5 0, #fafafa 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: center;
  gap: 3.5rem;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 3.2vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  color: var(--sunelix-gold-dark);
}

.hero-text p {
  max-width: 540px;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  font-size: 0.86rem;
}

.hero-meta strong {
  display: block;
  font-size: 1rem;
}

.hero-meta span {
  color: var(--text-muted);
}

.hero-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(209, 213, 219, 0.8);
}

.hero-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat {
  background: #f9fafb;
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat .value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

.hero-footnote {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== SECTIONS ===== */

.section {
  padding: 3.5rem 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.section-header p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* ===== GRID HELPERS ===== */
.grid {
  display: grid;
  gap: 1.6rem;
}

/* Generic two-column layout used on product pages */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Simple stats grid (3 columns on desktop, 1 on mobile) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Bullet lists for content pages */
ul.list-bullets,
ol.list-bullets {
  margin: 0.75rem 0 1.1rem;
  padding-left: 1.25rem;
  color: var(--text-main);
  font-size: 0.98rem;
}

.list-bullets li + li {
  margin-top: 0.25rem;
}

/* Check-style list */
ul.list-check {
  list-style: none;
  margin: 0.75rem 0 1.1rem;
  padding-left: 0;
  font-size: 0.98rem;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.list-check li::before {
  content: "✓";
  font-weight: 600;
  margin-top: 0.1rem;
  color: var(--sunelix-gold-dark);
}


/* ===== FEATURES ===== */

.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.3rem 1.2rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

/* ===== SOLUTIONS / TABS ===== */

.solutions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.solutions-tabs {
  list-style: none;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: var(--bg-white);
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.solutions-tabs li {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast),
    transform var(--transition-fast);
}

.solutions-tabs li.active {
  background: var(--sunelix-gold);
  color: #fff;
  transform: translateY(-1px);
}

.solutions-panels {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.solutions-panel {
  display: none;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 1.3rem 1.4rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.solutions-panel.active {
  display: block;
}

.solutions-panel h3 {
  margin-bottom: 0.4rem;
}

.solutions-panel p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.solutions-panel ul {
  list-style: disc;
  padding-left: 1.2rem;
  font-size: 0.9rem;
}

.solutions-panel li + li {
  margin-top: 0.2rem;
}

/* Workflow */
.workflow {
  margin-top: 2.2rem;
}

.workflow h3 {
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}

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

.step {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  font-size: 0.9rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(184, 154, 79, 0.12);
  color: var(--sunelix-gold-dark);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

/* ===== PRICING ===== */

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  position: relative;
}

.pricing-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.pricing-card .price {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.4rem 0;
  color: var(--sunelix-gold-dark);
}

.pricing-card .price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card .subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.pricing-card ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 1.1rem;
}

.pricing-card ul li + li {
  margin-top: 0.25rem;
}

.pricing-card-highlight {
  border-color: var(--sunelix-gold);
  transform: translateY(-4px);
}

.pricing-card-highlight .badge {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(184, 154, 79, 0.12);
  color: var(--sunelix-gold-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

/* ===== DEMO ===== */

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.demo-text ul {
  list-style: disc;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.demo-text li + li {
  margin-top: 0.3rem;
}

.demo-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.demo-box h3 {
  margin-bottom: 0.8rem;
}

/* Forms */

.demo-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.86rem;
}

label {
  color: var(--text-main);
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: #fff;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast), background var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sunelix-gold);
  box-shadow: 0 0 0 1px rgba(184, 154, 79, 0.25);
  background: #fffdf7;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FAQ & CONTACT ===== */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.faq h2 {
  margin-bottom: 1rem;
}

.faq-item {
  border-radius: 14px;
  background: var(--bg-white);
  border: 1px solid rgba(209, 213, 219, 0.9);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.9rem;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--sunelix-gold-dark);
  margin-left: 1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  border-top: 1px solid rgba(229, 231, 235, 0.7);
  transition: max-height 0.25s ease;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.6rem 0 0.9rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.contact-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.contact-box h2 {
  margin-bottom: 0.4rem;
}

.contact-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.contact-meta {
  margin-top: 1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.contact-meta p + p {
  margin-top: 0.1rem;
}

/* ===== FOOTER ===== */

.footer {
  padding: 1.3rem 0 1.5rem;
  border-top: 1px solid rgba(209, 213, 219, 0.8);
  background: #fdfdfd;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.footer-links a:hover {
  color: var(--sunelix-gold-dark);
}

/* ===== BACK TO TOP ===== */

.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: var(--sunelix-gold);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(184, 154, 79, 0.6);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    opacity var(--transition-fast);
  opacity: 0;
}

.back-to-top.show {
  display: flex;
  opacity: 1;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 420px;
    margin-inline: auto;
  }

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

  .solutions-layout,
  .demo-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .solutions-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 60px;
    background: #ffffff;
    border-bottom: 1px solid rgba(209, 213, 219, 0.8);
    flex-direction: column;
    padding: 0.7rem 1.3rem 1rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding-block: 0.55rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .features-grid,
  .pricing-grid,
  .workflow-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
}

/* === Sunelix multi-page additions === */

/* Simple generic page hero */
.page-hero {
  padding: 3rem 0 1.2rem;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-soft);
}

.page-hero h1 {
  margin: 0;
  font-size: 1.9rem;
}

.page-subtitle {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Case studies grid (reused in multiple places) */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.case-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.case-card h3,
.case-location {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
}

.case-highlight {
  font-size: 0.9rem;
  color: var(--sunelix-gold-dark);
}

/* Regions map + division chips */

.regions-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.regions-map {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.regions-map-inner {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(209, 213, 219, 0.9);
  padding: 1.8rem 1.6rem;
  background: radial-gradient(circle at top left, #f9fafb 0, #eef2ff 55%, #e5f3ff 100%);
  min-height: 260px;
  overflow: hidden;
}

.regions-map-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.regions-map-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 20rem;
}

/* very light decorative continents */
.regions-map-inner::before,
.regions-map-inner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.25) 0, transparent 60%);
  opacity: 0.65;
}

.regions-map-inner::before {
  width: 260px;
  height: 260px;
  top: -60px;
  right: -40px;
}

.regions-map-inner::after {
  width: 220px;
  height: 220px;
  bottom: -60px;
  left: -40px;
}

.regions-map-note {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Division marker dots */

.division-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Approximate cluster area for Bangladesh (top left) and Malaysia (bottom right) */
.division-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.3);
}

/* Bangladesh division positions */
.division-dot.bd-dhaka { top: 40%; left: 40%; }
.division-dot.bd-ctg { top: 46%; left: 47%; }
.division-dot.bd-raj { top: 35%; left: 35%; }
.division-dot.bd-khulna { top: 48%; left: 36%; }
.division-dot.bd-barishal { top: 52%; left: 42%; }
.division-dot.bd-sylhet { top: 34%; left: 48%; }
.division-dot.bd-rangpur { top: 28%; left: 37%; }
.division-dot.bd-mymensingh { top: 36%; left: 43%; }

/* Malaysia states cluster */
.division-dot.my-kl { top: 58%; left: 62%; }
.division-dot.my-selangor { top: 56%; left: 59%; }
.division-dot.my-penang { top: 51%; left: 57%; }
.division-dot.my-johor { top: 64%; left: 63%; }
.division-dot.my-melaka { top: 61%; left: 60%; }
.division-dot.my-negeri { top: 59%; left: 58%; }
.division-dot.my-perak { top: 53%; left: 60%; }
.division-dot.my-pahang { top: 56%; left: 65%; }
.division-dot.my-sabah { top: 55%; left: 73%; }
.division-dot.my-sarawak { top: 60%; left: 70%; }

.regions-lists {
  display: grid;
  gap: 1.2rem;
}

.region-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.region-card h3 {
  margin: 0 0 0.4rem;
}

.region-card p {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chip {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  font-size: 0.78rem;
  background: #f9fafb;
}

/* CTA band at bottom of home */

.cta-section {
  background: linear-gradient(90deg, var(--sunelix-gold), var(--sunelix-gold-dark));
  color: #111827;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-inner h2 {
  margin: 0 0 0.4rem;
}

.cta-inner p {
  margin: 0;
  font-size: 0.9rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Login page layout */

.body-login {
  background: #e5f0ff;
}

.section-login {
  padding: 3.5rem 0;
}

.login-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: center;
}

.login-panel {
  background: #ffffff;
  border-radius: 22px;
  padding: 2rem 2.2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}

.logo-login {
  height: 42px;
  margin-bottom: 1rem;
}

.login-panel h1 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
}

.login-visual img {
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.28);
}

/* Generic helpers */

.centered {
  text-align: center;
}

.app-screen {
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(209, 213, 219, 0.85);
}

.caption {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive tweaks */

@media (max-width: 960px) {
  .regions-layout,
  .case-grid,
  .login-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* === Overrides after v2 feedback === */

/* Keep navbar brand single-line */
.navbar .brand-text {
  display: none; /* show only logo as requested */
}

/* Prevent "Reseller Program" from breaking onto two lines */
.nav-links a.nav-reseller {
  white-space: nowrap;
}

/* Features (modules) layout: clean cards, remove decorative borders from old theme */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1.8rem;
  margin-top: 1.6rem;
}

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

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.feature-card::before,
.feature-card::after {
  content: none !important;
}

/* Map SVG container */
.regions-map-graphic {
  margin-top: 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.regions-map-graphic svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Make map dots very clear */
.map-dot {
  fill: #ef4444;
  stroke: #fecaca;
  stroke-width: 3;
}

/* Make each content page feel longer: add spacing for subsections */
.subsection {
  margin-top: 2.4rem;
}


/* Interactive map dots */
.map-dot {
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.map-dot--active {
  transform: scale(1.7);
  opacity: 0.95;
}

.region-info {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  background: var(--bg-white);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.region-info h4 {
  margin-bottom: 0.25rem;
}

.region-info p {
  margin: 0;
  font-size: 0.92rem;
}


/* OTA partners grid */
.ota-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.ota-pill {
  background: #ffffff;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(248, 250, 252, 0.9);
}

.ota-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}


.regions-map-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}

.regions-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.regions-map-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 1.2rem 1.3rem 1.1rem;
  background: #f9fafb;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.regions-map-card h4 {
  margin: 0 0 0.4rem;
}

.regions-map-text {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.map-embed-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  margin-bottom: 0.7rem;
  background: #e5e7eb;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 190px;
  border: 0;
  display: block;
}

.map-city-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.map-city-list li + li {
  margin-top: 0.15rem;
}

@media (min-width: 900px) {
  .regions-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.ota-partners {
  margin-top: 2.2rem;
}

.ota-intro {
  max-width: 40rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.ota-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
  margin-top: 1.4rem;
  margin-bottom: 0.8rem;
}

.ota-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.ota-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .ota-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .ota-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}


.ota-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.ota-badge-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f97316;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
}



.ota-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1.8rem;
  margin-top: 1.6rem;
}

.ota-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ota-logo-item img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .ota-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ota-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .ota-logo-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
