@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  --bg: #060816;
  --bg-2: #0b1433;
  --ink: #ecf6ff;
  --muted: #9fb1d0;
  --soft: rgba(120, 170, 255, 0.14);
  --card: rgba(10, 18, 40, 0.58);
  --card-solid: #0f1b3a;
  --accent: #4cc9ff;
  --accent-dark: #245cff;
  --brown: #1b2d69;
  --cream: #eaf6ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 12%, rgba(76, 201, 255, 0.22), transparent 24rem),
    radial-gradient(circle at 84% 12%, rgba(36, 92, 255, 0.22), transparent 26rem),
    radial-gradient(circle at 50% 100%, rgba(30, 86, 255, 0.16), transparent 30rem),
    linear-gradient(135deg, #03050c 0%, #071022 32%, #091833 62%, #02040a 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: white;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  z-index: 50;
  background-image:
    linear-gradient(rgba(76, 201, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 201, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(76, 201, 255, 0.10), transparent 42%);
  background-size: 48px 48px, 48px 48px, auto;
  mix-blend-mode: screen;
}

.cursor-dot {
  position: fixed;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #b8f4ff, var(--accent));
  box-shadow: 0 0 24px rgba(76, 201, 255, 0.7), 0 0 54px rgba(36, 92, 255, 0.35);
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .2s ease, transform .08s linear;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 40;
  width: min(1160px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(117, 182, 255, .22);
  border-radius: 999px;
  background: rgba(8, 15, 33, .58);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: .78;
  letter-spacing: -.08em;
  font-weight: 1000;
}

.brand-small {
  font-size: 17px;
  text-transform: lowercase;
}

.brand-large {
  font-size: 30px;
}

.brand-dot {
  color: var(--accent);
  letter-spacing: -.08em;
}

.brand-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(8, 14, 30, 0.95), rgba(13, 25, 55, 0.9));
  border: 1px solid rgba(117, 182, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 1px rgba(0,0,0,0.2);
  line-height: 1;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 88px;
  height: auto;
}

.footer-brand {
  align-self: start;
  padding: 6px 9px;
}

.footer-brand .brand-logo {
  width: 118px;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.desktop-nav a {
  position: relative;
  transition: color .25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.mobile-whatsapp {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(16,34,74,0.95), rgba(36,92,255,0.95));
  color: white;
  font-weight: 800;
  font-size: 13px;
  transition: transform .25s ease, background .25s ease;
}

.nav-cta:hover,
.mobile-whatsapp:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: white;
  transition: transform .25s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 96px 32px 32px;
  background: rgba(23, 18, 15, .94);
  color: var(--cream);
  font-size: clamp(32px, 9vw, 72px);
  font-weight: 1000;
  letter-spacing: -.06em;
  transform: translateY(-100%);
  transition: transform .45s cubic-bezier(.19, 1, .22, 1);
}

.menu-open .mobile-menu {
  transform: translateY(0);
}

.mobile-whatsapp {
  align-self: flex-start;
  font-size: 16px;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
  padding: 110px 0;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: grid;
  align-items: center;
  margin: 0;
  padding: 140px max(32px, calc((100vw - 1160px) / 2)) 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(2, 4, 10, .92) 0%, rgba(5, 11, 26, .82) 30%, rgba(7, 19, 48, .58) 58%, rgba(6, 20, 51, .24) 100%),
    radial-gradient(circle at 68% 28%, rgba(76, 201, 255, .26), transparent 22rem),
    radial-gradient(circle at 86% 64%, rgba(36, 92, 255, .24), transparent 18rem),
    linear-gradient(135deg, #03050b, #061022 44%, #0b1d44);
}

.sun-shadow {
  position: absolute;
  inset: -20%;
  background:
    repeating-linear-gradient(115deg, transparent 0 56px, rgba(76, 201, 255, .10) 58px 64px, transparent 66px 98px),
    radial-gradient(circle at 72% 20%, rgba(76, 201, 255, 0.16), transparent 20rem);
  opacity: .82;
  transform: translateX(14%);
  animation: slowDrift 16s ease-in-out infinite alternate;
}

.interior-scene {
  position: absolute;
  right: max(16px, calc((100vw - 1160px) / 2));
  bottom: 8%;
  width: min(690px, 58vw);
  height: min(560px, 70vh);
  opacity: .88;
  filter: saturate(.9) contrast(.95);
}

.arch {
  position: absolute;
  border: 26px solid rgba(255, 245, 232, .45);
  border-bottom: 0;
  border-radius: 180px 180px 0 0;
}

.arch-one {
  right: 4%;
  bottom: 24%;
  width: 220px;
  height: 310px;
}

.arch-two {
  right: 32%;
  bottom: 19%;
  width: 155px;
  height: 235px;
  border-color: rgba(65, 42, 26, .25);
}

.shelf {
  position: absolute;
  right: 0;
  width: 260px;
  height: 18px;
  border-radius: 999px;
  background: rgba(65, 42, 26, .5);
  box-shadow: 0 54px 0 rgba(65, 42, 26, .36), 0 108px 0 rgba(65, 42, 26, .24);
}

.shelf-one {
  top: 28%;
}

.shelf-two {
  top: 56%;
  right: 12%;
  width: 180px;
}

.sofa {
  position: absolute;
  left: 2%;
  bottom: 4%;
  width: 390px;
  height: 130px;
  border-radius: 54px 54px 12px 12px;
  background: linear-gradient(135deg, rgba(154, 217, 255, .62), rgba(37, 82, 170, .42));
  border: 1px solid rgba(157, 214, 255, 0.12);
  box-shadow: var(--shadow);
}

.table {
  position: absolute;
  left: 38%;
  bottom: 10%;
  width: 180px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(41, 100, 222, .85), rgba(129, 225, 255, .55));
  box-shadow: 0 30px 60px rgba(6, 20, 51, .34);
}

