/* ==========================================
   TOKENS
=========================================== */
:root {
  --blue:       #0E2A47;
  --blue-2:     #122F50;
  --blue-3:     #163558;
  --blue-4:     #1B3F65;
  --blue-5:     #204870;
  --orange:     #F5820A;
  --orange-d:   #D9700A;
  --orange-l:   #FFF0DC;
  --orange-ll:  #FFFAF4;
  --white:      #FFFFFF;
  --off:        #F6F8FB;
  --off2:       #EDF1F6;
  --text:       #1A2B3C;
  --text-2:     #3A536B;
  --text-3:     #6A869A;
  --text-4:     #9AB0C0;
  --border:     rgba(14,42,71,0.10);
  --border-d:   rgba(255,255,255,0.09);
  --green:      #1A9E5C;
  --green-l:    #E3F7EE;

  /* fluid spacing */
  --s-xs:  clamp(6px,  0.8vw, 10px);
  --s-sm:  clamp(10px, 1.2vw, 16px);
  --s-md:  clamp(18px, 2.2vw, 28px);
  --s-lg:  clamp(32px, 4vw,  52px);
  --s-xl:  clamp(48px, 6vw,  80px);
  --s-2xl: clamp(60px, 8vw, 100px);

  /* fluid type */
  --t-xs:   clamp(11px, 0.85vw, 12px);
  --t-sm:   clamp(13px, 1.0vw, 14px);
  --t-base: clamp(14px, 1.1vw, 16px);
  --t-md:   clamp(15px, 1.25vw, 17px);
  --t-lg:   clamp(18px, 1.6vw, 22px);
  --t-xl:   clamp(22px, 2.2vw, 30px);
  --t-2xl:  clamp(28px, 3.2vw, 42px);
  --t-3xl:  clamp(36px, 4.5vw, 56px);
  --t-hero: clamp(40px, 5.5vw, 72px);

  --inner:  1260px;
  --pad:    clamp(20px, 3vw, 80px);
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   22px;
}

/* ===========================================
   RESET & BASE
=========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
img { display: block; max-width: 100%; }

.inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ===========================================
   UTILITY
=========================================== */
.eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: var(--s-sm);
}
.eyebrow.dark { color: var(--orange); }

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-3xl);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-title.light { color: var(--white); }

.section-body {
  font-size: var(--t-md);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 540px;
}
.section-body.light { color: var(--text-4); }

/* ===========================================
   BUTTONS
=========================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--t-sm); font-weight: 500;
  padding: clamp(12px,1.3vw,15px) clamp(24px,2.8vw,36px);
  border-radius: var(--r-sm);
  transition: all 0.22s ease;
  white-space: nowrap; gap: 8px;
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-d); transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-3); transform: translateY(-1px); }
.btn-outline-white { background: rgba(255, 255, 255, 1); color: rgba(14, 72, 150, 1); border: 1.5px solid rgba(14, 72, 150, 0.3); }
.btn-outline-white:hover { border-color: rgba(14, 72, 150, 1); background: rgba(255, 255, 255, 0.92); transform: translateY(-1px); }
.btn-outline-blue { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-lg { padding: clamp(14px,1.6vw,18px) clamp(32px,3.5vw,44px); font-size: var(--t-base); }

/* ===========================================
   NAV
=========================================== */
#main-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s, border-bottom 0.3s;
}
#main-nav.scrolled {
  background: rgba(255,255,255,0.75);
  box-shadow: 0 4px 20px rgba(14,42,71,0.15);
  border-bottom: 1px solid rgba(14,42,71,0.2);
}
#main-nav .inner {
  display: flex; align-items: center; justify-content: space-between;
  height: clamp(60px, 6vw, 72px);
}
.nav-left {
  display: flex; align-items: center; gap: clamp(24px,3vw,40px);
  flex-shrink: 0;
  height: 100%;
}
.nav-right {
  display: flex; align-items: center; gap: var(--s-sm);
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .nav-drawer.open { display: flex; }
  .nav-mobile-group {
  display: flex;
  flex-direction: column;
}

.nav-mobile-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  font-size: var(--t-base);
  font-weight: 500;
  color: var(--text-2);
  text-align: left;
}

.nav-mobile-caret {
  width: 10px;
  height: 10px;
  border-right: 1.8px solid var(--text-3);
  border-bottom: 1.8px solid var(--text-3);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
  margin-right: 4px;
  flex-shrink: 0;
}

.nav-mobile-toggle[aria-expanded="true"] .nav-mobile-caret {
  transform: rotate(225deg);
}

.nav-mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 18px;
}

.nav-mobile-submenu.open {
  display: flex;
}

