/*
 *= require_tree .
 *= require_self
 */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --navy: #0b1930;
  --navy-light: #142a4a;
  --orange: #e87935;
  --orange-dark: #d06524;
  --cream: #f7f4ee;
  --white: #fff;
  --ink: #101827;
  --muted: #667085;
  --line: #e5e7eb;
  --radius: 28px;
  --shadow-sm: 0 4px 20px rgba(11, 25, 48, 0.06);
  --shadow-md: 0 20px 50px rgba(11, 25, 48, 0.12);
  --nav-height: 76px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 12px 0;
}

.skip-link:focus {
  left: 0;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Navigation */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 24, 39, 0.07);
  transition: box-shadow var(--transition);
}

.nav-wrap.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font: 800 14px Manrope, sans-serif;
}

.brand-name {
  font: 800 18px Manrope, sans-serif;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.76;
  transition: opacity var(--transition), color var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.nav-links a.is-active {
  opacity: 1;
  color: var(--navy);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 11px 18px;
  border-radius: 100px;
  opacity: 1 !important;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.nav-cta.is-active::after { display: none; }

.menu-btn {
  display: none;
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
}

.menu-btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  margin: auto;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }

.menu-btn[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-btn[aria-expanded="true"] .menu-icon::before { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-icon::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 90px 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.28;
  pointer-events: none;
}

.glow-one {
  width: 420px;
  height: 420px;
  background: var(--orange);
  right: -120px;
  top: -120px;
  animation: float 8s ease-in-out infinite;
}

.glow-two {
  width: 300px;
  height: 300px;
  background: #416da8;
  left: -140px;
  bottom: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 18px;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-head h2,
.about h2,
.cta-section h2 {
  font: 800 clamp(46px, 6vw, 78px)/1.02 Manrope, sans-serif;
  letter-spacing: -3px;
  margin: 0;
}

.hero h1 em,
.section-head h2 em,
.about h2 em,
.cta-section h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero-text {
  max-width: 560px;
  color: #b9c4d4;
  font-size: 18px;
  margin: 28px 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  padding: 14px 21px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232, 121, 53, 0.35);
}

.btn-ghost {
  border: 1px solid #40506a;
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  border-color: #6b7d9a;
  background: rgba(255, 255, 255, 0.05);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-dark-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-dark-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 25, 48, 0.15);
}

.btn-block { width: 100%; }

.hero-proof {
  display: flex;
  gap: 34px;
  margin-top: 52px;
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-proof strong {
  font: 800 28px Manrope, sans-serif;
}

.hero-proof span {
  font-size: 11px;
  line-height: 1.2;
  color: #9eabc0;
}

/* Hero art */
.hero-art {
  height: 520px;
  position: relative;
}

.art-card { position: absolute; }

.art-main {
  inset: 20px 15px 20px 35px;
  background: #d8d0c2;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
}

.room {
  height: 100%;
  position: relative;
  background: linear-gradient(145deg, #e6dfd2 0 64%, #bba58e 64%);
}

.wall {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 66%;
  background: linear-gradient(135deg, #efe9df, #d9d0c2);
}

.floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 34%;
  background:
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(70, 50, 35, 0.12) 37px 38px),
    linear-gradient(110deg, #bca28b, #d1b99e);
}

.window {
  position: absolute;
  right: 12%;
  top: 11%;
  width: 34%;
  height: 42%;
  border: 12px solid #29374b;
  background: linear-gradient(135deg, #9ab2c7, #dfe8eb);
}

.window::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 7px;
  background: #29374b;
}

.sofa {
  position: absolute;
  left: 15%;
  bottom: 25%;
  width: 45%;
  height: 20%;
  background: #a87352;
  border-radius: 25px 25px 10px 10px;
  box-shadow: 0 -26px 0 -5px #c38e6d;
}

.table {
  position: absolute;
  left: 44%;
  bottom: 15%;
  width: 24%;
  height: 9%;
  border-radius: 50%;
  background: #594636;
}

.table::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 85%;
  width: 10px;
  height: 70px;
  background: #594636;
}

.plant {
  position: absolute;
  right: 10%;
  bottom: 16%;
  width: 45px;
  height: 130px;
}

.plant::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5px;
  width: 36px;
  height: 35px;
  background: #6b4938;
  border-radius: 4px 4px 14px 14px;
}

.plant i {
  position: absolute;
  bottom: 30px;
  left: 18px;
  width: 18px;
  height: 75px;
  background: #587a5a;
  border-radius: 100% 0 100% 0;
  transform-origin: bottom;
}

.plant i:nth-child(1) { transform: rotate(-35deg); }
.plant i:nth-child(2) { transform: rotate(10deg); left: 28px; }
.plant i:nth-child(3) { transform: rotate(45deg); left: 10px; }

.lamp {
  position: absolute;
  left: 8%;
  top: 8%;
  width: 50px;
  height: 160px;
}

.lamp::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 45px;
  width: 4px;
  height: 105px;
  background: #454545;
}