.lamp {
  position: absolute;
  left: 48%;
  top: 10%;
  width: 86px;
  height: 86px;
  border-radius: 50% 50% 46% 46%;
  background: rgba(176, 241, 255, .88);
  box-shadow: 0 0 70px rgba(76, 201, 255, .45), 0 0 120px rgba(36, 92, 255, .18);
}

.lamp::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 2px;
  height: 130px;
  background: rgba(176, 241, 255, .42);
}

.person-wash {
  position: absolute;
  right: 28%;
  bottom: 15%;
  width: 54px;
  height: 182px;
  border-radius: 999px 999px 24px 24px;
  background: linear-gradient(180deg, rgba(80, 152, 255, .25), rgba(211, 244, 255, .22));
  filter: blur(2.2px);
  opacity: .55;
  transform: rotate(-4deg);
}

.hero-copy {
  max-width: 720px;
  color: white;
  padding-top: 60px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 950;
}

.hero h1,
.section h2 {
  margin: 0;
  font-size: clamp(48px, 9vw, 124px);
  line-height: .82;
  letter-spacing: -.08em;
  font-weight: 1000;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: #8bdcff;
  font-style: normal;
}

.hero h1 span::after,
.hero h1 em::after {
  content: ".";
  color: var(--accent);
}

.hero-text {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(226, 242, 255, .82);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: white;
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.hero-panel {
  position: absolute;
  right: max(32px, calc((100vw - 1160px) / 2));
  bottom: 58px;
  max-width: 330px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(7, 17, 40, .42);
  color: white;
  border: 1px solid rgba(117, 182, 255, .28);
  box-shadow: 0 20px 40px rgba(0,0,0,.24);
  backdrop-filter: blur(22px);
}

.panel-kicker {
  display: block;
  color: #9fe9ff;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
}

.hero-panel p {
  margin: 10px 0 0;
  color: rgba(226, 242, 255, .82);
  line-height: 1.55;
}

.vertical-note {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .28em;
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  background: linear-gradient(90deg, rgba(4,7,14,0.98), rgba(7,18,44,0.98), rgba(4,7,14,0.98));
  color: var(--cream);
  border-top: 1px solid rgba(117, 182, 255, 0.12);
  border-bottom: 1px solid rgba(117, 182, 255, 0.12);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 20px;
  animation: marquee 26s linear infinite;
}

.marquee span {
  font-weight: 1000;
  font-size: clamp(28px, 5vw, 74px);
  letter-spacing: -.06em;
}

.marquee i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.section-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: start;
}