.nav-mobile-submenu a {
  font-size: var(--t-base);
  color: var(--text-2);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 3px;
}
.nav-logo em { color: var(--orange); font-style: normal; }
.nav-links {
  display: flex;
  align-items: stretch;
  gap: clamp(24px,3vw,40px);
  height: 100%;
  align-self: stretch;
}
.nav-links a {
  font-size: var(--t-sm);
  color: var(--text-2);
  transition: color 0.3s ease, background-size 0.3s ease;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 12px;
  background-image: linear-gradient(rgba(245,130,10,0.18), rgba(245,130,10,0.18));
  background-position: 0 0;
  background-size: 0% 100%;
  background-repeat: no-repeat;
}
.nav-links a:hover {
  color: var(--orange);
  background-size: 100% 100%;
}
.nav-links a.active { color: var(--orange); font-weight: 500; }
.nav-right { display: flex; align-items: center; gap: var(--s-sm); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text-2); transition: all 0.2s; border-radius: 2px; }
.nav-drawer {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: var(--s-md) var(--pad); gap: var(--s-sm);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.nav-drawer.open { display: flex; }
.nav-drawer a { font-size: var(--t-base); color: var(--text-2); padding: 8px 0; border-bottom: 1px solid var(--border); word-break: break-word; }
.nav-drawer a:last-child { border-bottom: none; }

/* Dropdown menu */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-dropdown-toggle {
  font-size: var(--t-sm);
  color: var(--text-2);
  transition: color 0.2s;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 12px;
}
.nav-dropdown-toggle:hover { color: var(--orange); 
background-image: linear-gradient(rgba(245,130,10,0.18), rgba(245,130,10,0.18));
}
.nav-dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 8px 24px rgba(14,42,71,0.12);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  font-size: var(--t-sm);
  color: var(--text-2);
  transition: all 0.2s;
  border-bottom: 1px solid var(--border);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover {
  background-image: linear-gradient(rgba(245,130,10,0.18), rgba(245,130,10,0.18));
  color: var(--blue);
}
.nav-dropdown-menu a.active {
  color: var(--orange);
  font-weight: 500;
}

.btn-nav-ghost {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 8px 16px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-nav-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
#main-nav.scrolled .btn-nav-ghost {
  color: var(--text-2, #444);
  border-color: rgba(0,0,0,0.15);
}
#main-nav.scrolled .btn-nav-ghost:hover {
  color: var(--text, #111);
  border-color: rgba(0,0,0,0.3);
}

/* Nav right buttons */
/* ── NAV BUTTONS ─────────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.btn-nav-ghost {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--text-2);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: clamp(10px, 1.1vw, 12px) clamp(18px, 2vw, 24px);
  text-decoration: none;
  transition: color 0.22s, border-color 0.22s, background 0.22s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-sizing: border-box;
}
.btn-nav-ghost:hover {
  color: var(--orange);
  border-color: rgba(245, 130, 10, 0.45);
  background: var(--orange-ll);
}

.nav-right .btn-orange {
  font-size: var(--t-sm);
  padding: clamp(10px, 1.1vw, 12px) clamp(18px, 2vw, 24px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-sizing: border-box;
}

/* ===========================================
   HERO â€” HOMEPAGE
=========================================== */
.hero-home {
  background: var(--blue);
  
  min-height: clamp(400px, 92vh, 800px);
  display: flex; flex-direction: column; justify-content: flex-start;
  position: relative; overflow: hidden;
  

}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: clamp(36px,5vw,60px) clamp(36px,5vw,60px);
  opacity: 0;

}
/* simulate large rooftop image â€” in production this is a real photo */
.hero-video {
  position: absolute; inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero-visual-bg {
  position: absolute; inset: 0;
   z-index: 1;
  background:
    linear-gradient(150deg, rgba(14,42,71,0.85) 0%, rgba(14,42,71,0.5) 40%, rgba(14,42,71,0.01) 100%);
}
.hero-solar-panels {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-template-rows: repeat(8,1fr);
  gap: 3px; opacity: 0;
  transform: perspective(800px) rotateX(22deg) scale(1.15);
  transform-origin: center 60%;
}
.panel { background: #1a5fa8; border-radius: 2px; }
.panel:nth-child(odd) { background: #1a6abf; }
.panel:nth-child(3n) { background: #155299; }
.hero-glow {
  position: absolute;
  width: clamp(300px,55vw,800px); height: clamp(300px,55vw,800px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,130,10,0.12) 0%, transparent 65%);
  top: -15%; right: -8%; pointer-events: none;
  opacity: 0;
}
.hero-home .inner {
  position: relative; z-index: 3;
  padding-bottom: clamp(20px,7vw,40px);
  padding-top: clamp(20px,7vw,60px);
  padding-left: clamp(20px, 7vw, 60px);
  padding-right: 0;
  margin-left: 0;
  width: 100%;
  max-width: none;
}
.hero-home-content { max-width: clamp(480px,55vw,680px); }
.hero-home h1 {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-hero);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-md);
  max-width: clamp(480px,55vw,680px);
  
}

.hero-home h1 em { color: var(--orange); font-style: normal; }
.hero-home p {
  font-size: var(--t-lg);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: var(--s-lg);
  max-width: 480px;
}
.hero-btns { display: flex;
   gap: var(--s-sm);
    flex-wrap: wrap;
  padding-top: clamp(20px,7vw,400px);
}
.hero-scroll-hint {
  position: absolute; bottom: clamp(20px,3vw,32px); right: var(--pad);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.45; z-index: 3;
}
.hero-scroll-hint span { font-size: 10px; letter-spacing: 0.12em; color: var(--white); text-transform: uppercase; }
.scroll-arrow { width: 1px; height: 36px; background: rgba(255,255,255,0.4); position: relative; }
.scroll-arrow::after { content: ''; position: absolute; bottom: 0; left: -3px; width: 7px; height: 7px; border-right: 1px solid rgba(255,255,255,0.6); border-bottom: 1px solid rgba(255,255,255,0.6); transform: rotate(45deg); }

/* hero stat strip */
.hero-stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hero-stats .inner { display: grid; grid-template-columns: repeat(4,1fr); }
.hs-item {
  padding: clamp(20px,2.8vw,32px) 0;
  border-right: 1px solid var(--border);
  padding-right: var(--s-md);
  text-align: center;
}
.hs-item:first-child { padding-left: 0; }
.hs-item:last-child { border-right: none; }
.hs-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px,2.8vw,36px); font-weight: 700;
  color: var(--orange); line-height: 1;
  margin-bottom: 5px;
}
.hs-lbl { font-size: var(--t-xs); color: var(--text-3); line-height: 1.4; }

/* ===========================================
   SOLUTION SELECTOR
=========================================== */
.s-solutions { background: var(--off); border-bottom: 1px solid var(--border); }
.s-solutions .inner { padding-top: var(--s-lg); padding-bottom: var(--s-lg); }
.section-hdr { margin-bottom: var(--s-lg); }
.section-hdr .section-title { margin: var(--s-sm) 0; }

.sol-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(12px,1.5vw,20px); }
.sol-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.28s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.sol-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14,42,71,0.10); }
.sol-card-img {
  height: clamp(160px,18vw,220px);
  display: flex; 
  align-items: center;
  justify-content: center;
  position: relative; 
  overflow: hidden;
}