.lamp span {
  position: absolute;
  left: 2px;
  top: 8px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e5b35e;
  box-shadow: 0 0 45px #e5b35e;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  animation: bob 5s ease-in-out infinite;
}

.code-card {
  right: -8px;
  bottom: 55px;
  width: 190px;
  padding: 20px;
}

.tag-card {
  left: -5px;
  top: 65px;
  padding: 12px 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  animation-delay: 1s;
}

.as-orb {
  position: absolute;
  right: 38%;
  top: -12px;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: var(--orange);
  display: grid;
  place-items: center;
  font: 800 21px Manrope, sans-serif;
  box-shadow: 0 20px 45px rgba(232, 121, 53, 0.4);
  animation: bob 4s ease-in-out infinite reverse;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d2d6dc;
  margin-right: 4px;
}

.code-line {
  height: 7px;
  border-radius: 10px;
  background: #d9dee5;
  margin-top: 12px;
}

.code-line.long { width: 90%; }
.code-line.mid { width: 65%; }
.code-line.short { width: 40%; }

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.trust-inner {
  display: flex;
  gap: 32px;
  padding: 18px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.trust-inner::-webkit-scrollbar { display: none; }

.trust-inner span {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  position: relative;
  padding-left: 16px;
}

.trust-inner span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

/* Sections */
.section { padding: 110px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 55px;
}

.section-head h2 { font-size: 52px; }

.section-head > p {
  color: var(--muted);
  max-width: 450px;
  margin: 0 0 4px;
}

.section-head.compact { margin-bottom: 42px; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.service-card {
  padding: 42px;
  border-radius: var(--radius);
  min-height: 470px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card.interior { background: #e8ded0; }
.service-card.tech { background: var(--navy); color: #fff; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.6);
  font-weight: 800;
  font-size: 20px;
}

.tech .service-icon { background: #1b3455; }

.service-no {
  position: absolute;
  right: 40px;
  top: 42px;
  font: 700 12px Manrope, sans-serif;
  opacity: 0.5;
}

.service-card h3 {
  font: 800 34px Manrope, sans-serif;
  letter-spacing: -1px;
  margin: 55px 0 10px;
}

.service-card p { max-width: 430px; opacity: 0.72; }

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 28px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.service-card li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
  margin-right: 9px;
}

.service-card > a {
  font-weight: 700;
  font-size: 14px;
  transition: gap var(--transition);
}

.service-card > a span {
  color: var(--orange);
  margin-left: 7px;
  display: inline-block;
  transition: transform var(--transition);
}

.service-card:hover > a span { transform: translateX(4px); }

/* Work */
.work { background: #fff; }

.work-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.work-card {
  border-radius: 25px;
  overflow: hidden;
  background: var(--cream);
  transition: transform var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.work-card:first-child { grid-row: span 2; }

.visual-room,
.visual-office,
.visual-digital {
  height: 330px;
  position: relative;
  overflow: hidden;
}

.visual-room {
  background: linear-gradient(150deg, #e8dfd2 0 65%, #ad947d 65%);
}

.v-window {
  position: absolute;
  right: 12%;
  top: 12%;
  width: 35%;
  height: 52%;
  background: #c4d7df;
  border: 10px solid #29374b;
}

.v-sofa {
  position: absolute;
  left: 12%;
  bottom: 22%;
  width: 48%;
  height: 22%;
  background: #a96f51;
  border-radius: 20px;
}

.v-table {
  position: absolute;
  left: 42%;
  bottom: 10%;
  width: 26%;
  height: 9%;
  background: #5b4636;
  border-radius: 50%;
}

.v-light {
  position: absolute;
  left: 9%;
  top: 12%;
  width: 50px;
  height: 120px;
  border-left: 4px solid #444;
}

.visual-office { background: #d8e0dc; }

.desk {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 24%;
  height: 16%;
  background: #795d49;
}

.screen {
  position: absolute;
  left: 35%;
  top: 20%;
  width: 30%;
  height: 32%;
  background: #18283e;
  border: 8px solid #f2f0ea;
  border-radius: 8px;
}

.chair {
  position: absolute;
  left: 43%;
  bottom: 5%;
  width: 15%;
  height: 22%;
  background: #2c3c4f;
  border-radius: 20px;
}

.plant2 {
  position: absolute;
  right: 8%;
  bottom: 18%;
  width: 45px;
  height: 100px;
  background: #64816a;
  border-radius: 50% 20% 20% 50%;
}

.visual-digital {
  background: #e9e6df;
  padding: 30px;
}

.browser {
  height: 100%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 18px;
}

.browser > span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd0d5;
  margin-right: 4px;
}

.browser-title {
  font: 800 26px Manrope, sans-serif;
  margin-top: 50px;
  max-width: 250px;
}

.browser-lines {
  margin-top: 20px;
  width: 70%;
  height: 7px;
  background: #e2e5e8;
  box-shadow: 0 18px #e2e5e8, 0 36px #e2e5e8;
}

.work-meta { padding: 20px 22px 24px; }

.work-meta span {
  display: block;
  color: var(--orange);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.work-meta b {
  display: block;
  font: 800 19px Manrope, sans-serif;
  margin-top: 5px;
}

.work-meta p {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* About */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about h2 {
  font-size: 52px;
  letter-spacing: -2px;
}

.about p {
  color: var(--muted);
  max-width: 650px;
}

.about-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.badge-ring {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 1px solid #d5cdbf;
  display: grid;
  place-items: center;
  background: #ede8de;
  font: 800 64px Manrope, sans-serif;
  color: var(--navy);
  box-shadow: inset 0 0 0 18px #e5dfd3;
}

.about-badge span {
  font-size: 13px;
  color: var(--muted);
}

.about-badge strong { color: var(--ink); }

.founders {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.founders > div {
  padding: 18px 20px;
  background: #fff;
  border-radius: 16px;
  min-width: 190px;
  box-shadow: var(--shadow-sm);
}

.founders strong {
  display: block;
  font: 800 18px Manrope, sans-serif;
}

.founders span {
  font-size: 11px;
  color: var(--muted);
}

/* Process */
.process { background: #fff; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.step {
  background: #fff;
  padding: 32px;
  min-height: 210px;
  transition: background var(--transition);
}

.step:hover { background: #fafafa; }

.step > span {
  color: var(--orange);
  font: 800 12px Manrope, sans-serif;
}

.step h3 {
  font: 800 23px Manrope, sans-serif;
  margin: 35px 0 8px;
}

.step p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Testimonials */
.testimonials { background: var(--cream); }

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

.testimonial-card {
  margin: 0;
  padding: 32px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(16, 24, 39, 0.06);
}

.testimonial-card p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}

.testimonial-card p::before {
  content: "\201C";
  color: var(--orange);
  font: 800 36px/0 Manrope, sans-serif;
  display: block;
  margin-bottom: 12px;
}

.testimonial-card footer strong {
  display: block;
  font: 800 15px Manrope, sans-serif;
}

.testimonial-card footer span {
  font-size: 12px;
  color: var(--muted);
}

/* FAQ */
.faq { background: #fff; }

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.faq h2 { font-size: 52px; }

.faq-intro {
  color: var(--muted);
  max-width: 380px;
  margin-top: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 20px;
  background: var(--cream);
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: rgba(232, 121, 53, 0.4);
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font: 800 20px Manrope, sans-serif;
  color: var(--orange);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* CTA / Contact */
.cta-section {
  padding: 90px 0;
  background: var(--navy);
  color: #fff;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.cta-section h2 { font-size: 56px; }

.cta-section p {
  color: #aebbd0;
  max-width: 550px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
}

.contact-details li {
  font-size: 14px;
  color: #aebbd0;
}

.contact-details span {
  color: var(--orange);
  font-weight: 700;
  margin-right: 8px;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.mail-link {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid #51617a;
  padding-bottom: 4px;
  transition: border-color var(--transition);
}

.mail-link:hover { border-color: var(--orange); }

.contact-note {
  margin: 16px 0 0;
  font-size: 11px;
  color: #7a8aa3;
  line-height: 1.5;
}

/* Footer */
footer {
  background: #071326;
  color: #9ba8bb;
  padding: 42px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand { color: #fff; }

.footer-inner p {
  font-size: 12px;
  margin: 10px 0 0;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
  font-size: 12px;
}

.footer-contact a {
  color: #c5ceda;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-legal-link {
  display: inline-block;
  margin-top: 8px;
  color: #7a8aa3;
  text-decoration: none;
  font-size: 11px;
}

.footer-legal-link:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 12px;
}

.footer-links a {
  transition: color var(--transition);
}

.footer-links a:hover { color: #fff; }

.copyright {
  text-align: right;
  font-size: 11px;
}

/* Back to top */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(232, 121, 53, 0.4);
  transition: transform var(--transition), opacity var(--transition);
}

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

.back-top:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

.back-top[hidden] {
  display: none;
}

/* PWA install banner */
.install-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  max-width: min(420px, calc(100% - 32px));
}

.install-banner[hidden] { display: none; }

.install-banner p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.install-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.install-btn {
  border: 0;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
}

.install-dismiss {
  border: 0;
  background: transparent;
  color: #9ba8bb;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .section-head,
  .about-grid,
  .faq-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-art { height: 440px; }
  .hero-grid { padding: 70px 0; }
  .section-head { gap: 20px; }
  .service-grid,
  .work-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .work-card:first-child { grid-row: auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .copyright { text-align: left; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1160px); }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: grid;
    place-items: center;
    color: var(--navy);
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--line);
  }

  .hero { min-height: auto; }
  .hero-grid { gap: 30px; }

  .hero h1 {
    font-size: 52px;
    letter-spacing: -2px;
  }

  .hero-art { height: 350px; }
  .art-main { inset: 10px 0; }
  .code-card { right: -5px; bottom: 25px; }
  .tag-card { left: 0; top: 25px; }
  .as-orb { right: 35%; top: -10px; width: 58px; height: 58px; }

  .section { padding: 75px 0; }
  .section-head h2,
  .about h2,
  .faq h2 {
    font-size: 40px;
  }

  .service-card {
    padding: 30px;
    min-height: auto;
  }

  .service-card h3 { margin-top: 40px; }

  .visual-room,
  .visual-office,
  .visual-digital {
    height: 270px;
  }

  .steps { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 43px; }
  .footer-links { flex-wrap: wrap; }
  .founders { flex-direction: column; }

  .install-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .install-actions {
    justify-content: center;
  }

  .back-top {
    right: 16px;
    bottom: 16px;
  }

  .hero-split-art { height: 360px; }
  .path-grid { grid-template-columns: 1fr; }
  .faq-columns { grid-template-columns: 1fr; }
  .testimonial-grid-4 { grid-template-columns: 1fr; }
  .work-grid-3 { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

/* Balanced hero */
.hero-balanced .hero-copy h1 { font-size: clamp(40px, 5vw, 68px); }

.hero-actions-split { gap: 10px; }

.hero-split-art {
  position: relative;
  height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.split-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.split-tech { background: #12243d; }
.split-interior { background: #d8d0c2; }

.split-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

.split-interior .split-label {
  background: rgba(11, 25, 48, 0.75);
}

.split-panel .visual-digital.compact,
.split-panel .mini-room {
  height: 100%;
  min-height: 220px;
}

.split-panel .visual-digital.compact {
  padding: 50px 16px 16px;
  background: transparent;
}

.split-panel .browser { height: 100%; }

.mini-room {
  position: relative;
  background: linear-gradient(145deg, #e6dfd2 0 64%, #bba58e 64%);
}

.mini-room .wall,
.mini-room .floor,
.mini-room .window,
.mini-room .sofa,
.mini-room .table,
.mini-room .plant {
  transform: scale(0.85);
  transform-origin: center bottom;
}

.split-connector {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  font: 800 18px Manrope, sans-serif;
  color: #fff;
  box-shadow: 0 10px 30px rgba(232, 121, 53, 0.45);
  z-index: 3;
}

.code-snippet {
  margin-top: 24px;
  padding: 12px 14px;
  background: #0f1e33;
  border-radius: 10px;
  font: 600 12px/1.6 "DM Sans", monospace;
  color: #9eb3d0;
}

.code-kw { color: #e87935; }
.code-fn { color: #7ec8ff; }

/* Path selector */
.path-selector {
  padding: 0 0 20px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.path-card {
  display: block;
  padding: 32px;
  border-radius: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-md);
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(11, 25, 48, 0.16);
}

.path-interior { background: #e8ded0; color: var(--ink); }
.path-tech { background: var(--navy); color: #fff; }

.path-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}

.path-tech .path-icon { background: #1b3455; }

.path-card h2 {
  font: 800 28px Manrope, sans-serif;
  letter-spacing: -1px;
  margin: 0 0 10px;
}

.path-card p {
  margin: 0 0 20px;
  opacity: 0.78;
  font-size: 14px;
  line-height: 1.6;
}

.path-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
}

.path-tech .path-link { color: #ffb07a; }

/* Work split sections */
.work-split-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 10px 0 22px;
}

.work-category-label {
  font: 800 22px Manrope, sans-serif;
  margin: 0;
  letter-spacing: -0.5px;
}

.interior-label { color: var(--navy); }
.tech-label { color: var(--orange); }

.work-category-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: color var(--transition);
}

.work-category-link:hover { color: var(--orange); }

.work-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.work-grid-3 .work-card:first-child { grid-row: auto; }

/* New portfolio visuals */
.visual-mobile {
  height: 330px;
  background: linear-gradient(145deg, #1a2a42, #0b1930);
  display: grid;
  place-items: center;
  padding: 30px;
}

.phone {
  width: 130px;
  height: 240px;
  background: #111;
  border-radius: 24px;
  padding: 10px 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  position: relative;
}

.phone-notch {
  width: 50px;
  height: 6px;
  background: #333;
  border-radius: 10px;
  margin: 0 auto 8px;
}

.phone-screen {
  height: calc(100% - 14px);
  background: #f4f6f8;
  border-radius: 16px;
  padding: 12px 10px;
}

.app-bar {
  height: 10px;
  width: 60%;
  background: #d5dbe3;
  border-radius: 6px;
  margin-bottom: 14px;
}

.app-card {
  height: 36px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.app-card.short { width: 70%; }

.visual-crm {
  height: 330px;
  background: #eef1f5;
  padding: 24px;
}

.dashboard {
  height: 100%;
  background: #fff;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 70px 1fr;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.dash-sidebar {
  background: var(--navy);
}

.dash-main {
  padding: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  align-content: start;
}

.dash-stat {
  height: 40px;
  background: #edf0f4;
  border-radius: 8px;
}

.dash-chart {
  grid-column: span 2;
  height: 80px;
  background: linear-gradient(180deg, rgba(232, 121, 53, 0.15), transparent);
  border-radius: 8px;
  border: 1px solid #e8ebef;
}

.visual-kitchen {
  height: 330px;
  background: linear-gradient(160deg, #f0ebe3, #c8b5a0);
  position: relative;
  overflow: hidden;
}

.k-cabinets {
  position: absolute;
  top: 18%;
  left: 8%;
  right: 8%;
  height: 28%;
  background: #f5f0ea;
  border: 3px solid #d5cdc3;
  border-radius: 4px;
  box-shadow: inset 0 -20px 0 #e8e0d6;
}

.k-hood {
  position: absolute;
  top: 10%;
  left: 38%;
  width: 24%;
  height: 12%;
  background: #888;
  border-radius: 4px 4px 0 0;
}

.k-counter {
  position: absolute;
  bottom: 28%;
  left: 0;
  right: 0;
  height: 8%;
  background: #5a6672;
}

.k-island {
  position: absolute;
  bottom: 12%;
  left: 30%;
  width: 40%;
  height: 18%;
  background: #f5f0ea;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* FAQ columns */
.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.faq-column-title {
  font: 800 20px Manrope, sans-serif;
  margin: 0 0 16px;
}

.faq-page-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
}

.testimonial-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Service pages */
.page-hero {
  padding: 90px 0 70px;
  overflow: hidden;
  position: relative;
}

.page-hero-interior,
.page-hero-tech {
  color: #fff;
}

.page-hero-light {
  padding: 48px 0 24px;
  color: var(--ink);
  background: transparent;
}

.page-hero-light .eyebrow {
  color: var(--orange);
}

.page-hero-light h1 em {
  color: var(--orange);
  font-style: normal;
}

.page-hero-interior {
  background: linear-gradient(135deg, #3d3028 0%, #6b5344 50%, #4a382e 100%);
}

.page-hero-tech {
  background: var(--navy);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.page-hero h1 {
  font: 800 clamp(38px, 5vw, 62px)/1.05 Manrope, sans-serif;
  letter-spacing: -2px;
  margin: 0;
}

.page-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.page-hero-text {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  margin: 22px 0 28px;
}

.page-hero-tags {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-hero-tags li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.page-hero-visual .visual-room.tall,
.page-hero-visual .visual-digital.tall {
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.page-hero-visual .visual-digital.tall {
  padding: 24px;
  background: #152640;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  padding: 14px 21px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  transition: background var(--transition);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

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

.feature-card {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.feature-card-dark {
  background: var(--navy);
  color: #fff;
  border-color: #1b3455;
}

.feature-card h3 {
  font: 800 20px Manrope, sans-serif;
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-card-dark p { color: #aebbd0; }

.content-block { background: #fff; }

.content-block-dark {
  background: var(--navy);
  color: #fff;
}

.content-prose {
  max-width: 780px;
}

.content-prose h2 {
  font: 800 36px Manrope, sans-serif;
  letter-spacing: -1px;
  margin: 0 0 20px;
}

.content-block-dark .content-prose h2 { color: #fff; }

.content-prose p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 16px;
}

.content-block-dark .content-prose p { color: #aebbd0; }

.content-prose a {
  color: var(--orange);
  font-weight: 700;
}

.content-block-dark .content-prose a { color: #ffb07a; }

.faq-single h2 {
  font: 800 42px Manrope, sans-serif;
  letter-spacing: -1px;
  margin: 0 0 24px;
}

.faq-single h2 em {
  color: var(--orange);
  font-style: normal;
}

@media (max-width: 900px) {
  .hero-split-art {
    grid-template-columns: 1fr;
    height: auto;
  }

  .split-connector { display: none; }
  .split-panel { min-height: 200px; }
  .testimonial-grid-4 { grid-template-columns: 1fr 1fr; }
  .work-grid-3 { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .work-grid-3,
  .testimonial-grid-4,
  .feature-grid,
  .faq-columns {
    grid-template-columns: 1fr;
  }
}

/* ===== Mobile polish (phones & small tablets) ===== */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .container {
    width: min(100% - 32px, 1160px);
  }

  /* Navigation */
  .nav-links.open {
    max-height: calc(100dvh - var(--nav-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 60;
    padding: 16px 20px 24px;
  }

  .nav-links.open a {
    padding: 14px 12px;
    font-size: 15px;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 10px;
  }

  .nav-links.open a:hover,
  .nav-links.open a:focus-visible {
    background: rgba(11, 25, 48, 0.04);
  }

  .nav-links.open .nav-cta {
    justify-content: center;
    margin-top: 12px;
    padding: 14px 18px;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 48px;
  }

  .hero-balanced .hero-copy h1,
  .hero h1 {
    font-size: clamp(30px, 8.2vw, 42px);
    letter-spacing: -1.5px;
    line-height: 1.1;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.65;
    margin: 18px 0 22px;
  }

  .hero-actions,
  .hero-actions-split,
  .page-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn,
  .hero-actions-split .btn,
  .hero-actions-split .btn-ghost,
  .page-hero .hero-actions .btn,
  .page-hero .hero-actions .btn-ghost-light {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    min-height: 48px;
  }

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

  .hero-proof strong {
    font-size: 22px;
  }

  .hero-proof span {
    font-size: 10px;
  }

  .hero-split-art {
    grid-template-columns: 1fr;
    height: auto;
    gap: 12px;
  }

  .split-panel {
    min-height: 170px;
  }

  .split-connector {
    display: none;
  }

  .split-panel .browser-title {
    font-size: 17px;
    margin-top: 20px;
    max-width: none;
  }

  .code-snippet {
    font-size: 11px;
    margin-top: 14px;
    overflow-x: auto;
  }

  /* Path cards */
  .path-selector {
    margin-top: 0;
    padding: 20px 0 8px;
  }

  .path-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .path-card {
    padding: 24px;
  }

  .path-card h2 {
    font-size: 22px;
  }

  /* Sections */
  .section {
    padding: 56px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-head h2,
  .about h2,
  .faq h2,
  .faq-single h2,
  .cta-section h2 {
    font-size: clamp(28px, 7.5vw, 36px);
    letter-spacing: -1.5px;
    line-height: 1.08;
  }

  .blog-list-item h2,
  .blog-card h3 {
    font-size: 20px;
    letter-spacing: -0.3px;
    line-height: 1.35;
  }

  .section-head > p,
  .faq-intro {
    font-size: 14px;
  }

  /* Services */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 26px;
    min-height: auto;
  }

  .service-card h3 {
    font-size: 26px;
    margin-top: 28px;
  }

  .service-no {
    right: 26px;
    top: 26px;
  }

  /* Work / portfolio */
  .work-split-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 16px;
  }

  .work-category-label {
    font-size: 18px;
  }

  .work-grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .visual-room,
  .visual-office,
  .visual-digital,
  .visual-mobile,
  .visual-crm,
  .visual-kitchen {
    height: 220px;
  }

  .work-meta {
    padding: 16px 18px 20px;
  }

  .work-meta b {
    font-size: 17px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .badge-ring {
    width: 180px;
    height: 180px;
    font-size: 48px;
  }

  .founders {
    flex-direction: column;
  }

  .founders > div {
    min-width: 0;
    width: 100%;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 24px;
    min-height: auto;
  }

  .step h3 {
    margin-top: 20px;
  }

  /* Testimonials */
  .testimonial-grid-4 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    padding: 24px;
  }

  /* FAQ */
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-item summary {
    font-size: 14px;
    padding: 16px 0;
  }

  /* CTA / contact */
  .cta-section {
    padding: 56px 0;
  }

  .cta-box {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-details li {
    font-size: 13px;
  }

  /* Service pages */
  .page-hero {
    padding: 40px 0 36px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 7.5vw, 38px);
    letter-spacing: -1.5px;
  }

  .page-hero-text {
    font-size: 15px;
    margin: 16px 0 22px;
  }

  .page-hero-tags li {
    font-size: 10px;
    padding: 6px 10px;
  }

  .page-hero-visual .visual-room.tall,
  .page-hero-visual .visual-digital.tall {
    height: 240px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    padding: 22px;
  }

  .content-prose h2 {
    font-size: 26px;
  }

  .content-prose p {
    font-size: 15px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .copyright {
    text-align: center;
  }

  /* Floating UI */
  .back-top {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    width: 44px;
    height: 44px;
  }

  .install-banner {
    left: 16px;
    right: 16px;
    transform: none;
    width: auto;
    max-width: none;
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
  }

  .glow-one,
  .glow-two {
    opacity: 0.18;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .hero-balanced .hero-copy h1,
  .hero h1 {
    font-size: 28px;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof div:last-child {
    grid-column: span 2;
    justify-content: center;
  }

  .path-card h2 {
    font-size: 20px;
  }

  .trust-inner span {
    font-size: 12px;
  }
}

/* Contact form */
.contact-form-title {
  font: 800 22px Manrope, sans-serif;
  margin: 0 0 8px;
  color: #fff;
}

.contact-form-lead {
  margin: 0 0 20px;
  font-size: 14px;
  color: #aebbd0;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 700;
  color: #d5deea;
  letter-spacing: 0.3px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  font-size: 14px;
  transition: border-color var(--transition), background var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.12);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23aebbd0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-field select option {
  color: var(--ink);
  background: #fff;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 4px;
  cursor: pointer;
  border: none;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-status {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.form-status--success {
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.form-status--error {
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.form-status--info {
  background: rgba(59, 130, 246, 0.1);
  color: #1e40af;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.contact-or {
  text-align: center;
  margin: 18px 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7a8aa3;
}

.contact-actions-inline {
  display: grid;
  gap: 10px;
}

/* Flash messages */
.flash-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 14px 0;
  animation: flash-in 0.35s ease;
}

.flash-success {
  background: #ecfdf3;
  color: #027a48;
  border-bottom: 1px solid #abefc6;
}

.flash-error {
  background: #fef3f2;
  color: #b42318;
  border-bottom: 1px solid #fecdca;
}

.flash-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.flash-inner p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.flash-close {
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  padding: 0 4px;
}

.flash-close:hover {
  opacity: 1;
}

@keyframes flash-in {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-title {
    font-size: 20px;
  }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 14px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font: 700 14px Manrope, sans-serif;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.whatsapp-float svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .whatsapp-label {
    display: none;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .back-top {
    bottom: 88px;
  }
}

/* Portfolio filters */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.portfolio-filter {
  border: 1px solid #d5cdbf;
  background: #fff;
  color: #0b1930;
  border-radius: 999px;
  padding: 10px 18px;
  font: 700 13px Manrope, sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.portfolio-filter:hover,
.portfolio-filter.is-active {
  background: #0b1930;
  border-color: #0b1930;
  color: #fff;
}

.portfolio-location {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #7a8aa3;
}

.portfolio-card[hidden] {
  display: none !important;
}

.section-cta {
  margin-top: 32px;
  text-align: center;
}

.portfolio-empty {
  text-align: center;
  color: #667085;
  padding: 40px 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e8e0d4;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-featured {
  border-color: #0b1930;
  box-shadow: 0 16px 40px rgba(11, 25, 48, 0.08);
}

.pricing-badge {
  font: 700 11px Manrope, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  font-size: 20px;
}

.pricing-amount {
  margin: 0;
  font: 800 28px Manrope, sans-serif;
  color: #0b1930;
  letter-spacing: -0.5px;
}

.pricing-note {
  margin: 0;
  font-size: 14px;
  color: #667085;
  line-height: 1.5;
}

.pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #334155;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e87935;
  font-weight: 700;
}

.pricing-link {
  font: 700 14px Manrope, sans-serif;
  color: #0b1930;
  text-decoration: none;
}

.pricing-link:hover {
  color: #e87935;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card,
.blog-list-item {
  background: #fff;
  border: 1px solid #e8e0d4;
  border-radius: 20px;
  padding: 24px;
}

.blog-card h3,
.blog-list-item h2 {
  margin: 10px 0;
  font: 700 22px/1.35 Manrope, sans-serif;
  letter-spacing: -0.3px;
}

.blog-card h3 a,
.blog-list-item h2 a {
  color: inherit;
  text-decoration: none;
  letter-spacing: inherit;
}

.blog-card h3 a:hover,
.blog-list-item h2 a:hover {
  color: #e87935;
}

.blog-category {
  display: inline-block;
  font: 700 11px Manrope, sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #7a8aa3;
  margin-top: 12px;
}

.blog-read-link {
  display: inline-block;
  margin-top: 14px;
  font: 700 14px Manrope, sans-serif;
  color: #0b1930;
  text-decoration: none;
}

.blog-read-link:hover {
  color: #e87935;
}

.blog-list {
  display: grid;
  gap: 20px;
  max-width: 820px;
}

.page-main {
  padding-top: 80px;
}

.page-hero-light h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 12px 0;
  font: 800 clamp(36px, 5vw, 56px)/1.08 Manrope, sans-serif;
  letter-spacing: -1.5px;
}

.page-lead {
  max-width: 640px;
  color: #667085;
  font-size: 18px;
  line-height: 1.6;
}

.blog-article-header {
  padding: 32px 0 16px;
  border-bottom: 1px solid #e8e0d4;
}

.blog-article-header-inner {
  max-width: 760px;
}

.blog-back-link {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #667085;
  text-decoration: none;
}

.blog-article-header h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  margin: 12px 0;
}

.blog-article-body {
  max-width: 760px;
  padding: 32px 0;
}

.prose h2 {
  font-size: 22px;
  margin: 28px 0 12px;
}

.prose p,
.prose li {
  line-height: 1.7;
  color: #334155;
}

.prose ul {
  padding-left: 20px;
}

.prose a {
  color: #e87935;
  font-weight: 600;
}

.legal-prose {
  max-width: 760px;
  padding-bottom: 48px;
}

.legal-prose h2 {
  font-size: 22px;
  margin: 28px 0 12px;
  color: var(--ink);
}

.legal-prose p,
.legal-prose li {
  line-height: 1.75;
  color: #334155;
}

.legal-prose ul {
  padding-left: 20px;
}

.blog-article-footer {
  max-width: 760px;
  padding: 24px 0 64px;
  border-top: 1px solid #e8e0d4;
}

.cta-inline-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #0b1930;
  color: #fff;
  border-radius: 24px;
  padding: 32px;
}

.cta-inline-box h2 {
  margin: 0;
  font: 700 clamp(20px, 3vw, 26px)/1.3 Manrope, sans-serif;
  letter-spacing: -0.3px;
  color: #fff;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links .nav-cta {
    margin-top: 8px;
  }
}