.about h2,
.services h2,
.calculator h2,
.process h2,
.works h2,
.faq h2,
.contact h2 {
  font-size: clamp(42px, 6vw, 86px);
  color: var(--ink);
}

.about-content {
  padding-top: 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(47, 127, 232, 0.58);
  border: 1px solid rgba(71, 106, 244, 0.7);
}

.stats strong {
  display: block;
  color: var(--ink);
  font-size: 34px;
  letter-spacing: -.05em;
}

.stats span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 750;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.section-intro {
  max-width: 440px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.calculator-card,
.work-card,
.contact-card,
.accordion,
.process-preview {
  border: 1px solid rgba(117, 182, 255, .16);
  background: linear-gradient(180deg, rgba(10, 18, 40, .78), rgba(7, 15, 34, .62));
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255,255,255,.04);
}

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: var(--radius);
  transition: transform .32s ease, background .32s ease, color .32s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  color: white;
  background: linear-gradient(160deg, rgba(14, 30, 69, 0.98), rgba(36, 92, 255, 0.72));
  box-shadow: 0 22px 60px rgba(17, 39, 99, 0.38), 0 0 0 1px rgba(117,182,255,.12);
}

.service-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.service-card h3 {
  margin: 44px 0 12px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.05em;
}

.service-card p {
  margin: 0;
  color: inherit;
  opacity: .82;
  line-height: 1.55;
}

.calculator-card {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 34px;
  padding: 34px;
  border-radius: 36px;
}

.planner-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.planner-form label,
.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid rgba(117, 182, 255, .14);
  border-radius: 18px;
  background: rgba(7, 15, 34, .68);
  color: var(--ink);
  padding: 15px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

select:focus,
input:focus,
textarea:focus {
  border-color: rgba(76, 201, 255, .56);
  box-shadow: 0 0 0 4px rgba(76, 201, 255, .10), 0 0 18px rgba(36, 92, 255, .18);
  background: rgba(10, 20, 43, .86);
}

.planner-result {
  grid-column: 2;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(7,18,44,0.96), rgba(24,66,181,0.9));
  color: white;
  box-shadow: 0 12px 40px rgba(17,39,99,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

.planner-result span {
  color: #9fe9ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.planner-result strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.planner-result p {
  margin: 12px 0 0;
  color: rgba(255, 245, 232, .75);
  line-height: 1.55;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.timeline-item {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(117, 182, 255, .12);
  border-radius: 26px;
  background: rgba(8, 17, 38, .58);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.timeline-item::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  transform: scale(0);
  transition: transform .35s ease;
}

.timeline-item.active,
.timeline-item:hover {
  background: linear-gradient(160deg, rgba(11, 24, 56, 0.96), rgba(23, 63, 171, 0.74));
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 22px 40px rgba(9, 23, 54, .34), 0 0 0 1px rgba(117,182,255,.12);
}

.timeline-item.active::before,
.timeline-item:hover::before {
  transform: scale(1);
}

.timeline-item span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 1000;
}

.timeline-item strong {
  display: block;
  margin-top: 44px;
  font-size: 28px;
  letter-spacing: -.05em;
}

.timeline-item small {
  display: block;
  margin-top: 12px;
  opacity: .68;
  line-height: 1.55;
}

.process-preview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  border-radius: 30px;
}

.preview-number {
  font-size: clamp(58px, 8vw, 112px);
  line-height: .8;
  color: var(--accent);
  text-shadow: 0 0 26px rgba(76, 201, 255, .24);
  font-weight: 1000;
  letter-spacing: -.08em;
}

.process-preview h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -.06em;
}

.process-preview p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.65;
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter {
  border: 1px solid rgba(117, 182, 255, .12);
  border-radius: 999px;
  background: rgba(8, 17, 38, .68);
  color: var(--ink);
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 850;
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.filter.active,
.filter:hover {
  background: linear-gradient(135deg, rgba(12, 30, 70, 0.98), rgba(36, 92, 255, 0.84));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 39, 99, 0.32);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.work-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 20px;
  padding: 18px;
  border-radius: 34px;
  transition: transform .3s ease, opacity .3s ease;
}

.work-card.hide {
  opacity: 0;
  transform: scale(.96);
  pointer-events: none;
  position: absolute;
}