.sol-card-img img {
 position: absolute;
 z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sol-card-img.ongrid   { background: linear-gradient(135deg, #0E2A47 0%, #1B5B9E 100%); }
.sol-card-img.hybrid   { background: linear-gradient(135deg, #0E2A47 0%, #1A6B4A 100%); }
.sol-card-img.offgrid  { background: linear-gradient(135deg, #2A1A0E 0%, #8C4A10 60%, #F5820A 100%); }
.sol-card-icon { position: relative; z-index: 2; }
.sol-card-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-size: var(--t-xs); font-weight: 500; padding: 4px 10px;
  background: rgba(255,255,255,0.9);
  color: var(--orange); border-radius: 4px;
  border: 1px solid var(--orange);
}
.sol-card-body { padding: clamp(18px,2.2vw,28px) clamp(20px,2.5vw,30px); }
.sol-card-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-xl); font-weight: 600;
  color: var(--blue); margin-bottom: 8px;
}
.sol-card-body p { font-size: var(--t-sm); color: var(--text-2); line-height: 1.65; margin-bottom: var(--s-md); }
.sol-card-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--s-md); }
.sol-feat {
  font-size: 11px; padding: 3px 10px;
  background: var(--off2); color: var(--text-2);
  border-radius: 20px; border: 1px solid var(--border);
}
.sol-link {
  font-size: var(--t-sm); font-weight: 500; color: var(--orange);
  display: flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.sol-card:hover .sol-link { gap: 10px; }

/* ===========================================
   WHY PRAFLUX SOLAR
=========================================== */
.s-why { background: var(--blue); border-bottom: 1px solid rgba(255,255,255,0.06); }
.s-why .inner {
  padding-top: var(--s-lg); padding-bottom: var(--s-lg);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,100px); align-items: center;
}
.why-left .eyebrow { color: var(--orange); }
.why-left .section-title { color: var(--white); margin: var(--s-sm) 0; }
.why-left .section-body { color: rgba(255,255,255,0.65); margin-bottom: var(--s-lg); }
.why-visual {
  background: var(--blue-3);
  border: 1px solid var(--border-d);
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;

}

.s-why-img img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  object-position: center;
  opacity: 1;
  
}
.why-visual-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg,transparent,transparent 30px,rgba(255,255,255,0.02) 30px,rgba(255,255,255,0.02) 31px),
    repeating-linear-gradient(90deg,transparent,transparent 30px,rgba(255,255,255,0.02) 30px,rgba(255,255,255,0.02) 31px);
}
.why-visual span { font-size: var(--t-sm); color: rgba(255,255,255,0.2); position: relative; z-index: 2; }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(10px,1.5vw,16px); }
.wp {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-d);
  border-radius: var(--r-md);
  padding: clamp(16px,2vw,22px);
  transition: border-color 0.2s;
}
.wp:hover { border-color: rgba(245,130,10,0.3); }
.wp-icon {
  width: clamp(28px,3vw,36px); height: clamp(28px,3vw,36px);
  background: rgba(245,130,10,0.1);
  border: 1px solid rgba(245,130,10,0.18);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: clamp(10px,1.2vw,14px);
}
.wp h5 { font-family: 'Sora', sans-serif; font-size: var(--t-sm); font-weight: 600; color: var(--white); margin-bottom: 5px; }
.wp p { font-size: var(--t-xs); color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ===========================================
   PROJECTS
=========================================== */
.s-projects { background: var(--white); border-bottom: 1px solid var(--border); }
.s-projects .inner { padding-top: var(--s-lg); padding-bottom: var(--s-lg); }
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(12px,1.5vw,20px); margin-top: var(--s-lg); }
.proj-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.25s;
}
.proj-card:hover { border-color: var(--orange); box-shadow: 0 12px 32px rgba(14,42,71,0.08); transform: translateY(-3px); }
.proj-img {
  height: clamp(140px,16vw,200px);
  background: var(--blue-2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.proj-img-bg { position: absolute; inset: 0; }
.proj-img-bg.r { background: linear-gradient(135deg, #0E2A47, #1B5B9E); }
.proj-img-bg.c { background: linear-gradient(135deg, #0E2A47, #0E4A2A); }
.proj-img-bg.i { background: linear-gradient(135deg, #1a0e05, #7A3A08); }
.proj-img span { font-size: var(--t-xs); color: rgba(255,255,255,0.25); position: relative; z-index: 2; }
.proj-type {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-size: 11px; font-weight: 500; padding: 3px 10px;
  background: rgba(255, 255, 255, 0.7 );
  color: var(--orange);
  border: 1px solid rgba(245,130,10,0.22);
  border-radius: 4px;
}
.proj-body { padding: clamp(16px,2vw,24px) clamp(18px,2.2vw,26px); }
.proj-body h5 {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-lg); font-weight: 600;
  color: var(--blue); margin-bottom: clamp(8px,1vw,12px);
}
.proj-facts { display: flex; gap: clamp(12px,1.5vw,20px); flex-wrap: wrap; }
.proj-facts span { font-size: var(--t-sm); color: var(--text-3); }
.proj-facts strong {  justify-content: space-between; color: var(--orange); font-weight: 600; }

/* ===========================================
   CALCULATOR TEASER
=========================================== */
.s-calc-teaser {
  background: var(--off);
  border-bottom: 1px solid var(--border);
   
}
.s-calc-teaser .inner {
padding-top: clamp(20px, 6vw, 50px);
  padding-bottom: var(--s-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 50px);
  align-items: start;
}
.ct-left .eyebrow { color: var(--orange); }
.ct-left .section-title { margin: var(--s-sm) 0; }
.ct-left .section-body { margin-bottom: var(--s-lg); }
.ct-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(24px,3vw,36px);
  box-shadow: 0 4px 24px rgba(14,42,71,0.06);
}
.ct-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-lg); font-weight: 600;
  color: var(--blue); margin-bottom: 6px;
}
.ct-card p { font-size: var(--t-sm); color: var(--text-3); margin-bottom: var(--s-md); }
.phase-toggle {
  display: flex; background: var(--off2);
  border-radius: var(--r-sm); padding: 3px;
  margin-bottom: var(--s-md); width: fit-content;
}
.phase-btn {
  padding: 8px 18px; border-radius: calc(var(--r-sm) - 2px);
  font-size: var(--t-xs); font-weight: 500;
  background: transparent; color: var(--text-3);
  transition: all 0.18s;
}
.phase-btn.active { background: var(--white); color: var(--blue); box-shadow: 0 1px 4px rgba(0,0,0,0.10); }
.bill-input {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: 100%;
  min-width: 0;
  height: clamp(54px, 5.5vw, 62px);
  margin-bottom: var(--s-sm);
  transition: border-color 0.2s ease;
  background: var(--white);
}
.bill-input:focus-within {  border-color: var(--orange);}
.bill-pre {
  width: clamp(54px, 5vw, 68px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off2);
  border-right: 1.5px solid var(--border);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  color: var(--text-3);
  flex-shrink: 0;
}
.bill-val {
  padding: 0 clamp(12px,1.5vw,18px);
  font-size: clamp(18px,2vw,22px); font-weight: 500; color: var(--blue);
  flex: 1;
}

.bill-input-field {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0 clamp(14px, 1.5vw, 18px);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: var(--blue);
  -webkit-appearance: none;
  appearance: textfield;
}

.bill-input-field::-webkit-outer-spin-button,
.bill-input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.quick-result {
  background: var(--orange-l);
  border-radius: var(--r-sm);
  padding: clamp(12px,1.5vw,18px) clamp(14px,1.8vw,20px);
  border: 1.5px solid rgba(245,130,10,0.2);
  margin-bottom: var(--s-md);
}
.qr-label { font-size: var(--t-xs); font-weight: 500; color: var(--orange-d); margin-bottom: 2px; }
.qr-val {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px,2.4vw,28px); font-weight: 700;
  color: var(--orange); line-height: 1;
}
.qr-sub { font-size: var(--t-md); color: var(--orange-d); margin-top: 4px; font-weight: 700; }
.qr-sub-next { font-size: var(--t-xs); color: var(--orange-d); margin-top: 4px; }
.ct-cta-row { display: flex; gap: var(--s-sm); }
.ct-note { font-size: 11px; color: var(--text-4); margin-top: var(--s-sm); }


.form-field.error {
  border: 1.5px solid #e53e3e;
  background: #fff5f5;
}
.field-error-msg {
  color: #e53e3e;
  font-size: 0.75rem;
  margin-top: 3px;
}

.form-field-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}



 /* ── Calculate button ───────────────────────────────────────── */
  .calc-run-btn {
    width: 100%;
    margin-top: var(--s-sm);
    margin-bottom: var(--s-sm);
    font-family: 'Sora', sans-serif;
    font-size: var(--t-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: clamp(12px,1.4vw,15px) 0;
    border-radius: var(--r-sm);
    background: var(--orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.22s, transform 0.15s;
  }
  .calc-run-btn:hover  { background: var(--blue-3); transform: translateY(-1px); }
  .calc-run-btn:active { transform: translateY(0); }

  /* ── Quick result (hidden until calculated) ─────────────────── */
  .quick-result {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    padding: clamp(3px,0.5vw,8px);
    transition: max-height 0.4s ease, opacity 0.35s ease, margin-bottom 0.4s ease;
  }
  .quick-result.visible {
    max-height: 200px;
    opacity: 1;
    margin-bottom: var(--s-sm);
  }

  /* ── Input shake on empty submit ────────────────────────────── */
  @keyframes inputShake {
    0%,100% { transform: translateX(0); }
    20%     { transform: translateX(-6px); }
    40%     { transform: translateX(6px); }
    60%     { transform: translateX(-4px); }
    80%     { transform: translateX(4px); }
  }
  .bill-input.shake { animation: inputShake 0.38s ease; }
/* ===========================================
   FOOTER
=========================================== */
.site-footer { background: var(--blue); border-top: 1px solid var(--border-d); }
.site-footer .inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s-md);
  padding-top: clamp(22px,3vw,32px); padding-bottom: clamp(22px,3vw,32px);
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: clamp(15px,1.4vw,17px); font-weight: 700;
  color: var(--white);
}
.footer-logo em { color: var(--orange); font-style: normal; }
.footer-links { display: flex; gap: clamp(18px,2.5vw,28px); flex-wrap: wrap; }
.footer-links a { font-size: var(--t-sm); color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-wa {
  font-size: var(--t-sm); padding: 9px 20px;
  border: 1px solid rgba(26,158,92,0.5);
  color: #4AD48A; border-radius: var(--r-sm);
  background: none; transition: all 0.2s;
  display: flex; align-items: center; gap: 7px;
}
.footer-wa:hover { background: rgba(26,158,92,0.08); }

/* ===========================================
   â”€â”€â”€â”€â”€â”€â”€ SOLUTION PAGE: ON-GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
=========================================== */
.page-break {
  border: none; border-top: 4px solid var(--orange);
  margin: 0;
}
.page-label {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 10px;
  font-family: 'Sora', sans-serif;
  font-size: var(--t-sm); font-weight: 600;
  letter-spacing: 0.06em;
}

/* solution hero */
.hero-solution {
  background: var(--blue);
  min-height: clamp(400px,92vh,800px);
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
   justify-content: flex-start;
}

.sol-hero-img{
 position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* ðŸ”¥ KEY FIX */
  object-position: center; 
}
.sol-hero-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sol-hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(150deg, rgba(14,42,71,1) 0%, rgba(27,91,158,0.5) 45%, rgba(14,42,71,0.02) 100%);
  z-index: 2;
}
.sol-hero-panel-art {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%; overflow: hidden; opacity: 0;
  
}
.sol-panel-rows { display: grid; grid-template-columns: repeat(8,1fr); grid-template-rows: repeat(10,1fr); gap: 4px; height: 100%; }
.sp { background: #1a6abf; border-radius: 2px; }
.sp:nth-child(odd) { background: #1a7dd4; }
.sp:nth-child(3n) { background: #1455A0; }
.sol-glow {
  position: absolute;
  width: clamp(200px,40vw,500px); height: clamp(200px,40vw,500px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,130,10,0.10) 0%, transparent 65%);
  top: -10%; right: 15%; pointer-events: none;
}
.hero-solution .inner {
  position: relative; z-index: 3;
  padding-bottom: clamp(20px,7vw,85px);
  padding-top: clamp(20px,7vw,60px);
  padding-left: clamp(20px, 7vw, 60px);
  margin-left: 0;
}
.hero-solution h1 {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-3xl); font-weight: 700;
  color: var(--white); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: var(--s-sm);
  max-width: clamp(480px,55vw,680px);
}
.hero-solution h1 em { color: var(--orange); font-style: normal; }
.hero-solution p {
  font-size: var(--t-lg); color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: var(--s-lg);
  max-width: clamp(400px,48vw,560px);
}
.hero-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--s-lg); }
.hero-pill {
  font-size: var(--t-xs); padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(0, 0, 0, 0.803); border-radius: 20px;
  background-color: rgba(255,255,255,0.5);
}
.sol-hero-btns { display: flex; gap: var(--s-sm); flex-wrap: wrap; }

/* solution overview */
.s-sol-overview { background: var(--white); border-bottom: 1px solid var(--border); }
.s-sol-overview .inner { padding-top: var(--s-lg); padding-bottom: var(--s-lg); }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; margin-top: var(--s-lg); }
.overview-visual {
  background: var(--off2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  z-index: 0;
}

.s-sol-overview .who-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: var(--s-md);
}


