:root {
  --bg: #f2f7f6;
  --panel: #ffffff;
  --ink: #0f1f27;
  --ink-soft: #2d4b58;
  --line: rgba(19, 56, 71, 0.15);
  --brand: #067a7f;
  --brand-2: #0ca678;
  --accent: #ff7a45;
  --shadow: 0 16px 36px rgba(10, 35, 45, 0.11);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 80% -10%, #c6f3e4 0, transparent 35%),
    radial-gradient(circle at 10% 0, #ffe4cf 0, transparent 28%),
    var(--bg);
  line-height: 1.65;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95), transparent 80%);
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 5vw;
  backdrop-filter: blur(12px);
  background: rgba(242, 247, 246, 0.85);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 154px;
  height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.34rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-dropdown {
  position: relative;
}

.nav-parent::after {
  content: " \25BE";
  font-size: 0.72em;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 178px;
  display: grid;
  gap: 0.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.4rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 30;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.42rem 0.65rem;
  border-radius: 8px;
  border: 1px solid transparent;
}

.nav-dropdown-menu a:hover {
  color: var(--brand);
  border-color: rgba(6, 122, 127, 0.2);
  background: rgba(6, 122, 127, 0.08);
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-nav a.active {
  color: var(--brand);
  background: #ffffff;
  border-color: rgba(6, 122, 127, 0.28);
}

.site-nav a:hover {
  color: var(--brand);
  border-color: rgba(6, 122, 127, 0.2);
  background: rgba(255, 255, 255, 0.88);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  padding: 0.45rem 0.8rem;
}

.section {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 4.8rem 0;
}

.hero {
  padding-top: 5.8rem;
}

.page-hero {
  padding-top: 4.6rem;
}

.about-hero {
  padding-bottom: 2.8rem;
}

.kicker {
  font-family: "Sora", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--brand);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  max-width: 18ch;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  max-width: 22ch;
  margin-bottom: 1rem;
}

.lead {
  max-width: 62ch;
  color: var(--ink-soft);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  padding: 0.78rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(95deg, var(--brand), var(--brand-2));
}

.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.inline-link {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.stats-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.stats-grid strong {
  display: block;
  font-size: 1.8rem;
  color: var(--brand);
}

.parallax-band {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.parallax-layer {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.85;
  will-change: transform;
}

.orb-1 {
  width: 340px;
  height: 340px;
  left: 6vw;
  top: -110px;
  background: radial-gradient(circle at 30% 30%, #4bc8a8 0, #0b8d85 60%, #06706f 100%);
}

.orb-2 {
  width: 260px;
  height: 260px;
  left: 46vw;
  top: 24px;
  background: radial-gradient(circle at 20% 20%, #ffd1b2 0, #ff8e53 58%, #e0662d 100%);
}

.orb-3 {
  width: 190px;
  height: 190px;
  right: 8vw;
  top: -40px;
  background: radial-gradient(circle at 20% 20%, #b5dcff 0, #4ea9ff 52%, #1f6dc9 100%);
}

.cards,
.service-grid,
.portfolio-grid,
.team-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

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

.portfolio-grid,
.team-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card,
.service,
.portfolio,
.person,
.contact-grid article {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.portfolio,
.person {
  min-height: 165px;
}

.card-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  color: var(--brand);
}

/* ── Strength / USP Cards ── */
.strength-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.strength-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.strength-card:hover {
  transform: translateY(-4px);
}

.strength-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 18%, rgba(255,255,255,0.14) 0%, transparent 55%);
  pointer-events: none;
}

.strength-card:nth-child(1) {
  background: linear-gradient(145deg, #0a3540 0%, #067a7f 100%);
  box-shadow: 0 20px 48px rgba(6, 122, 127, 0.35);
}

.strength-card:nth-child(2) {
  background: linear-gradient(145deg, #094028 0%, #0ca678 100%);
  box-shadow: 0 20px 48px rgba(12, 166, 120, 0.35);
}

.strength-card:nth-child(3) {
  background: linear-gradient(145deg, #4a1c08 0%, #ff7a45 100%);
  box-shadow: 0 20px 48px rgba(255, 122, 69, 0.35);
}

.card-icon-wrap {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.strength-card .card-icon {
  width: 36px;
  height: 36px;
  color: #fff;
  margin-bottom: 0;
}

.strength-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
}

.strength-card p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-photo {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.8rem;
  border: 3px solid rgba(6, 122, 127, 0.16);
  box-shadow: 0 12px 22px rgba(7, 42, 53, 0.2);
}

.person p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.portfolio img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.8rem;
  border: 1px solid var(--line);
}

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

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

/* ── Logo Swiper slider ── */
.logo-swiper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.logo-swiper .swiper-slide {
  width: 148px !important;
  height: auto;
}

.logo-swiper .swiper-slide img {
  width: 148px;
  height: 90px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem;
  box-shadow: var(--shadow);
  display: block;
}

/* keep .logo-grid in case referenced elsewhere */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.logo-grid img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem;
  box-shadow: var(--shadow);
}

.contact-strip {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #0ca678 0%, #067a7f 55%, #075861 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  box-shadow: 0 24px 52px rgba(6, 122, 127, 0.28);
}

.contact-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24) 0, transparent 28%),
    radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.18) 0, transparent 24%);
  pointer-events: none;
}