.work-art {
  min-height: 260px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 25%, rgba(255,255,255,.72) 0 9%, transparent 10%),
    linear-gradient(135deg, rgba(15,35,86,.44), rgba(255,255,255,.06)),
    linear-gradient(120deg, #0d1d49, #152d7a 55%, #55dbff);
  position: relative;
  overflow: hidden;
}

.work-art::before,
.work-art::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  background: rgba(255, 248, 239, .5);
}

.work-art::before {
  width: 46%;
  height: 34%;
  left: 8%;
  bottom: 12%;
}

.work-art::after {
  width: 22%;
  height: 62%;
  right: 10%;
  bottom: 12%;
}

.work-art.retail {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.22) 0 8px, transparent 8px 22px),
    linear-gradient(120deg, #071230, #10317a);
}

.work-art.cabinet {
  background:
    linear-gradient(90deg, rgba(255,255,255,.28) 0 1px, transparent 1px 18%),
    linear-gradient(135deg, #091331, #1a4cc2);
}

.work-art.cafe {
  background:
    radial-gradient(circle at 62% 30%, rgba(255,245,232,.8) 0 16%, transparent 17%),
    linear-gradient(135deg, #07122f, #1444aa 60%, #63e0ff);
}

.work-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.work-card h3 {
  margin: 12px 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: .95;
  letter-spacing: -.06em;
}

.work-card p {
  color: var(--muted);
  line-height: 1.6;
}

.accordion {
  max-width: 900px;
  margin-left: auto;
  border-radius: 34px;
  padding: 12px;
}

.accordion-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  padding: 22px;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 1000;
  letter-spacing: -.05em;
  text-align: left;
}

.accordion-item i {
  color: var(--accent);
  font-style: normal;
  transition: transform .25s ease;
}

.accordion-item.active i {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(117, 182, 255, .08);
  transition: max-height .3s ease;
}

.accordion-panel.open {
  max-height: 220px;
}

.accordion-panel p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 38px;
  padding: 38px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(10, 18, 40, .86), rgba(7, 15, 34, .72)),
    radial-gradient(circle at 80% 0%, rgba(76, 201, 255, .16), transparent 24rem);
}

.contact-card h2 {
  margin-bottom: 18px;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-details a {
  width: fit-content;
  color: var(--ink);
  font-weight: 900;
  border-bottom: 2px solid var(--accent);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 30px;
  background: rgba(7, 15, 34, .52);
}

.contact-form .button {
  border: 0;
  margin-top: 4px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 34;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #20dca6, #18a6ff);
  color: white;
  box-shadow: 0 16px 34px rgba(24, 166, 255, .28);
  font-weight: 1000;
  transition: transform .25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
}

.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid rgba(117, 182, 255, .12);
}

.footer-brand {
  color: var(--ink);
}

