:root {
  --bg: #ececf4;
  --paper: #f7f7fb;
  --surface: #ffffff;
  --ink: #0f1325;
  --muted: #677189;
  --line: #d8deec;
  --hero: #0f0423;
  --hero-2: #260034;
  --primary: #ef1d22;
  --secondary: #4d0a8a;
  --teal: #11b9c2;
  --ok: #1aaf6f;
  --warn: #f2a233;
  --radius: 18px;
  --max: 1180px;
  --shadow: 0 14px 34px rgba(24, 32, 62, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

.container {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(120deg, rgba(6, 6, 36, 0.98), rgba(14, 5, 49, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: #f7f4ff;
  font-weight: 800;
  font-family: "Poppins", "Manrope", sans-serif;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand img {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  object-fit: cover;
}

.brand span {
  color: #f7f4ff;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: "Bangla MN", "Poppins", serif;
}

.brand-text strong {
  font-size: 1.14rem;
  font-family: "Bangla MN", "Poppins", serif;
}

.brand-text small {
  font-size: 0.75rem;
  color: rgba(244, 247, 255, 0.78);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: nowrap;
}

.nav-links a {
  color: rgba(244, 247, 255, 0.76);
  font-size: 0.9rem;
  padding: 0.36rem 0.58rem;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown details {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  color: rgba(244, 247, 255, 0.76);
  font-size: 0.9rem;
  padding: 0.36rem 0.72rem 0.36rem 0.58rem;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.42rem;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  vertical-align: middle;
}

.nav-dropdown details[open] summary,
.nav-dropdown summary:hover,
.nav-dropdown summary.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 220px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(140deg, rgba(13, 9, 41, 0.98), rgba(20, 10, 56, 0.98));
  box-shadow: 0 16px 40px rgba(8, 8, 24, 0.32);
  display: grid;
  gap: 0.15rem;
  z-index: 40;
}

.dropdown-menu a {
  display: block;
  padding: 0.48rem 0.6rem;
  color: rgba(244, 247, 255, 0.84);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(100deg, var(--primary), var(--secondary));
}

.btn-secondary {
  color: #f4f6ff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.menu-toggle {
  display: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.46rem 0.72rem;
  border-radius: 10px;
}

main {
  padding-bottom: 2.2rem;
}

.hero,
.page-hero {
  background: radial-gradient(500px 300px at 90% 10%, rgba(234, 25, 110, 0.28), transparent),
    radial-gradient(550px 300px at 12% -20%, rgba(109, 86, 255, 0.34), transparent),
    linear-gradient(130deg, var(--hero), var(--hero-2));
  color: #f7f8ff;
  padding: 3.2rem 0;
}

.hero .container,
.page-hero .container {
  position: relative;
}

h1,
h2,
h3,
h4 {
  margin: 0.35rem 0 0.7rem;
  font-family: "Manrope", sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.hero p,
.page-hero p {
  color: rgba(246, 248, 255, 0.82);
}

.kicker {
  display: inline-block;
  font-size: 0.73rem;
  color: #f2eaff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.18rem 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-weight: 700;
}

.section-kicker {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--primary);
  background: #fce8f2;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 14px;
  text-align: center;
  padding: 0.78rem 0.55rem;
}

.stat strong {
  display: block;
  font-size: 1.18rem;
}

.section {
  padding: 2.3rem 0;
}

.alt {
  background: var(--paper);
}

.card,
.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.25rem;
}

.hero-copy {
  padding: 2rem;
}

.tile {
  padding: 1rem;
}

.tile-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  margin-bottom: 0.55rem;
}

.tile-icon svg,
.icon-dot svg {
  width: 21px;
  height: 21px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile p {
  margin-bottom: 0.65rem;
  font-size: 0.94rem;
}

.metric-pill {
  font-size: 0.76rem;
  color: #5f47ff;
  background: #eee9ff;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.17rem 0.5rem;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.82rem;
}

.grid-2,
.grid-3,
.grid-4,
.grid-6 {
  display: grid;
  gap: 0.82rem;
}

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

.icon-dot {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  font-size: 0.86rem;
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
}

.rise-grid .tile {
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 0.65s ease forwards;
}

.rise-grid .tile:nth-child(1) { animation-delay: 0.05s; }
.rise-grid .tile:nth-child(2) { animation-delay: 0.12s; }
.rise-grid .tile:nth-child(3) { animation-delay: 0.19s; }
.rise-grid .tile:nth-child(4) { animation-delay: 0.26s; }
.rise-grid .tile:nth-child(5) { animation-delay: 0.33s; }
.rise-grid .tile:nth-child(6) { animation-delay: 0.40s; }

.why-us-block {
  background: #f0f2f8;
  border-color: #cdd5e7;
}

.why-us-block .trust-tile {
  background: #f7f8fc;
  border: 1px solid #cfd7ea;
  box-shadow: none;
}

.service-card .tile-icon,
.trust-tile .tile-icon {
  display: inline-grid;
}

.engage-card {
  border: 1px solid #d3daea;
  background: linear-gradient(160deg, #ffffff, #f8f9ff);
}

.engage-card p {
  margin-bottom: 0.55rem;
}

.stack-band {
  padding: 1.1rem 0;
  position: relative;
  min-height: auto;
  z-index: auto;
}

.stack-band + .stack-band {
  margin-top: 0;
}

.stack-layout {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 1.1rem;
  align-items: center;
  border-radius: 22px;
  padding: 1.1rem;
  border: 1px solid #d1d9eb;
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  top: auto;
}

.stack-layout.reverse {
  grid-template-columns: 1fr 1.08fr;
}

.stack-band.stack-dark .stack-layout {
  background:
    radial-gradient(560px 260px at 12% -10%, rgba(239, 29, 34, 0.16), transparent),
    radial-gradient(560px 260px at 88% 8%, rgba(125, 38, 189, 0.18), transparent),
    linear-gradient(125deg, #1f082f, #210a35 58%, #2a1043);
  border-color: rgba(255, 255, 255, 0.14);
  color: #edf2ff;
}

.stack-band.stack-dark .stack-copy > p,
.stack-band.stack-dark .stack-list li,
.stack-band.stack-dark .stack-block p {
  color: #e6edff;
}

.stack-band.stack-dark .section-kicker {
  color: #ffd37e;
  background: rgba(255, 255, 255, 0.12);
}

.stack-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.stack-copy > p {
  max-width: 60ch;
}

.stack-block {
  border-left: 2px solid rgba(255, 255, 255, 0.24);
  padding-left: 0.9rem;
  margin: 0.85rem 0;
}

.stack-light .stack-block {
  border-left-color: #c7d4ea;
}

.stack-block h4 {
  margin: 0 0 0.3rem;
  color: #ffcc64;
  font-size: 0.87rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stack-light .stack-block h4 {
  color: #b46d0f;
}

.stack-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem 0.85rem;
}

.stack-feature {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.5rem;
  align-items: start;
}

.stack-feature strong {
  font-size: 0.94rem;
  display: block;
  margin-top: 0.08rem;
}

.stack-feature p {
  margin: 0.18rem 0 0;
  font-size: 0.84rem;
  opacity: 0.9;
}

.stack-visual {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  min-height: 430px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.stack-light .stack-visual {
  border-color: #ced9ee;
  background: linear-gradient(145deg, #fff, #eef3fb);
}

.stack-screen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(240, 245, 255, 0.18), rgba(157, 205, 255, 0.08)),
    repeating-linear-gradient(90deg, transparent 0, transparent 25px, rgba(255, 255, 255, 0.04) 26px, rgba(255, 255, 255, 0.04) 27px);
}

.stack-alert {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 19, 39, 0.44);
  border-radius: 12px;
  padding: 0.55rem;
  margin-top: 0.8rem;
}

.stack-alert p {
  margin: 0.14rem 0 0;
  color: #d2def5;
  font-size: 0.82rem;
}

.stack-light .stack-alert {
  background: #ffffff;
  border-color: #d2dbed;
}

.stack-light .stack-alert p {
  color: var(--muted);
}

.stack-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

.stack-mini {
  display: inline-grid;
  grid-template-columns: 34px 1fr;
  gap: 0.44rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 0.42rem 0.48rem;
  background: rgba(255, 255, 255, 0.06);
}

.stack-light .stack-mini {
  border-color: #cfdaec;
  background: #fff;
}

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

.mini-panel {
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 12px;
  padding: 0.62rem;
  background: rgba(255, 255, 255, 0.08);
}

.mini-panel h4 {
  margin: 0.2rem 0;
  font-size: 0.95rem;
}

.mini-panel p {
  margin: 0;
  font-size: 0.82rem;
  color: #d5e1f5;
}

.stack-light .mini-panel {
  border-color: #cfdaec;
  background: #fff;
}

.stack-light .mini-panel p {
  color: #5f6f8d;
}

.stack-light .mini-panel h4 {
  color: #1d2f57;
}

.goals-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.goal-chip {
  display: inline-grid;
  grid-template-columns: 34px 1fr;
  gap: 0.5rem;
  align-items: center;
  border: 1px solid #ccd7eb;
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem 0.6rem;
  font-weight: 700;
}

.stack-list {
  margin: 0.2rem 0 0;
  padding-left: 1.05rem;
}

.stack-list li {
  margin-bottom: 0.3rem;
}

.box-panel {
  background: #f0f2f8;
  border-color: #cdd5e7;
}

.box-panel .tile {
  background: #f7f8fc;
  border: 1px solid #cfd7ea;
  box-shadow: none;
}

.field {
  margin-bottom: 0.68rem;
}

label {
  display: block;
  font-size: 0.84rem;
  margin-bottom: 0.28rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font: inherit;
}

input[type="range"] {
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  height: 28px;
  width: 100%;
  --pct: 0%;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  background: linear-gradient(to right, var(--secondary) 0 var(--pct), #e1e4ee var(--pct) 100%);
  border-radius: 999px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--secondary);
  margin-top: -13px;
  box-shadow: none;
}

input[type="range"]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--secondary);
  box-shadow: none;
}

input[type="range"]::-moz-range-track {
  height: 8px;
  background: #e1e4ee;
  border-radius: 999px;
}

input[type="range"]::-moz-range-progress {
  height: 8px;
  background: var(--secondary);
  border-radius: 999px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 0.58rem;
  text-align: left;
}

.table th {
  background: #f4f1ff;
  color: var(--ink);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0.9rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.tab-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.78rem;
  color: var(--muted);
  cursor: pointer;
  font-weight: 600;
}

.tab-btn.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(100deg, var(--primary), var(--secondary));
}

.tab-panel {
  display: none;
}

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

.badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  color: var(--primary);
  background: #fee8f2;
  font-weight: 700;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.56rem;
}

.logo-pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  text-align: center;
  padding: 0.42rem 0.28rem;
  font-size: 0.83rem;
  color: #505a74;
  font-weight: 700;
}

.marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f9f7ff;
}

.marquee-track {
  display: flex;
  gap: 0.58rem;
  width: max-content;
  padding: 0.65rem;
  animation: scrollRTL 24s linear infinite;
}

.portfolio-bars div {
  height: 10px;
  border-radius: 999px;
  margin-top: 0.45rem;
}

.calc-rich {
  box-shadow: none;
}

.calc-field {
  margin-bottom: 1rem;
}

.field-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.32rem;
}

.field-top label {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #5f6887;
}

.field-value {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  min-width: 132px;
  justify-content: flex-end;
  padding: 0.28rem 0.34rem 0.28rem 0.54rem;
  border: 1px solid #d7dbeb;
  border-radius: 12px;
  background: #fff;
  color: #212949;
}

.field-value span {
  font-size: 0.82rem;
  color: #6b7391;
  font-weight: 700;
  white-space: nowrap;
}

.field-value input {
  border: 0;
  padding: 0;
  width: 84px;
  text-align: right;
  border-radius: 0;
  background: transparent;
  font-weight: 800;
  color: #1d2340;
  box-shadow: none;
}

.field-value input:focus {
  outline: none;
}

.calc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.25rem;
}

.calc-metrics .tile {
  background: #f5f3fb;
  box-shadow: none;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-metrics p {
  margin: 0.2rem 0 0;
  color: #1d2340;
  font-weight: 700;
}

.calc-chart-wrap {
  margin-top: 0.85rem;
  padding: 0.8rem 0.8rem 0.55rem;
  border-radius: 18px;
  border: 1px solid #d7dbeb;
  background: linear-gradient(180deg, rgba(245, 243, 251, 0.75), rgba(255, 255, 255, 0.98));
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  grid-template-rows: 220px auto;
  gap: 0.55rem 0.6rem;
  align-items: stretch;
}

.calc-chart {
  width: 100%;
  height: 220px;
  display: block;
  overflow: visible;
  grid-column: 2;
  grid-row: 1;
}

.calc-chart .line-primary,
.calc-chart .line-secondary {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.calc-chart .line-primary {
  stroke: var(--secondary);
}

.calc-chart .line-secondary {
  stroke: var(--primary);
}

.calc-chart .area-primary,
.calc-chart .area-secondary {
  stroke: none;
}

.calc-chart .area-primary {
  fill: rgba(121, 93, 255, 0.12);
}

.calc-chart .area-secondary {
  fill: rgba(230, 33, 106, 0.09);
}

.calc-chart .area-primary.soft {
  fill: rgba(121, 93, 255, 0.08);
}

.calc-chart .area-secondary.soft {
  fill: rgba(230, 33, 106, 0.06);
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--secondary);
  font-weight: 700;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.legend-swatch {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  display: inline-block;
}

.legend-swatch.primary {
  background: var(--secondary);
}

.legend-swatch.secondary {
  background: var(--primary);
}

.calc-summary {
  margin: 0.8rem 0 0;
  color: var(--secondary);
}

.calc-note {
  margin-top: 0.55rem;
  color: #676f8d;
}

.chart-y-axis {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.1rem 0 0.2rem;
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 700;
}

.chart-x-axis {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 700;
}

.donut-row {
  display: grid;
  place-items: center;
  margin-top: 0.55rem;
}

.donut-chart {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 58%, var(--secondary) 58% 100%);
  display: grid;
  place-items: center;
}

.donut-chart span {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
}

.bars {
  margin-top: 0.7rem;
  min-height: 120px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: end;
}

.bars span {
  display: block;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  border-radius: 8px 8px 0 0;
}

.calc-wide {
  grid-column: 1 / -1;
}

.notice {
  border: 1px solid rgba(121, 93, 255, 0.18);
  background: rgba(121, 93, 255, 0.08);
  padding: 0.45rem 0.6rem;
  border-radius: 9px;
  color: var(--secondary);
}

.contact-hero .container {
  min-height: 210px;
}

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.contact-info-item {
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.contact-info-item:last-child {
  border-right: 0;
}

.contact-info-item .tile-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.75rem;
}

.contact-info-item h3 {
  margin-bottom: 0.45rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.map-card,
.contact-form-card {
  min-height: 640px;
  overflow: hidden;
}

.map-card {
  display: flex;
  flex-direction: column;
}

.map-frame {
  overflow: hidden;
  border: 1px solid #d8deec;
  border-radius: 14px;
  min-height: 520px;
  flex: 1;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-form-card textarea {
  min-height: 260px;
  resize: vertical;
}

.contact-form-card .btn {
  align-self: flex-start;
}

.card.map-card {
  overflow: hidden !important;
}

.map-card iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 520px;
  max-width: 100% !important;
  border: 0;
}

.goal-calc-card .gradient-panel h2 {
  margin-top: 0.2rem;
}

.useful-links-grid .tile p {
  margin-bottom: 0.6rem;
}

.gradient-panel {
  background: linear-gradient(100deg, var(--primary), var(--secondary));
  border-radius: 14px;
  padding: 0.95rem;
  color: #fff;
}

.goal-choice {
  appearance: none;
  background: #fff;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

.goal-choice-link {
  display: block;
}

.goal-choice,
.goal-choice-link {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.goal-choice.is-active {
  border-color: rgba(121, 93, 255, 0.42);
  box-shadow: 0 14px 40px rgba(46, 22, 126, 0.1);
}

.goal-choice:hover,
.goal-choice-link:hover {
  transform: translateY(-2px);
}

.goal-choice:focus-visible,
.goal-choice-link:focus-visible {
  outline: 2px solid rgba(121, 93, 255, 0.36);
  outline-offset: 2px;
}

.goal-choice h3,
.goal-choice-link h3 {
  margin-top: 0.8rem;
}

.goal-choice.is-active .icon-dot,
.goal-choice-link .icon-dot {
  background: linear-gradient(135deg, rgba(230, 33, 106, 0.14), rgba(121, 93, 255, 0.18));
}

.emergency-output-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.emergency-output-field .field-value {
  min-height: 48px;
}

.clean-list {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.clean-list li + li {
  margin-top: 0.5rem;
}

.partner-grid-wrap {
  background: #f0f2f8;
  border-color: #cdd5e7;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.partner-card {
  border: 1px solid #d3daea;
  background: #fff;
  border-radius: 16px;
  min-height: 90px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.75rem;
  font-weight: 700;
  color: #1c2d5a;
}

.partner-marquee {
  height: 78px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(121, 93, 255, 0.18);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,246,255,0.96));
  padding: 0.35rem 0.4rem;
  display: flex;
  align-items: center;
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: max-content;
  height: 100%;
  animation: scrollRTL 48s linear infinite;
}

.partner-logo-card {
  min-height: 50px;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(121, 93, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(25, 21, 76, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.55rem;
}

.partner-logo-card img {
  max-width: 150px;
  max-height: 26px;
  object-fit: contain;
  object-position: center;
}

.site-footer {
  padding: 1.45rem 0 0.9rem;
}

.site-footer .footer-grid {
  grid-template-columns: 1.1fr 1.3fr 1fr;
  gap: 0.8rem;
}

.site-footer .brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}

.site-footer .brand-mini img {
  width: 58px;
  height: 58px;
  border-radius: 6px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0.12rem 0;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.32rem 0.7rem;
}

.quick-links-grid a {
  font-size: 0.9rem;
  opacity: 0.92;
}

.footer-meta {
  margin-top: 0.75rem;
  padding-top: 0.7rem;
  font-size: 0.82rem;
}

@keyframes scrollUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.gradient-panel p,
.gradient-panel .small,
.gradient-panel small,
.gradient-panel h2 {
  color: #fff;
  margin: 0.2rem 0;
}

.service-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
  align-items: end;
}

.service-metrics {
  display: grid;
  gap: 0.55rem;
}

.service-link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
}

.blog-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0.8rem 0;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.goal-stepup {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
}

.stepup-right {
  position: relative;
  min-height: 520px;
}

.stepup-image {
  position: absolute;
  inset: 0.8rem 0 0.8rem 0.9rem;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(239, 29, 34, 0.18), rgba(77, 10, 138, 0.18)),
    radial-gradient(circle at 30% 30%, #fff, #d9dded);
  border: 1px solid #cad3e8;
}

.floating-card {
  position: absolute;
  background: #fdf1f5;
  color: #49104f;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.floating-card small {
  display: block;
  color: #735175;
  font-weight: 500;
  margin-top: 0.25rem;
}

.floating-card.top {
  top: 1.2rem;
  left: -0.2rem;
}

.floating-card.bottom {
  bottom: 1.6rem;
  left: -0.2rem;
  background: #efe5fb;
}

.goal-slider-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
}

.goal-amount {
  background: #efe5fb;
  border-radius: 12px;
  padding: 0.8rem 1.1rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: #4d0a8a;
}

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

.goal-compare-cards .tile p {
  font-size: 1.6rem;
  font-weight: 800;
  color: #4d0a8a;
}

.goal-compare-cards .best {
  background: linear-gradient(145deg, var(--primary), var(--secondary));
}

.goal-compare-cards .best h4,
.goal-compare-cards .best p,
.goal-compare-cards .best small {
  color: #fff;
}

.leader-card {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.photo-slot {
  border-radius: 16px;
  border: 1px solid #cad3e8;
  background: linear-gradient(145deg, #eceef6, #dbe3f1);
  min-height: 300px;
  display: grid;
  place-items: center;
  color: #4b5878;
  font-weight: 700;
}

.founder-photo-slot {
  background: linear-gradient(180deg, #0e0e16, #202033);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f3f1ff;
  text-align: center;
  padding: 1.4rem;
}

.founder-photo-slot img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
}

.founder-photo-slot small {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.service-grid .service-tile {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-grid .service-tile:hover {
  transform: translateY(-4px);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.testimonial {
  min-height: 128px;
}

.quote {
  color: #1d2f4e;
  font-size: 0.98rem;
}

.quote-by {
  font-size: 0.84rem;
}

footer {
  margin-top: 1.5rem;
  background:
    radial-gradient(520px 220px at 7% -16%, rgba(234, 25, 110, 0.24), transparent),
    radial-gradient(620px 260px at 92% -10%, rgba(109, 86, 255, 0.2), transparent),
    linear-gradient(155deg, #060624, #09092f 62%, #0e0c3d);
  color: #d4deea;
  padding: 2.6rem 0 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.2rem;
}

footer h3 {
  color: #f8fbff;
  margin-top: 0;
  font-size: 0.93rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.95;
}

footer a {
  color: #d4deea;
}

footer a:hover {
  color: #fff;
}

.small {
  font-size: 0.84rem;
  color: #b8c2d8;
}

footer .small {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-cta {
  display: none;
}

@keyframes scrollRTL {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6,
  .grid-5,
  .footer-grid,
  .compare-grid,
  .logo-strip,
  .stack-layout,
  .stack-layout.reverse,
  .stack-feature-grid,
  .stack-service-grid,
  .panel-grid,
  .goals-panel,
  .service-hero,
  .stat-strip,
  .partner-grid,
  .partner-columns,
  .site-footer .footer-grid,
  .goal-stepup,
  .leader-card,
  .goal-slider-head {
    grid-template-columns: 1fr;
  }

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

  nav {
    position: fixed;
    inset: 74px 0 auto 0;
    background: #0e1530;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-140%);
    transition: transform 0.24s ease;
  }

  nav.open {
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav-dropdown {
    width: 100%;
    position: static;
  }

  .nav-dropdown details {
    width: 100%;
  }

  .nav-dropdown summary {
    width: 100%;
  }

  .nav-dropdown summary::after {
    float: right;
    margin-top: 0.28rem;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.28rem;
    padding: 0.28rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }

  .hide-mobile {
    display: none;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text small {
    display: none;
  }

  .site-footer .brand-mini img {
    width: 48px;
    height: 48px;
  }

  .contact-info-strip,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-info-item:last-child {
    border-bottom: 0;
  }

  .map-card,
  .contact-form-card {
    min-height: auto;
  }

  .mobile-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    position: sticky;
    bottom: 0;
    z-index: 40;
    background: rgba(8, 8, 30, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0.42rem;
  }

  .mobile-cta a {
    border-radius: 11px;
    text-align: center;
    font-size: 0.84rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.42rem 0.2rem;
  }

  .calc-wide {
    grid-column: auto;
  }

  .stack-band {
    min-height: auto;
    margin-top: 0;
  }

  .stack-layout {
    position: relative;
    top: auto;
  }
}


.hero-softline {
  margin-top: 0.8rem;
  color: #9aa6bd;
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(29, 21, 74, 0.2);
}

.floating-whatsapp:hover {
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 78px;
    min-height: 42px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
  }
}


.service-hero-page .container {
  max-width: 920px;
}

.service-intro-grid,
.service-detail-layout,
.service-showcase-grid {
  display: grid;
  gap: 1rem;
}

.service-intro-grid,
.service-detail-layout {
  grid-template-columns: 1.1fr 1fr;
}

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

.service-intro-copy h2,
.service-detail-main h2,
.service-detail-side h2 {
  margin-bottom: 0.8rem;
}

.service-flow-list {
  display: grid;
  gap: 0.8rem;
}

.service-flow-list div {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.service-flow-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-flow-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.service-showcase {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.service-showcase .clean-list,
.service-detail-main .clean-list,
.service-detail-side .clean-list {
  margin: 0;
  gap: 0.45rem;
}

.service-intro-copy li,
.service-flow-list p,
.service-showcase p,
.service-showcase li,
.service-detail-main li,
.service-detail-side li {
  line-height: 1.55;
}

.service-intro-copy h2,
.service-detail-main h2,
.service-detail-side h2 {
  max-width: 22ch;
}

@media (max-width: 980px) {
  .service-intro-grid,
  .service-detail-layout,
  .service-showcase-grid {
    grid-template-columns: 1fr;
  }
}