.s-sol-overview-img img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  object-position: center;
  opacity: 1;
  z-index: 1;
 display: block;
}
.overview-visual span { font-size: var(--t-sm); color: var(--text-4); position: relative; z-index: 2; }
.ov-diagram {
  position: absolute; inset: 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.ov-node {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 10px 14px;
  font-size: 11px; font-weight: 500; color: var(--blue);
  text-align: center; box-shadow: 0 2px 8px rgba(14,42,71,0.07);
}
.ov-node.highlight { background: var(--orange); color: var(--white); border-color: var(--orange); }
.ov-arrow { color: var(--text-4); font-size: 16px; flex-shrink: 0; }
.overview-text .section-title { margin: var(--s-sm) 0; }
.overview-text .section-body { margin-bottom: var(--s-md); }
.ov-includes h5 {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-sm); font-weight: 600;
  color: var(--blue); margin-bottom: var(--s-sm);
}
.ov-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px;
}
.ov-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); margin-top: 6px; flex-shrink: 0; }
.ov-item p { font-size: var(--t-sm); color: var(--text-2); line-height: 1.6; }

/* who is it for */
.s-sol-who { background: var(--off); border-bottom: 1px solid var(--border); }
.s-sol-who .inner { padding-top: var(--s-lg); padding-bottom: var(--s-lg); }
.who-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(10px,1.3vw,16px); margin-top: var(--s-lg); }
.who-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(18px,2.2vw,28px);
  transition: all 0.22s;
}
.who-card:hover { border-color: var(--orange); box-shadow: 0 8px 24px rgba(14,42,71,0.08); transform: translateY(-2px); }
.who-icon {
  width: clamp(36px,4vw,48px); height: clamp(36px,4vw,48px);
  background: var(--orange-ll); border: 1.5px solid rgba(245,130,10,0.15);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-sm);
}
.who-card h5 { font-family: 'Sora', sans-serif; font-size: var(--t-base); font-weight: 600; color: var(--blue); margin-bottom: 5px; }
.who-card p { font-size: var(--t-xs); color: var(--text-3); line-height: 1.6; }