.footer p {
  margin: 0;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.19, 1, .22, 1), transform .7s cubic-bezier(.19, 1, .22, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .22s;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

@keyframes slowDrift {
  from { transform: translateX(10%) rotate(0deg); }
  to { transform: translateX(18%) rotate(2deg); }
}

@media (max-width: 960px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 42px;
  }

  .interior-scene {
    width: 86vw;
    opacity: .45;
  }

  .vertical-note {
    display: none;
  }

  .about-grid,
  .section-head,
  .calculator-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .planner-form,
  .timeline {
    grid-template-columns: 1fr;
  }

  .planner-result {
    grid-column: auto;
  }

  .work-card {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 74px 0;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .calculator-card,
  .contact-card {
    padding: 22px;
    border-radius: 28px;
  }

  .cursor-dot {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


@media (max-width: 640px) {
  .brand-logo {
    width: 96px;
  }

  .footer-brand .brand-logo {
    width: 138px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 76px;
  }

  .footer-brand .brand-logo {
    width: 108px;
  }
}


/* --- SusunLah custom project update --- */
:root {
  --brand-red: #ff3b3b;
}

.hero {
  padding-bottom: 80px;
}

.hero-content {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 span::after,
.hero h1 em::after {
  content: none;
}

.hero h1 .hero-line {
  display: block;
}

.hero h1 .final-line {
  display: inline-block;
  position: relative;
}

.hero h1 .final-line::after {
  content: ".";
  color: var(--brand-red);
}

.accent-red {
  color: var(--brand-red) !important;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 0.92 / 1;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(117, 182, 255, .18);
  background: rgba(8, 17, 38, .6);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(6, 20, 51, .18));
  z-index: 1;
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  left: -16px;
  bottom: 32px;
  max-width: 280px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(7, 17, 40, .64);
  border: 1px solid rgba(117, 182, 255, .2);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}

.hero-floating-card p {
  margin: 10px 0 0;
  color: rgba(226, 242, 255, .82);
  line-height: 1.55;
}

.hero-mini-badge {
  position: absolute;
  top: 36px;
  right: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(7, 17, 40, .68);
  border: 1px solid rgba(117, 182, 255, .18);
  color: var(--cream);
  font-weight: 900;
  letter-spacing: -.03em;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .18);
}

.hero-red-orb {
  position: absolute;
  right: 16px;
  bottom: 118px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 24px rgba(255, 59, 59, .55);
}

.featured-project {
  padding-top: 90px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 28px;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid rgba(117, 182, 255, .16);
  background: linear-gradient(180deg, rgba(10, 18, 40, .78), rgba(7, 15, 34, .62));
  box-shadow: 0 18px 54px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255,255,255,.04);
}

.ba-wrapper {
  --split: 58%;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(117, 182, 255, .14);
  background: #061022;
}

.ba-image {
  position: absolute;
  inset: 0;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.after-image {
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 0 0 1px rgba(0,0,0,.08), 0 0 18px rgba(76, 201, 255, .32);
  transform: translateX(-50%);
}

.ba-divider::before {
  content: "↔";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(12,30,70,0.96), rgba(36,92,255,0.84));
  color: white;
  font-weight: 900;
  border: 2px solid rgba(255,255,255,.74);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.ba-label {
  position: absolute;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: white;
  background: rgba(7, 17, 40, .74);
  border: 1px solid rgba(117, 182, 255, .18);
  z-index: 2;
}

.ba-label-after { left: 18px; }
.ba-label-before { right: 18px; }

.featured-copy {
  align-self: center;
}

.project-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, rgba(255, 59, 59, .92), rgba(255, 112, 112, .72));
}

.featured-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.06em;
}

.featured-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.featured-points {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.featured-points li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 17, 38, .56);
  border: 1px solid rgba(117, 182, 255, .1);
  color: var(--cream);
}

.project-img {
  width: 100%;
  min-height: 260px;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(117, 182, 255, 0.16);
}

.work-card {
  grid-template-columns: .92fr 1fr;
  align-items: stretch;
}

.work-card > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1100px) {
  .hero-content,
  .featured-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-photo-frame {
    max-width: 100%;
    aspect-ratio: 1.08 / 1;
  }

  .hero-floating-card {
    left: 16px;
  }
}

@media (max-width: 960px) {
  .featured-card {
    padding: 18px;
  }

  .ba-wrapper {
    min-height: 400px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    gap: 26px;
  }

  .hero-visual {
    padding-bottom: 32px;
  }

  .hero-photo-frame {
    border-radius: 28px;
    aspect-ratio: 0.96 / 1.1;
  }

  .hero-floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 14px 0 0;
    max-width: none;
  }

  .hero-mini-badge {
    top: 14px;
    right: 14px;
    font-size: 13px;
  }

  .hero-red-orb {
    right: 18px;
    bottom: 10px;
  }

  .ba-wrapper {
    min-height: 280px;
  }

  .work-card {
    grid-template-columns: 1fr;
  }
}


/* --- Hero refinement + header socials update --- */
.site-header {
  grid-template-columns: auto 1fr auto auto;
}

.header-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-socials a {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(117, 182, 255, .18);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.header-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 59, 59, .18);
  border-color: rgba(255, 59, 59, .45);
}