.contact-strip::after {
  content: "";
  position: absolute;
  inset: auto -8% -55% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0, transparent 68%);
  pointer-events: none;
}

.contact-strip h2,
.contact-strip p {
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.contact-strip p {
  color: rgba(255, 255, 255, 0.88);
}

.contact-strip .hero-actions {
  position: relative;
  z-index: 1;
  justify-content: center;
  align-items: center;
  margin-top: 1.8rem;
}

.contact-strip .btn-primary {
  background: linear-gradient(95deg, #ffffff, #dffcf1);
  color: #075861;
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(8, 38, 43, 0.22);
}

.contact-strip .btn-ghost {
  background: rgba(7, 88, 97, 0.42);
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.contact-strip .btn {
  min-width: 220px;
  justify-content: center;
}

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

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form label {
  font-weight: 700;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 0.72rem 0.82rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

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

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

.shot {
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.shot img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.shot figcaption {
  padding: 0.75rem 0.9rem 0.9rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.price-box {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.price-box .price-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 220px);
  margin: 1.4rem auto 0;
}

.price-box p {
  margin: 0 0 0.7rem;
}

.price-box p:last-child {
  margin-bottom: 0;
}

.price-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(19, 56, 71, 0.08);
}

.price-line:last-of-type {
  border-bottom: 1px solid rgba(19, 56, 71, 0.08);
}

.price-name {
  color: var(--ink-soft);
  font-weight: 700;
}

.price-value-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.price-value,
.price-current {
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
}

.price-old {
  color: rgba(45, 75, 88, 0.72);
  text-decoration: line-through;
  font-size: 0.95rem;
}

.price-box-accent {
  background: linear-gradient(145deg, rgba(255, 122, 69, 0.1), rgba(6, 122, 127, 0.08)), rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 122, 69, 0.25);
}

.price-label {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(6, 122, 127, 0.1);
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.price-total {
  font-size: 1.1rem;
  color: #075861;
  font-weight: 700;
  margin-top: 0.9rem;
}

.price-call {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--accent);
}

.price-note {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.terms-list {
  margin: 0;
  padding-left: 1.2rem;
}

.terms-list li {
  margin-bottom: 0.42rem;
}

.history-list {
  display: grid;
  gap: 1rem;
}

.history-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.history-year {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(95deg, rgba(6, 122, 127, 0.14), rgba(12, 166, 120, 0.18));
  color: #075861;
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

.about-split-wrap {
  padding-top: 1rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.highlight-card {
  background: linear-gradient(165deg, rgba(8, 95, 103, 0.95), rgba(4, 73, 79, 0.96));
  color: #e8f7f4;
  border-color: rgba(255, 255, 255, 0.22);
}

.highlight-card .kicker {
  color: #9cf2d6;
}

.highlight-card blockquote {
  margin: 0 0 1rem;
  padding: 0.5rem 0.9rem;
  border-left: 3px solid rgba(255, 255, 255, 0.45);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.feature-list {
  margin: 0;
  padding-left: 1.1rem;
}

.feature-list li {
  margin-bottom: 0.4rem;
}

.client-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.client-list li {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  text-align: center;
  font-weight: 600;
}

.contact {
  padding-bottom: 5.6rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.1rem 5vw 1.6rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 600ms ease;
}

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

/* Cash n Cash page theme */
.cashncash-page {
  background: radial-gradient(circle at 82% -10%, #ffe4c2 0, transparent 38%),
    radial-gradient(circle at 8% 0, #ffd6cf 0, transparent 32%),
    #fff7ef;
}

.cashncash-page .kicker {
  color: #a54a16;
}

.cashncash-page .btn-primary {
  background: linear-gradient(95deg, #ff7a45, #ff9b42);
}

.cashncash-page .strength-card:nth-child(1) {
  background: linear-gradient(145deg, #4f1f08 0%, #ff7a45 100%);
  box-shadow: 0 20px 48px rgba(255, 122, 69, 0.34);
}

.cashncash-page .strength-card:nth-child(2) {
  background: linear-gradient(145deg, #74300f 0%, #ff9b42 100%);
  box-shadow: 0 20px 48px rgba(255, 155, 66, 0.34);
}

.cashncash-page .strength-card:nth-child(3) {
  background: linear-gradient(145deg, #17395d 0%, #2d7abf 100%);
  box-shadow: 0 20px 48px rgba(45, 122, 191, 0.32);
}

.cashncash-page .price-label {
  background: rgba(255, 122, 69, 0.14);
  color: #9a3b11;
}

.cashncash-page .price-box-accent {
  background: linear-gradient(145deg, rgba(255, 122, 69, 0.14), rgba(45, 122, 191, 0.08)), rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 122, 69, 0.36);
}

.cashncash-page .contact-strip {
  background: linear-gradient(135deg, #ff7a45 0%, #ff5a36 55%, #c83d1e 100%);
  box-shadow: 0 24px 52px rgba(173, 62, 24, 0.3);
}

.cashncash-page .contact-strip .btn-primary {
  background: linear-gradient(95deg, #ffffff, #ffeede);
  color: #8c2f0d;
}

.cashncash-page .contact-strip .btn-ghost {
  background: rgba(94, 25, 9, 0.38);
  border-color: rgba(255, 255, 255, 0.34);
}

/* Harpa page theme */
.harpa-page {
  background: radial-gradient(circle at 82% -10%, #dbe8ff 0, transparent 38%),
    radial-gradient(circle at 8% 0, #f7ddff 0, transparent 30%),
    #f6f8ff;
}

.harpa-page .kicker {
  color: #3c4fb4;
}

.harpa-page .btn-primary {
  background: linear-gradient(95deg, #4b61d1, #6f55d8);
}

.harpa-page .strength-card:nth-child(1) {
  background: linear-gradient(145deg, #203485 0%, #4b61d1 100%);
  box-shadow: 0 20px 48px rgba(75, 97, 209, 0.34);
}

.harpa-page .strength-card:nth-child(2) {
  background: linear-gradient(145deg, #40258e 0%, #6f55d8 100%);
  box-shadow: 0 20px 48px rgba(111, 85, 216, 0.34);
}

.harpa-page .strength-card:nth-child(3) {
  background: linear-gradient(145deg, #0d5d79 0%, #19a0c9 100%);
  box-shadow: 0 20px 48px rgba(25, 160, 201, 0.32);
}

.harpa-page .price-label {
  background: rgba(75, 97, 209, 0.12);
  color: #3246a8;
}

.harpa-page .price-box-accent {
  background: linear-gradient(145deg, rgba(75, 97, 209, 0.12), rgba(25, 160, 201, 0.08)), rgba(255, 255, 255, 0.94);
  border-color: rgba(75, 97, 209, 0.3);
}

.harpa-page .contact-strip {
  background: linear-gradient(135deg, #4b61d1 0%, #6f55d8 55%, #3e43a2 100%);
  box-shadow: 0 24px 52px rgba(55, 56, 141, 0.31);
}

.harpa-page .contact-strip .btn-primary {
  background: linear-gradient(95deg, #ffffff, #e8ecff);
  color: #303f97;
}

.harpa-page .contact-strip .btn-ghost {
  background: rgba(31, 29, 88, 0.4);
  border-color: rgba(255, 255, 255, 0.34);
}

@media (max-width: 1100px) {
  .portfolio-grid,
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .history-item {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .cards,
  .service-grid,
  .contact-grid,
  .client-list,
  .logo-grid,
  .strength-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ontime-gallery {
    grid-template-columns: 1fr;
  }

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

  .price-line {
    flex-direction: column;
    gap: 0.45rem;
  }

  .price-value-group {
    align-items: flex-start;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand-logo {
    width: 128px;
    height: 42px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 5vw;
    width: min(280px, 80vw);
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 0.9rem;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: 200ms ease;
  }

  .site-nav a {
    width: 100%;
    border-radius: 10px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-parent::after {
    content: "";
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    min-width: 0;
    margin-top: 0.35rem;
    padding: 0.3rem;
    box-shadow: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
  }

  .nav-dropdown-menu a {
    width: 100%;
    border-radius: 8px;
    padding-left: 0.72rem;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  h1 {
    max-width: 100%;
  }

  .stats-grid,
  .cards,
  .strength-cards,
  .feature-grid,
  .service-grid,
  .portfolio-grid,
  .team-grid,
  .contact-grid,
  .client-list,
  .logo-grid,
  .showcase-grid,
  .full-grid {
    grid-template-columns: 1fr;
  }

  .parallax-band {
    height: 150px;
  }

  .history-year {
    font-size: 0.85rem;
  }
}