/* embedded calculator */
.s-sol-calc { background: var(--blue); border-bottom: 1px solid var(--border-d); }
.s-sol-calc .inner { padding-top: var(--s-lg); padding-bottom: var(--s-lg); }
.calc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.calc-intro .eyebrow { color: var(--orange); }
.calc-intro .section-title { color: var(--white); margin: var(--s-sm) 0; }
.calc-intro .section-body { color: rgba(255,255,255,0.6); }
.calc-box {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(24px,3vw,36px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.calc-box h4 {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-lg); font-weight: 600;
  color: var(--blue); margin-bottom: 4px;
}
.calc-box > p { font-size: var(--t-sm); color: var(--text-3); margin-bottom: var(--s-md); }
.calc-field-label { font-size: var(--t-xs); font-weight: 500; color: var(--text-3); margin-bottom: 6px; }
.calc-input-row {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  overflow: hidden; height: clamp(48px,5.5vw,56px);
  margin-bottom: var(--s-sm); transition: border-color 0.2s;
}
.calc-input-row:focus-within { border-color: var(--orange); }
.ci-pre {
  padding: 0 clamp(12px,1.5vw,18px);
  font-size: clamp(15px,1.6vw,18px); font-weight: 500;
  color: var(--text-3); background: var(--off2);
  border-right: 1.5px solid var(--border);
  height: 100%; display: flex; align-items: center; flex-shrink: 0;
}
.ci-val {
  padding: 0 clamp(12px,1.5vw,18px);
  font-size: clamp(17px,1.9vw,21px); font-weight: 500; color: var(--blue);
}
.step1-result {
  background: var(--orange-l);
  border-radius: var(--r-md);
  padding: clamp(16px,2vw,22px);
  border: 1.5px solid rgba(245,130,10,0.2);
  margin-bottom: var(--s-md);
}
.s1r-title { font-size: var(--t-xs); font-weight: 600; color: var(--orange-d); margin-bottom: var(--s-sm); }
.s1r-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.s1r-item .n {
  font-family: 'Sora', sans-serif;
  font-size: clamp(18px,2vw,24px); font-weight: 700;
  color: var(--orange); line-height: 1;
}
.s1r-item .l { font-size: 11px; color: var(--orange-d); margin-top: 3px; }
.calc-divider { border: none; border-top: 1.5px dashed rgba(14,42,71,0.1); margin: var(--s-md) 0; }
.step2-form h5 {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-base); font-weight: 600; color: var(--blue); margin-bottom: var(--s-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-sm); margin-bottom: var(--s-sm); }
.form-field {
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: clamp(10px,1.2vw,13px) clamp(12px,1.5vw,16px);
  font-size: var(--t-sm); color: var(--text); font-family: 'DM Sans', sans-serif;
  background: var(--white); width: 100%; transition: border-color 0.2s;
}
.form-field::placeholder { color: var(--text-4); }
.form-field:focus { outline: none; border-color: var(--orange); }
.form-field.full { grid-column: 1 / -1; }
.calc-submit { width: 100%; margin-top: var(--s-sm); }
.calc-privacy { font-size: 11px; color: var(--text-4); margin-top: 10px; text-align: center; }