.header-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.cursor-dot {
  background: radial-gradient(circle at 30% 30%, #ffb0b0, var(--brand-red));
  box-shadow: 0 0 24px rgba(255, 59, 59, 0.72), 0 0 54px rgba(255, 59, 59, 0.28);
}

.hero-content {
  position: relative;
  min-height: 720px;
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding-top: 44px;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50%;
  width: min(760px, 63vw);
  min-height: 0;
  height: min(640px, 74vh);
  transform: translateY(-48%);
  display: block;
  pointer-events: none;
}

.hero-photo-frame {
  width: 100%;
  max-width: none;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 36px;
  overflow: hidden;
}

.hero-photo-frame::before {
  background:
    linear-gradient(90deg, rgba(3, 5, 12, .70) 0%, rgba(3, 5, 12, .28) 32%, rgba(3, 5, 12, .10) 68%, rgba(3, 5, 12, .20) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(6, 20, 51, .24));
}

.hero-photo {
  filter: saturate(.9) contrast(.96) brightness(.82);
}

.hero-floating-card {
  left: 18px;
  bottom: 26px;
  pointer-events: auto;
}

.hero-red-orb {
  right: 22px;
  bottom: 72px;
}

.hero-mini-badge {
  display: none !important;
}

@media (max-width: 1100px) {
  .hero-content {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: auto;
    transform: none;
    margin-top: 32px;
    pointer-events: auto;
  }

  .hero-photo-frame {
    height: auto;
    aspect-ratio: 1.08 / 1;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-socials {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding-top: 10px;
  }

  .hero-photo-frame {
    aspect-ratio: .96 / 1.1;
  }

  .hero-red-orb {
    right: 18px;
    bottom: 10px;
  }
}










/* --- REDO: truly larger hero image + smaller marquee --- */

/* Larger hero CARD: this expands the image area, not the moving text */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 108px;
  padding-bottom: 34px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  min-height: calc(100svh - 142px);
  display: grid;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
  padding-top: 0;
  padding-bottom: 22px;
}

/* The main image is now much larger and fills more of the first landing page */
.hero-visual {
  position: absolute !important;
  z-index: 1;
  left: 50% !important;
  right: auto !important;
  top: 49% !important;
  width: min(1650px, calc(100vw - 24px)) !important;
  height: min(820px, calc(100svh - 128px)) !important;
  min-height: 620px !important;
  transform: translate(-50%, -48%) !important;
  display: block !important;
  pointer-events: none;
}

.hero-photo-frame {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  aspect-ratio: auto !important;
  border-radius: 44px !important;
  overflow: hidden !important;
}

.hero-photo-frame::before {
  background:
    linear-gradient(90deg, rgba(3, 5, 12, .72) 0%, rgba(3, 5, 12, .52) 24%, rgba(3, 5, 12, .18) 52%, rgba(3, 5, 12, .08) 100%),
    linear-gradient(180deg, rgba(3, 5, 12, .04), rgba(3, 5, 12, .12)) !important;
}

.hero-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: saturate(1) contrast(1) brightness(1) !important;
}

/* Keep hero overlay card neat */
.hero-floating-card {
  left: auto !important;
  right: 36px !important;
  bottom: 34px !important;
  max-width: 320px !important;
  pointer-events: auto;
}

/* Moving text: deliberately SMALLER and more professional */
.marquee {
  padding: 6px 0 !important;
}

.marquee-track {
  gap: 10px !important;
}

.marquee span {
  font-size: clamp(12px, 1.15vw, 18px) !important;
  letter-spacing: .08em !important;
  font-weight: 850 !important;
  text-transform: uppercase !important;
}

.marquee i {
  width: 5px !important;
  height: 5px !important;
  min-width: 5px !important;
  background: #ff3b3b !important;
  border-radius: 50% !important;
  box-shadow: none !important;
}

