/* ============================================================
   M/S GLOBAL ENTERPRISE — PM Surya Ghar landing page
   Token system
   ============================================================ */
:root{
  --navy:        #0A3A63;
  --navy-deep:   #062A48;
  --navy-ink:    #0F2436;
  --saffron:     #F0862E;
  --saffron-deep:#D96F1B;
  --leaf:        #2F9E58;
  --leaf-deep:   #1F7A41;
  --sun:         #FFC53D;
  --red-ink:     #C0203A;
  --paper:       #FFFFFF;
  --bg:          #F5F8FB;
  --mist:        #E9F0F6;
  --line:        #D9E3EC;

  --font-display: 'Baloo 2', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --font-as:      'Noto Sans Bengali', sans-serif;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 26px;
  --shadow-soft: 0 12px 30px -14px rgba(10, 58, 99, 0.28);
  --shadow-card: 0 6px 18px -10px rgba(10, 58, 99, 0.22);
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--navy-ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul, ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3{ font-family: var(--font-display); margin:0; line-height:1.1; }
p{ margin:0; }

.wrap{
  width: min(1140px, 100% - 40px);
  margin-inline: auto;
}

a:focus-visible,
button:focus-visible,
input:focus-visible{
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- tricolor stripe ---------- */
.tri-stripe{
  height: 6px;
  background: linear-gradient(90deg, var(--saffron) 0 33.33%, #ffffff 33.33% 66.66%, var(--leaf) 66.66% 100%);
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background: linear-gradient(180deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 22px -8px rgba(217,111,27,0.55);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 26px -8px rgba(217,111,27,0.6); }
.btn-ghost{
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.18); }
.btn-outline{
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
  margin-top: 10px;
}
.btn-outline:hover{ border-color: var(--navy); }
.btn-block{ width:100%; margin-top: 14px; }

/* ---------- header ---------- */
.site-header{
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 16px -8px rgba(0,0,0,0.35);
}
.header-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  position: relative;
  width: 44px; height: 44px;
  flex: none;
}
.brand-mark .sun{
  position:absolute; top:-4px; right:-2px;
  width: 18px; height:18px;
  border-radius:50%;
  background: radial-gradient(circle at 35% 30%, var(--sun), var(--saffron) 70%);
  box-shadow: 0 0 10px 2px rgba(255,197,61,0.55);
}
.brand-mark .roof{
  position:absolute; left:0; bottom:0;
  width: 40px; height: 30px;
  background:
    repeating-linear-gradient(90deg, #16406b 0 8px, #12365c 8px 9px);
  clip-path: polygon(0% 100%, 0% 40%, 50% 0%, 100% 40%, 100% 100%);
  border-radius: 3px;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.2; }
.brand-name{ font-family: var(--font-display); font-weight:700; font-size:1.05rem; letter-spacing: .2px; }
.brand-name.light{ color:#fff; }
.brand-tag{ font-size: .74rem; color: #BFD3E6; font-weight:500; }

.primary-nav{
  display:flex;
  align-items:center;
  gap: 26px;
  font-weight: 600;
  font-size: 0.93rem;
}
.primary-nav a{ color:#DCE8F3; transition: color .15s ease; }
.primary-nav a:hover{ color:#fff; }
.nav-call{
  display:flex; align-items:center; gap:6px;
  background: var(--saffron);
  color:#fff !important;
  padding: 9px 16px;
  border-radius: 999px;
}
.nav-call:hover{ background: var(--saffron-deep); }

.nav-toggle{
  display:none;
  flex-direction: column;
  justify-content:center;
  gap: 5px;
  width: 40px; height:40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;
}
.nav-toggle span{ display:block; height:2px; width:20px; margin-inline:auto; background:#fff; border-radius:2px; }

/* ---------- hero ---------- */
.hero{
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(255,197,61,0.18), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 64px 0 76px;
  overflow: clip;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items:center;
}
.eyebrow-assamese{
  font-family: var(--font-as);
  font-weight:600;
  color: var(--sun);
  font-size: .95rem;
  margin-bottom: 4px;
}
.eyebrow{
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: .78rem;
  font-weight: 700;
  color: #9FC6E8;
  margin-bottom: 14px;
}
.hero h1{
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 800;
  color:#fff;
}
.hero h1 span{ color: var(--sun); }
.hero-sub{
  margin-top: 18px;
  max-width: 46ch;
  color: #CFE0EF;
  font-size: 1.03rem;
}

.hero-badge{
  margin-top: 26px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 16px 22px;
  border-radius: var(--radius-m);
  backdrop-filter: blur(4px);
}
.hero-badge-label{ font-size:.78rem; color:#BFD3E6; font-weight:600; text-transform:uppercase; letter-spacing:.5px; }
.hero-badge-amount{
  font-family: var(--font-mono);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--sun);
}
.hero-badge-note{ font-size: .78rem; color:#9FC6E8; }

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats{
  display:flex;
  gap: 30px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-stats li{ display:flex; flex-direction:column; }
.hero-stats strong{ font-family: var(--font-mono); font-size: 1.2rem; color:#fff; }
.hero-stats span{ font-size: .78rem; color:#9FC6E8; }

/* --- hero visual: css house + panels --- */
.hero-visual{
  position: relative;
  display:flex;
  justify-content:center;
  align-items:flex-end;
  min-height: 340px;
}
.visual-sun{
  position:absolute;
  top: 4px; right: 18%;
  width: 90px; height:90px;
  border-radius:50%;
  background: radial-gradient(circle at 35% 30%, #FFE39A, var(--sun) 55%, var(--saffron) 100%);
  box-shadow: 0 0 60px 18px rgba(255,197,61,0.35);
  animation: pulseSun 5s ease-in-out infinite;
}
@keyframes pulseSun{
  0%,100%{ transform: scale(1); }
  50%{ transform: scale(1.06); }
}
.visual-beam{
  position:absolute;
  top: 40px; right: 20%;
  width: 2px; height: 120px;
  background: linear-gradient(180deg, rgba(255,197,61,0.5), transparent);
  transform: rotate(24deg);
}
.visual-house{
  position: relative;
  width: min(380px, 90%);
}
.visual-roof{
  position: relative;
  height: 130px;
  background: linear-gradient(180deg, #1B4E80, #123A63);
  clip-path: polygon(0% 100%, 4% 40%, 50% 4%, 96% 40%, 100% 100%);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding-bottom: 14px;
}
.panel-array{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  width: 74%;
}
.panel-cell{
  aspect-ratio: 1.2 / 1;
  background: linear-gradient(160deg, #123152, #0B2136);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
}
.panel-cell.lit{
  background: linear-gradient(160deg, #2E6FB0, #1B4E80);
  box-shadow: inset 0 0 0 1px rgba(255,197,61,0.5), 0 0 8px rgba(255,197,61,0.35);
  animation: glint 3.2s ease-in-out infinite;
}
.panel-cell.lit:nth-child(3n+1){ animation-delay: .3s; }
.panel-cell.lit:nth-child(3n+2){ animation-delay: .8s; }
@keyframes glint{
  0%,100%{ filter: brightness(1); }
  50%{ filter: brightness(1.28); }
}
.visual-body{
  height: 150px;
  background: #FBFAF6;
  border: 1px solid #E4DFD3;
  border-radius: 0 0 10px 10px;
  position: relative;
}
.visual-door{
  position:absolute;
  bottom:0; left:50%;
  transform: translateX(-50%);
  width: 54px; height: 78px;
  background: var(--navy);
  border-radius: 6px 6px 0 0;
}

/* ---------- section shells ---------- */
section{ padding: 76px 0; }
.section-title{
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy-ink);
  text-align:center;
  margin-bottom: 42px;
}
.section-title.light{ color:#fff; }
.section-title.small{
  font-size: 1.35rem;
  text-align:left;
  margin-bottom: 22px;
  display:flex;
  flex-wrap:wrap;
  align-items: baseline;
  gap: 6px;
}
.section-title.small .en{
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight:600;
  color: var(--leaf-deep);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.section-sub{
  text-align:center;
  max-width: 60ch;
  margin: -22px auto 40px;
  color: #567;
}

/* ---------- benefits ---------- */
.benefits{ background: var(--paper); }
.benefit-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.benefit-card{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px 22px;
  text-align:center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.benefit-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); }
.benefit-card h3{ font-size: 1.08rem; margin: 16px 0 8px; color: var(--navy-ink); }
.benefit-card p{ font-size: .92rem; color: #57728A; }

.benefit-icon{
  display:inline-flex;
  width: 54px; height: 54px;
  border-radius: 50%;
  align-items:center; justify-content:center;
  position: relative;
}
.benefit-icon::before{ content:""; width: 24px; height:24px; display:block; }
.icon-govt{ background: rgba(10,58,99,0.1); }
.icon-govt::before{ background: var(--navy); mask: var(--i-bank) center/contain no-repeat; -webkit-mask: var(--i-bank) center/contain no-repeat; }
.icon-leaf{ background: rgba(47,158,88,0.12); }
.icon-leaf::before{ background: var(--leaf); mask: var(--i-leaf) center/contain no-repeat; -webkit-mask: var(--i-leaf) center/contain no-repeat; }
.icon-rupee{ background: rgba(240,134,46,0.14); }
.icon-rupee::before{ background: var(--saffron-deep); mask: var(--i-rupee) center/contain no-repeat; -webkit-mask: var(--i-rupee) center/contain no-repeat; }
.icon-tools{ background: rgba(10,58,99,0.1); }
.icon-tools::before{ background: var(--navy); mask: var(--i-tools) center/contain no-repeat; -webkit-mask: var(--i-tools) center/contain no-repeat; }

:root{
  --i-bank: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 10l9-6 9 6M5 10v9M19 10v9M9 10v9M15 10v9M3 21h18'/%3E%3C/svg%3E");
  --i-leaf: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 3C11 3 3 11 3 21c10 0 18-8 18-18Z'/%3E%3Cpath d='M9 15c3-3 6-6 11-9'/%3E%3C/svg%3E");
  --i-rupee: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 4h12M6 9h12M6 4c4 0 7 2 7 5s-3 5-7 5h-1l8 7'/%3E%3C/svg%3E");
  --i-tools: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M14.7 6.3a4 4 0 1 0-5.4 5.4L3 18l3 3 6.3-6.3a4 4 0 0 0 5.4-5.4l-2.6 2.6-2-2z'/%3E%3C/svg%3E");
}

/* ---------- facilities + steps ---------- */
.facilities{ background: var(--mist); }
.facilities-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items:start;
}
.facilities-card, .steps-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 34px 32px;
}
.check-list li{
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  font-size: .98rem;
  color: var(--navy-ink);
}
.check-list li::before{
  content:"";
  position:absolute; left:0; top:2px;
  width: 20px; height:20px;
  border-radius:50%;
  background: var(--leaf);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E") center/60% no-repeat, radial-gradient(circle, #000 100%);
  -webkit-mask: none;
}
.check-list li::before{
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E") center/60% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E") center/60% no-repeat;
}

.step-list li{
  display:flex;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px dashed var(--line);
}
.step-list li:first-child{ border-top: none; padding-top:0; }
.step-num{
  flex:none;
  width: 34px; height:34px;
  border-radius:50%;
  background: var(--navy);
  color:#fff;
  font-family: var(--font-mono);
  font-weight:700;
  display:flex; align-items:center; justify-content:center;
  font-size: .92rem;
}
.step-list h3{ font-size: 1rem; margin-bottom: 3px; color: var(--navy-ink); }
.step-list p{ font-size: .89rem; color:#57728A; }

/* ---------- calculator (signature) ---------- */
.calculator{
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(255,197,61,0.12), transparent 60%),
    linear-gradient(180deg, var(--navy-deep), #041B2E);
  color:#fff;
}
.calculator .section-sub{ color:#AFC7DC; }
.calc-panel{
  margin-top: 20px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items:center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-l);
  padding: 34px;
}
.calc-visual{ display:flex; justify-content:center; }
.calc-array{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 320px;
}
.calc-array .panel-cell{
  aspect-ratio: 1;
  border-radius: 6px;
}
.calc-label{
  display:block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #9FC6E8;
  font-weight:700;
  margin-bottom: 6px;
}
.calc-kw-readout{
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight:700;
  color: var(--sun);
  margin-bottom: 10px;
}
#kwSlider{
  width: 100%;
  accent-color: var(--saffron);
  height: 6px;
  cursor:pointer;
}
.slider-scale{
  display:flex; justify-content:space-between;
  font-size: .74rem; color:#9FC6E8;
  margin-top: 4px;
}
.calc-results{
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
}
.calc-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding: 7px 0;
  font-size: .92rem;
  color:#CFE0EF;
}
.calc-row strong{ font-family: var(--font-mono); color:#fff; font-size:1rem; }
.calc-row.total{
  border-top: 1px dashed rgba(255,255,255,0.25);
  margin-top: 6px;
  padding-top: 12px;
  font-weight:700;
}
.calc-row.total strong{ color: var(--sun); font-size: 1.3rem; }
.calc-row.estimate strong{ color:#9FE0B8; }
.calc-footnote{ font-size: .74rem; color:#84A0B8; margin-top: 14px; }

/* ---------- trust strip ---------- */
.trust{ background: var(--paper); padding: 40px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-row{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.trust-item{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight:600;
  font-size: .92rem;
  color: var(--navy-ink);
  flex: 1 1 200px;
}
.trust-icon{
  width: 30px; height:30px;
  flex:none;
  border-radius: 50%;
  background: var(--mist);
  position:relative;
}
.trust-icon::before{
  content:"";
  position:absolute; inset:7px;
  background: var(--navy);
}
.icon-made::before{ mask: var(--i-badge) center/contain no-repeat; -webkit-mask: var(--i-badge) center/contain no-repeat; }
.icon-shield::before{ mask: var(--i-shield) center/contain no-repeat; -webkit-mask: var(--i-shield) center/contain no-repeat; }
.icon-meter::before{ mask: var(--i-meter) center/contain no-repeat; -webkit-mask: var(--i-meter) center/contain no-repeat; }
.icon-badge::before{ mask: var(--i-star) center/contain no-repeat; -webkit-mask: var(--i-star) center/contain no-repeat; }

:root{
  --i-badge: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2 2 7l10 5 10-5-10-5ZM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
  --i-shield: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2 4 5v6c0 5 3.5 8.5 8 11 4.5-2.5 8-6 8-11V5l-8-3Z'/%3E%3C/svg%3E");
  --i-meter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='13' r='8'/%3E%3Cpath d='M12 13 16 9M9 3h6'/%3E%3C/svg%3E");
  --i-star: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2l3 6.5 7 1-5.2 5 1.2 7-6-3.4-6 3.4 1.2-7L2 9.5l7-1 3-6.5Z'/%3E%3C/svg%3E");
}

/* ---------- contact ---------- */
.contact{ background: var(--bg); }
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items:start;
}
.contact-copy p{ color:#4C6579; margin-top: 14px; max-width: 50ch; }
.contact-list{ margin-top: 28px; display:flex; flex-direction:column; gap: 18px; }
.contact-list li{ display:flex; gap: 14px; align-items:flex-start; }
.contact-list a{ color: var(--navy); font-weight:600; text-decoration: underline; text-decoration-color: var(--line); }
.contact-icon{
  flex:none;
  width: 38px; height:38px;
  border-radius: 50%;
  background: var(--navy);
  position:relative;
}
.contact-icon::before{
  content:"";
  position:absolute; inset: 9px;
  background: #fff;
}
.icon-pin::before{ mask: var(--i-pin) center/contain no-repeat; -webkit-mask: var(--i-pin) center/contain no-repeat; }
.icon-phone::before{ mask: var(--i-phone) center/contain no-repeat; -webkit-mask: var(--i-phone) center/contain no-repeat; }
.icon-mail::before{ mask: var(--i-mail) center/contain no-repeat; -webkit-mask: var(--i-mail) center/contain no-repeat; }

:root{
  --i-pin: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s7-6.6 7-11.5a7 7 0 1 0-14 0C5 14.4 12 21 12 21Z'/%3E%3Ccircle cx='12' cy='9.5' r='2.4'/%3E%3C/svg%3E");
  --i-phone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C9.9 21 3 14.1 3 5.9c0-.5.4-1 1-1h3.4c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.4 0 .8-.3 1.1L6.6 10.8Z'/%3E%3C/svg%3E");
  --i-mail: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

.contact-card{
  background: var(--navy);
  color:#fff;
  border-radius: var(--radius-l);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.contact-card h3{ font-size: 1.3rem; }
.contact-card p{ color:#BFD3E6; margin-top:10px; font-size:.92rem; }
.contact-card .btn-outline{ color:#fff; border-color: rgba(255,255,255,0.4); }
.contact-card .btn-outline:hover{ border-color:#fff; }

/* ---------- footer ---------- */
.site-footer{ background: var(--navy-deep); color:#BFD3E6; }
.footer-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap: 20px;
  padding: 34px 0 18px;
}
.footer-row p{ font-size:.85rem; margin-top:6px; max-width: 40ch; }
.footer-nav{ display:flex; gap: 20px; flex-wrap:wrap; font-size:.9rem; font-weight:600; }
.footer-nav a:hover{ color:#fff; }
.footer-fine{
  text-align:center;
  font-size: .78rem;
  color: #6E8CA5;
  padding-bottom: 26px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; }
  .facilities-grid{ grid-template-columns: 1fr; }
  .calc-panel{ grid-template-columns: 1fr; }
  .benefit-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav-toggle{ display:flex; }
  .primary-nav{
    position: absolute;
    top: 100%; left:0; right:0;
    background: var(--navy);
    flex-direction:column;
    align-items:flex-start;
    gap: 4px;
    padding: 10px 20px 20px;
    display:none;
    box-shadow: 0 12px 20px -10px rgba(0,0,0,0.4);
  }
  .primary-nav.open{ display:flex; }
  .primary-nav a{ padding: 10px 0; width:100%; }
  .nav-call{ margin-top: 6px; }
  section{ padding: 56px 0; }
  .benefit-grid{ grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero{ padding: 44px 0 56px; }
}

@media (max-width: 520px){
  .benefit-grid{ grid-template-columns: 1fr; }
  .hero-badge-amount{ font-size: 1.7rem; }
  .hero-stats{ gap: 20px; }
  .trust-row{ flex-direction:column; }
  .footer-row{ flex-direction:column; }
}