/* ===========================================
   SCROLL REVEAL
=========================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.on { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===========================================
   RESPONSIVE
=========================================== */
@media (max-width: 1024px) {
  .s-why .inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .s-calc-teaser .inner { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .overview-visual { display: none; }
  .calc-layout { grid-template-columns: 1fr; }
  
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .sol-grid { grid-template-columns: 1fr; }
  .hero-stats .inner { grid-template-columns: 1fr 1fr; }
  .hs-item { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: var(--s-md); margin-bottom: var(--s-md); }
  .hs-item:nth-child(odd) { border-right: 1px solid var(--border); padding-right: var(--s-md); }
  .hs-item:last-child, .hs-item:nth-last-child(2) { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .proj-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .why-points { grid-template-columns: 1fr; }
  .s1r-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ct-cta-row { flex-direction: column; }
  .hero-btns { flex-direction: column; align-items: stretch; margin: 0 auto; width: fit-content; }
  .sol-hero-btns { flex-direction: column; align-items: stretch; margin: 0 auto; width: fit-content; }
  .site-footer .inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: var(--s-sm); }
  .nav-drawer { padding-left: var(--s-md); padding-right: var(--s-md); }
  .nav-drawer a, .nav-mobile-submenu a { word-break: break-word; }
  .hero-home .inner, .hero-solution .inner { padding-right: var(--pad); min-width: 0; }
  .hero-home h1, .hero-home p, .hero-solution h1, .hero-solution p, .section-title, .section-body { overflow-wrap: anywhere; word-wrap: break-word; }
  .s-calc-teaser .inner { min-width: 0; max-width: 100%; }
  .s-calc-teaser .inner > * { min-width: 0; }
  .s-calc-teaser .ct-card,
  .s-calc-teaser .ct-left,
  .s-calc-teaser .form-row,
  .s-calc-teaser .form-field,
  .s-calc-teaser .bill-input { min-width: 0; }
  .s-calc-teaser .form-field { max-width: 100%; width: 100%; }
  .s-calc-teaser .phase-toggle { flex-wrap: wrap; }
  .s-sol-calc .inner { min-width: 0; max-width: 100%; }
  .s-sol-calc .inner > * { min-width: 0; }
  .s-sol-calc .calc-layout,
  .s-sol-calc .calc-box,
  .s-sol-calc .calc-intro,
  .s-sol-calc .form-row,
  .s-sol-calc .form-field,
  .s-sol-calc .bill-input { min-width: 0; }
  .s-sol-calc .calc-box { max-width: 100%; }
  .s-sol-calc .form-field { max-width: 100%; width: 100%; }
  .s-sol-calc .phase-toggle { flex-wrap: wrap; }
  .hero-solution .sol-hero-panel-art { display: none; }
}
@media (max-width: 480px) {
  .hero-stats .inner { grid-template-columns: 1fr; }
  .hs-item { border-right: none !important; padding-right: 0 !important; }
  .who-grid { grid-template-columns: 1fr; }
  .s1r-grid { grid-template-columns: 1fr; }
}


/* ===========================================
   SOLAR GUIDE PAGE
=========================================== */

.guide-hero .hero-pills {
  max-width: 780px;
}

.guide-jump {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.guide-jump .inner {
  padding-top: var(--s-md);
  padding-bottom: var(--s-md);
}

.guide-jump-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-jump-wrap a {
  font-size: var(--t-xs);
  color: var(--text-2);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--off2);
  transition: all 0.2s ease;
}

.guide-jump-wrap a:hover {
  color: var(--orange);
  border-color: rgba(245,130,10,0.28);
  background: var(--orange-ll);
}

.guide-visual-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(237,241,246,0.95) 100%);
}

.guide-compare-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(12px,1.5vw,20px);
  margin-top: var(--s-lg);
}

.guide-compare-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(18px,2.2vw,28px);
  transition: all 0.24s ease;
}

.guide-compare-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(14,42,71,0.08);
  transform: translateY(-2px);
}

.guide-compare-top {
  margin-bottom: var(--s-md);
}

.guide-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-ll);
  border: 1px solid rgba(245,130,10,0.16);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.guide-compare-top h4 {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--blue);
  line-height: 1.25;
}

.guide-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--s-md);
}

.guide-points li {
  position: relative;
  padding-left: 16px;
  font-size: var(--t-sm);
  color: var(--text-2);
  line-height: 1.6;
}

.guide-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: 9px;
}

.guide-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px,1.6vw,20px);
  margin-top: var(--s-lg);
}

.guide-step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(18px,2.2vw,26px);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.22s ease;
}

.guide-step:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(14,42,71,0.07);
}

.guide-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.guide-step h5 {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 5px;
}

.guide-step p {
  font-size: var(--t-sm);
  color: var(--text-3);
  line-height: 1.65;
}

.guide-faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px,1.6vw,20px);
  margin-top: var(--s-lg);
}

.guide-faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(18px,2.2vw,26px);
  transition: all 0.22s ease;
}

.guide-faq-item:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(14,42,71,0.07);
}

.guide-faq-item h5 {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-base);
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
}

.guide-faq-item p {
  font-size: var(--t-sm);
  color: var(--text-3);
  line-height: 1.7;
}

.guide-cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

@media (max-width: 1024px) {
  .guide-compare-grid,
  .guide-steps,
  .guide-faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .guide-jump-wrap {
    gap: 8px;
  }

  .guide-jump-wrap a {
    width: 100%;
    text-align: center;
  }
}