/* Solid red dots, no gradient */
.hero h1 .final-line::after {
  content: ".";
  color: #ff3b3b !important;
  background: transparent !important;
  display: inline !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-red-orb,
.cursor-dot,
.timeline-item::before,
.ba-divider::before {
  background: #ff3b3b !important;
  box-shadow: none !important;
}

.hero-red-orb {
  right: 26px !important;
  bottom: 106px !important;
}

.cursor-dot {
  box-shadow: 0 0 12px rgba(255, 59, 59, .35) !important;
}

.project-chip {
  background: #ff3b3b !important;
}

@media (max-width: 1200px) {
  .hero-visual {
    width: calc(100vw - 20px) !important;
    height: min(760px, calc(100svh - 134px)) !important;
    min-height: 580px !important;
  }
}

@media (max-width: 1100px) {
  .hero-content {
    min-height: auto;
    display: grid;
  }

  .hero-visual {
    position: relative !important;
    left: 50% !important;
    top: auto !important;
    width: calc(100vw - 20px) !important;
    height: auto !important;
    min-height: auto !important;
    transform: translateX(-50%) !important;
    margin-top: 24px;
    pointer-events: auto;
  }

  .hero-photo-frame {
    height: auto !important;
    aspect-ratio: 1.65 / 1 !important;
    border-radius: 34px !important;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 106px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-photo-frame {
    aspect-ratio: 1 / 1.05 !important;
    border-radius: 24px !important;
  }

  .hero-floating-card {
    position: relative;
    right: auto !important;
    bottom: auto !important;
    margin-top: 14px;
    max-width: none !important;
  }

  .hero-red-orb {
    right: 16px !important;
    bottom: 12px !important;
  }

  .marquee {
    padding: 5px 0 !important;
  }

  .marquee span {
    font-size: 13px !important;
  }
}


/* --- Marquee end-to-end fix --- */
.marquee {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.marquee-track {
  display: flex !important;
  width: max-content !important;
  min-width: 200vw !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 10px !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  transform: translateX(0);
  animation: marquee 22s linear infinite !important;
  will-change: transform;
}

.marquee span {
  white-space: nowrap !important;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* --- Mobile readability fix --- */
@media (max-width: 768px) {
  .site-header {
    width: calc(100vw - 24px) !important;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 14px !important;
    border-radius: 28px !important;
    gap: 12px;
  }

  .brand-image {
    width: 92px !important;
  }

  .menu-toggle {
    width: 54px !important;
    height: 54px !important;
    border-radius: 999px !important;
  }

  .hero {
    padding-top: 118px !important;
    padding-inline: 14px !important;
  }

  .hero-content {
    min-height: auto !important;
    gap: 18px !important;
  }

  .hero-copy {
    max-width: none !important;
  }

  .hero-copy h1 {
    font-size: clamp(56px, 15vw, 84px) !important;
    line-height: .92 !important;
    letter-spacing: -.06em !important;
    margin-bottom: 16px !important;
  }

  .hero-copy p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    max-width: none !important;
  }

  .hero-actions {
    gap: 12px !important;
  }

  .hero-actions .button {
    width: 100% !important;
  }

  .hero-visual {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    transform: none !important;
    margin-top: 6px !important;
    pointer-events: auto !important;
  }

  .hero-photo-frame {
    aspect-ratio: 1 / 1.04 !important;
    border-radius: 26px !important;
  }

  .hero-floating-card {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 12px !important;
    max-width: none !important;
  }

  .section-head h2 {
    font-size: clamp(36px, 11vw, 54px) !important;
    line-height: .94 !important;
  }

  .section-head p {
    font-size: 15px !important;
  }

  .filters {
    gap: 8px !important;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .filter {
    flex: 0 0 auto;
    padding: 10px 14px !important;
  }

  .work-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .work-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 14px !important;
    border-radius: 28px !important;
    min-height: auto !important;
    align-items: stretch !important;
  }

  .project-img {
    width: 100% !important;
    min-height: 220px !important;
    height: 220px !important;
    max-height: 220px !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 22px !important;
    display: block !important;
  }

  .work-card > div:last-child {
    display: block !important;
    padding: 2px 4px 6px !important;
  }

  .work-card span {
    display: block !important;
    margin-bottom: 8px !important;
    font-size: 11px !important;
    letter-spacing: .14em !important;
  }

  .work-card h3 {
    margin: 0 0 10px !important;
    font-size: clamp(28px, 9vw, 38px) !important;
    line-height: .95 !important;
    word-break: normal !important;
  }

  .work-card p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    color: rgba(237, 241, 252, .82) !important;
  }

  .featured-card {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 14px !important;
    border-radius: 28px !important;
  }

  .featured-copy {
    padding: 2px 4px 6px !important;
  }

  .featured-copy h3 {
    font-size: clamp(28px, 9vw, 40px) !important;
    margin-bottom: 12px !important;
  }

  .featured-copy p,
  .featured-points li {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .ba-wrapper {
    min-height: 250px !important;
    border-radius: 22px !important;
  }

  .wa-float {
    width: 68px !important;
    height: 68px !important;
    right: 14px !important;
    bottom: 14px !important;
  }

  .marquee {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }

  .marquee span {
    font-size: 13px !important;
    letter-spacing: .05em !important;
  }

  .marquee i {
    width: 5px !important;
    height: 5px !important;
    min-width: 5px !important;
  }
}


/* --- Mobile header social icons + WhatsApp icon update --- */
.floating-whatsapp {
  display: grid !important;
  place-items: center !important;
  font-size: 0 !important;
}

.floating-whatsapp .whatsapp-icon {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  display: block;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto 1fr auto !important;
    gap: 10px !important;
  }

  .desktop-nav,
  .nav-cta {
    display: none !important;
  }

  .header-socials {
    display: inline-flex !important;
    justify-self: end !important;
    align-items: center !important;
    gap: 8px !important;
    margin-right: 4px !important;
  }

  .header-socials a {
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .08) !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
  }

  .header-socials svg {
    width: 18px !important;
    height: 18px !important;
    fill: #ffffff !important;
    opacity: .96 !important;
  }

  .menu-toggle {
    display: block !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 999px !important;
    background: rgba(235, 246, 255, .96) !important;
    border: 1px solid rgba(255, 255, 255, .28) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255,255,255,.28) !important;
  }

  .menu-toggle span {
    width: 22px !important;
    height: 3px !important;
    margin: 5px auto !important;
    border-radius: 999px !important;
    background: #071022 !important;
    opacity: 1 !important;
  }
}

@media (max-width: 480px) {
  .site-header {
    width: calc(100vw - 24px) !important;
    padding: 10px 12px !important;
  }

  .brand-image {
    width: 90px !important;
    padding: 6px 8px !important;
  }

  .brand-logo {
    width: 74px !important;
  }

  .header-socials {
    gap: 6px !important;
  }

  .header-socials a {
    width: 38px !important;
    height: 38px !important;
  }

  .menu-toggle {
    width: 50px !important;
    height: 50px !important;
  }

  .floating-whatsapp .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}


/* --- Cleaner WhatsApp icon fix --- */
.floating-whatsapp {
  background: #25D366 !important;
  display: grid !important;
  place-items: center !important;
  font-size: 0 !important;
}

.floating-whatsapp .whatsapp-icon {
  width: 34px !important;
  height: 34px !important;
  fill: #ffffff !important;
  display: block !important;
}

@media (max-width: 480px) {
  .floating-whatsapp .whatsapp-icon {
    width: 32px !important;
    height: 32px !important;
  }
}


/* --- Multi-page SEO layout --- */
.subpage-main > .section:first-child {
  padding-top: 170px;
}

.page-intro {
  padding-bottom: 60px;
}

.page-intro h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(46px, 7vw, 98px);
  line-height: .86;
  letter-spacing: -.075em;
  font-weight: 1000;
  color: var(--ink);
}

.page-intro h1::after {
  content: ".";
  color: var(--brand-red, #ff3b3b);
}

.page-intro-text {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

@media (max-width: 760px) {
  .subpage-main > .section:first-child {
    padding-top: 135px;
  }

  .page-intro {
    padding-bottom: 38px;
  }

  .page-intro h1 {
    font-size: clamp(42px, 14vw, 68px);
    line-height: .9;
  }

  .page-intro-text {
    font-size: 16px;
  }
}

/* Consistent typography and icon cleanup */
:root{--font:"Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif}
body,button,input,textarea,select,a,p,h1,h2,h3,h4,h5,h6,span,strong,small{font-family:var(--font)}
.cursor-dot{display:none !important}
.header-socials a svg,.floating-whatsapp svg,.nav-cta svg{display:block;overflow:visible}
.floating-whatsapp{line-height:0}

/* Revision 6: final mobile header safeguard for internal pages */
@media (max-width: 960px){
  body.subpage .site-header{align-items:center !important}
  body.subpage .brand-image,
  body.subpage .header-socials,
  body.subpage .menu-toggle{align-self:center !important}
}