/* â”€â”€ Contact page styles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--s-sm);
}
.contact-breadcrumb a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.contact-breadcrumb a:hover { color: var(--orange); }
.breadcrumb-current { color: var(--orange); font-weight: 500; }

.contact-section {
  padding-top: var(--s-lg);
  padding-bottom: var(--s-lg);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--s-lg);
  align-items: start;
}

/* Info blocks */
.contact-info { display: flex; flex-direction: column; gap: var(--s-md); }
.info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(16px, 2vw, 24px);
}
.info-block-title {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-block-title svg { color: var(--orange); }

.region-list { display: flex; flex-direction: column; gap: 12px; }
.region-item {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.region-item:last-child { border-bottom: none; padding-bottom: 0; }
.region-name {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 2px;
}
.region-states { font-size: var(--t-xs); color: var(--text-3); margin-bottom: 4px; }
.region-contact a {
  font-size: var(--t-sm);
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.region-contact a:hover { color: var(--orange); }
.region-person { font-size: var(--t-xs); color: var(--text-3); margin-top: 2px; }

.wa-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--off);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}
.wa-row:hover { background: #e8f5e2; border-color: rgba(37,211,102,0.4); }
.wa-row svg { color: #25d366; flex-shrink: 0; }
.wa-row-text { font-size: var(--t-sm); font-weight: 600; color: var(--text); }
.wa-row-sub { font-size: var(--t-xs); color: var(--text-3); }

.email-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--off);
}
.email-row a {
  font-size: var(--t-sm);
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
}

/* Form card */
.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 40px);
  position: sticky;
  top: calc(var(--nav-h, 68px) + 16px);
  box-shadow: 0 4px 24px rgba(14,42,71,0.06);
}
.form-title {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.form-sub { font-size: var(--t-sm); color: var(--text-3); margin-bottom: var(--s-md); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-label { font-size: var(--t-xs); font-weight: 600; color: var(--text-2); letter-spacing: 0.02em; }
.form-label .req { color: var(--orange); }

.form-input,
.form-select,
.form-textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--t-sm);
  color: var(--text);
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 13px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,130,10,0.10);
}
.form-input.error,
.form-select.error,
.form-textarea.error { border-color: #e53e3e; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23666' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.form-textarea { resize: vertical; min-height: 90px; line-height: 1.55; }
.form-hint { font-size: 11px; color: var(--text-3); }
.form-error-msg { font-size: 11px; color: #e53e3e; display: none; }
.form-group.has-error .form-error-msg { display: block; }

.form-submit-area { margin-top: var(--s-md); }
.form-submit-area .btn,
.calc-submit { width: 100%; justify-content: center; padding: 13px 20px; font-size: var(--t-sm); }

/* Success state */
.form-success { display: none; text-align: center; padding: var(--s-lg) var(--s-md); }
.form-success.visible { display: block; }
.form-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange-l, #FFF0DC);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s-md);
  color: var(--orange);
}
.form-success-title {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.form-success-sub {
  font-size: var(--t-sm);
  color: var(--text-3);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-card { position: static; }
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

/* â”€â”€ ABOUT PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Hero */
.about-hero {
  position: relative;
  background: var(--navy, #0d1b2a);
  padding-top: calc(var(--nav-h, 64px) + clamp(48px, 7vw, 96px));
  padding-bottom: clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.about-hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: var(--s-sm, 12px) 0;
}
.about-hero-content p {
  font-size: var(--t-md, 1rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--s-md, 24px);
}

/* Who we are */
.s-about-who {
  padding: clamp(48px, 6vw, 80px) 0;
}
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about-text .section-body {
  margin-bottom: var(--s-sm, 12px);
}
.about-learn-more {
  display: inline-block;
  margin-top: var(--s-sm, 12px);
  font-size: var(--t-sm, 0.875rem);
  color: var(--orange, #F5820A);
  border-bottom: 1px solid rgba(245,130,10,0.35);
  padding-bottom: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.about-learn-more:hover { opacity: 0.75; }
.about-img-box {
  position: relative;
}
.about-img-placeholder {
  background: #f5f5f3;
  border: 1px solid #e5e5e0;
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #999;
  font-size: 0.85rem;
}
.about-img-badge {
  position: absolute;
  bottom: -14px;
  left: 24px;
  background: #fff;
  border: 1px solid #e5e5e0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* What we do */
.s-about-what {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #f9f9f7;
  border-top: 1px solid #e5e5e0;
  border-bottom: 1px solid #e5e5e0;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md, 24px);
}
.about-pillar {
  background: #fff;
  border: 1px solid #e5e5e0;
  border-radius: 14px;
  padding: clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-pillar:hover {
  border-color: var(--orange, #F5820A);
  box-shadow: 0 4px 24px rgba(245,130,10,0.08);
}
.about-pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(245,130,10,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-pillar h5 {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-sm, 0.875rem);
  font-weight: 700;
  color: #111;
  margin: 0;
}
.about-pillar p {
  font-size: var(--t-xs, 0.8rem);
  color: #777;
  line-height: 1.65;
  margin: 0;
}
.pillar-link {
  font-size: var(--t-xs, 0.8rem);
  color: var(--orange, #F5820A);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
}
.pillar-link:hover { opacity: 0.75; }

/* Why choose us â€” reuses .s-why dark styles from index */
.s-about-why {
  background: var(--navy, #0d1b2a);
  padding: clamp(48px, 6vw, 80px) 0;
}

/* Address strip */
.s-about-address {
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid #e5e5e0;
}
.about-address-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg, 40px);
}
.about-address-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--orange, #F5820A);
  margin-bottom: 12px;
}
.about-address-text {
  font-size: var(--t-sm, 0.875rem);
  color: #555;
  line-height: 1.8;
}
.about-address-text a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.about-address-text a:hover { color: var(--orange, #F5820A); }
.about-recognitions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-recognition-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #e5e5e0;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.2s;
}
.about-recognition-card:hover { border-color: var(--orange, #F5820A); }
.about-recognition-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.about-recognition-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
}

/* CTA section */
.s-about-cta {
  background: var(--navy, #0d1b2a);
  padding: clamp(48px, 6vw, 80px) 0;
}
.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-lg, 40px);
  flex-wrap: wrap;
}
.about-cta-text { max-width: 520px; }
.about-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-two-col { grid-template-columns: 1fr; }
  .about-address-grid { grid-template-columns: 1fr; gap: var(--s-md, 24px); }
  .about-cta { flex-direction: column; align-items: flex-start; }
  .about-img-badge { position: static; margin-top: 16px; width: fit-content; }
}
@media (max-width: 540px) {
  .about-pillars { grid-template-columns: 1fr; }
}

/* =========================
   PRAFLUX SOLAR 404 PAGE
   ========================= */

.nf-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f7f6f2;
}

.nf-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-8, 2rem);
  padding: var(--space-8, 2rem) var(--space-4, 1rem);
  padding-top: calc(var(--nav-h, 84px) + 40px);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.nf-oops {
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  color: #01696f;
  line-height: 1;
  margin-bottom: 6px;
}

.nf-tagline {
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: #da7101;
  margin-bottom: 1rem;
}

.nf-sub {
  font-size: 1rem;
  color: #5f6368;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.nf-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.nf-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #7a7974;
}

.nf-ring {
  position: relative;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.nf-ring svg {
  transform: rotate(-90deg);
}

.nf-ring-track {
  fill: none;
  stroke: #d7ece7;
  stroke-width: 3;
}

.nf-ring-progress {
  fill: none;
  stroke: #01696f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 88;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}

.nf-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #01696f;
}

.nf-cancel {
  background: none;
  border: none;
  font-size: 11px;
  color: #9aa0a6;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  margin-left: 2px;
}

.nf-quick {
  margin-top: 1rem;
}

.nf-quick-label {
  font-size: 0.875rem;
  color: #9aa0a6;
  margin-bottom: 8px;
}

.nf-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nf-qlink {
  font-size: 0.875rem;
  color: #4d4d4d;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #d4d1ca;
  border-radius: 999px;
  background: #ffffff;
  transition: all 180ms ease;
}

.nf-qlink:hover {
  color: #01696f;
  border-color: rgba(1, 105, 111, 0.35);
  background: #eef7f7;
}

.nf-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nf-404-bg {
  position: absolute;
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 800;
  color: rgba(1, 105, 111, 0.08);
  line-height: 1;
  letter-spacing: -0.05em;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.nf-robot {
  position: relative;
  z-index: 1;
  animation: nf-float 3s ease-in-out infinite;
}

.wave-arm {
  transform-origin: 50px 170px;
  animation: nf-wave 1.2s ease-in-out infinite;
}

.nf-footer {
  border-top: 1px solid rgba(1, 105, 111, 0.12);
  padding: 12px 16px;
  background: #f7f6f2;
}

.nf-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.nf-footer-links {
  display: flex;
  gap: 16px;
}

.nf-footer-links a {
  font-size: 0.875rem;
  color: #7a7974;
  text-decoration: none;
}

.nf-footer-links a:hover {
  color: #01696f;
}

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

@keyframes nf-wave {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(20deg); }
}

@keyframes nf-spin-gear {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .nf-main {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h, 84px) + 20px);
  }

  .nf-right {
    order: -1;
  }

  .nf-404-bg {
    font-size: clamp(5rem, 22vw, 7.5rem);
  }

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



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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: clamp(5px, 1.5vw, 10px) 0;
}

.footer-bottom .inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: clamp(1px, 1.2vw, 5px);
  justify-content: space-between;
}

.footer-copy {
  font-size: var(--t-xs, 11.5px);
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  max-width: none;
}

.footer-copy strong {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

.footer-supporters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-supported-label {
  font-size: var(--t-xs, 11px);
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  padding-right: clamp(3px, 3vw, 15px);
}

.footer-supporter {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.footer-supporter:hover { opacity: 1; }

.supporter-logo {
  height: clamp(10px, 2vw, 20px) 0;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

.supporter-fallback {
  font-size: var(--t-xs, 11px);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  white-space: nowrap;
  display: none; /* shown by onerror if image fails */
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom-links a {
  font-size: var(--t-xs, 11.5px);
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--orange, #F5820A); }

@media (max-width: 640px) {
  .footer-bottom .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

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



.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, transparent, black 40%, black 60%, transparent);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  text-align: left;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-xs, 11.5px);
  color: var(--text-4, rgba(255, 255, 255, 0.35));
  margin-bottom: 10px;
}

.breadcrumb a {
  color: var(--text-4, rgba(255, 255, 255, 0.35));
  text-decoration: none;
  transition: color 0.18s;
}

.breadcrumb a:hover { color: var(--orange, #F5820A); }

.breadcrumb-sep { opacity: 0.4; }

.breadcrumb-current {
  color: var(--orange, #F5820A);
  font-weight: 500;
}

.page-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #0a1628;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: clamp(5px, 3vw, 10px);
  
}

.page-hero-meta {
  font-size: var(--t-xs, 11.5px);
  color: var(--text-4, rgba(255, 255, 255, 0.35));
}


/* =============================================
   POLICY LAYOUT
   ============================================= */

.policy-wrap {
  
  margin: 0 auto;
  padding: clamp(10px, 5vw, 20px) var(--pad, 20px);
  max-width: clamp(480px,85vw,1400px);
  position: relative;
}


/* =============================================
   COMPANY CARD
   ============================================= */

.company-card {
  background: var(--navy, #0a1628);
  border-radius: var(--r-md, 10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  margin-bottom: clamp(24px, 4vw, 40px);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.company-card-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.company-card-label {
  font-size: var(--t-sm, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-4, rgba(255, 255, 255, 0.35));
}

.company-card-val {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-sm, 8px);
  font-weight: 500;
  color: var(--text-4, rgba(255, 255, 255, 0.35));
}

.company-card-val a {
  color: var(--orange, #F5820A);
  text-decoration: none;
}

.company-card-val a:hover { text-decoration: underline; }


/* =============================================
   POLICY LIST
   ============================================= */

.policy-list {
  display: flex;
  flex-direction: column;
}

.policy-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0.08));
}

.policy-item:last-child { border-bottom: none; }

.policy-item-num {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-xs, 11.5px);
  font-weight: 800;
  color: var(--orange, #F5820A);
  min-width: 28px;
  padding-top: 3px;
  flex-shrink: 0;
}

.policy-item-heading {
  font-family: 'Sora', sans-serif;
  font-size: var(--t-md, 15px);
  font-weight: 700;
  color: var(--text, rgba(255, 255, 255, 0.9));
  margin-bottom: 7px;
}

.policy-item-text {
  font-size: var(--t-sm, 13.5px);
  color: var(--text-2, rgba(255, 255, 255, 0.6));
  line-height: 1.75;
}

.policy-item-text a {
  color: var(--orange, #F5820A);
  text-decoration: none;
}

.policy-item-text a:hover { text-decoration: underline; }

.policy-item-text strong {
  color: var(--text, rgba(255, 255, 255, 0.9));
  font-weight: 600;
}

.policy-item-text em {
  color: var(--text-2, rgba(255, 255, 255, 0.65));
  font-style: italic;
}


/* =============================================
   MINI TABLE (third-party services)
   ============================================= */

.mini-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: var(--t-xs, 11.5px);
}

.mini-table th {
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 12px;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--text-3, rgba(255, 255, 255, 0.45));
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0.08));
}

.mini-table td {
  padding: 9px 12px;
  color: var(--text-2, rgba(255, 255, 255, 0.6));
  border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  line-height: 1.5;
  vertical-align: top;
}

.mini-table tr:last-child td { border-bottom: none; }

.mini-table td a {
  color: var(--orange, #F5820A);
  text-decoration: none;
}

.mini-table td a:hover { text-decoration: underline; }


/* =============================================
   POLICY FOOTER (back buttons)
   ============================================= */

.policy-footer {
  margin-top: clamp(28px, 4vw, 48px);
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.policy-footer-note {
  font-size: var(--t-xs, 11.5px);
  color: var(--text-4, rgba(255, 255, 255, 0.35));
  line-height: 1.5;
}

.policy-footer-note a {
  color: var(--orange, #F5820A);
  text-decoration: none;
}

.policy-footer-note a:hover { text-decoration: underline; }

.policy-footer-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-outline-policy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--r-md, 8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--text-2, rgba(255, 255, 255, 0.6));
  font-family: 'Sora', sans-serif;
  font-size: var(--t-sm, 13px);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s;
}

.btn-outline-policy:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}


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

@media (max-width: 600px) {
  .company-card {
    gap: 16px;
    padding: 16px;
  }

  .policy-item {
    gap: 14px;
    padding: 18px 0;
  }

  .policy-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .mini-table th,
  .mini-table td {
    padding: 7px 8px;
  }
}

