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

:root {
  --navy: #012c4e;
  --navy-80: rgba(1, 44, 78, 0.85);
  --navy-20: rgba(1, 44, 78, 0.12);
  --gold: #c8a96e;
  --gold-lt: #e8d5a3;
  --white: #ffffff;
  --off: #f7f6f3;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: rgba(1, 44, 78, 0.1);
  --r: 12px;
  --r-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Outfit", sans-serif;
}

/* ─── NAV ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(1, 44, 78, 0.96);
  backdrop-filter: blur(12px);
  transition:
    background 0.4s,
    box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(1, 44, 78, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text span:first-child {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-text span:last-child {
  font-size: 10px;
  color: white;
  opacity: 0.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ─── HERO ─────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(1, 80, 140, 0.4) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(1, 80, 140, 0.4) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 0 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-badge span {
  font-size: 12px;
  color: var(--gold-lt);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-title .accent {
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-num span {
  color: var(--gold);
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* hero right – visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.hero-card-main {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.hero-card-img {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #1a4a6e 0%, #012c4e 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.hero-card-img svg {
  opacity: 0.18;
}
.hero-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(1, 44, 78, 0.85) 0%,
    rgba(1, 44, 78, 0.2) 100%
  );
}
.hero-card-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-card-body {
  padding: 16px 20px 20px;
}
.hero-card-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.hero-cards-row {
  display: flex;
  gap: 14px;
  width: 100%;
}
.hero-mini-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 16px;
  backdrop-filter: blur(6px);
}
.hero-mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(200, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.hero-mini-icon svg {
  width: 20px;
  height: 20px;
}
.hero-mini-card h4 {
  font-size: 13px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-mini-card p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ─── SECTION BASE ─────────────────────────────── */
section {
  padding: 100px 5%;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.section-tag-line {
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-tag span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title.white {
  color: var(--white);
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}
.section-sub.white {
  color: rgba(255, 255, 255, 0.6);
}

/* ─── ABOUT ─────────────────────────────────────── */
#about {
  background: var(--off);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #012c4e 0%, #014a85 100%);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  border-radius: var(--r-lg);
}
.about-img-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(200, 169, 110, 0.06) 0px,
    rgba(200, 169, 110, 0.06) 1px,
    transparent 1px,
    transparent 28px
  );
}
.about-img-icon {
  opacity: 0.15;
  position: relative;
  z-index: 1;
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(200, 169, 110, 0.35);
}
.about-badge-float .num {
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.about-badge-float .lbl {
  font-size: 12px;
  color: var(--navy);
  opacity: 0.75;
  margin-top: 4px;
  font-weight: 500;
}

.about-content {
  padding-left: 0;
}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-point-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy-20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-point-icon svg {
  width: 20px;
  height: 20px;
}
.about-point-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-point-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── PORTFOLIO ────────────────────────────────── */
#portfolio {
  background: var(--white);
}
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.porto-item {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--navy-20);
}
.porto-item:first-child {
  grid-column: span 2;
}
.porto-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: linear-gradient(135deg, #012c4e 0%, #013f70 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}
.porto-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition:
    transform 0.4s,
    opacity 0.3s;
}
.porto-item:hover .porto-img img {
  transform: scale(1.06);
  opacity: 0.75;
}
.porto-item:hover .porto-img {
  transform: scale(1);
}
.porto-img-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 24px
  );
}
.porto-img-icon {
  opacity: 0.15;
}
.porto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(1, 44, 78, 0.88) 0%,
    transparent 55%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.porto-item:hover .porto-overlay {
  opacity: 1;
}
.porto-overlay-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.porto-overlay-title {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

/* always visible label */
.porto-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 18px;
  background: linear-gradient(
    to top,
    rgba(1, 44, 78, 0.9) 0%,
    transparent 100%
  );
}
.porto-label-tag {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.porto-label-title {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-top: 3px;
}

/* ─── PRODUCTS ─────────────────────────────────── */
#products {
  background: var(--off);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition:
    box-shadow 0.3s,
    transform 0.3s,
    border-color 0.3s;
  cursor: default;
}
.product-card:hover {
  box-shadow: 0 16px 48px rgba(1, 44, 78, 0.1);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.product-icon svg {
  width: 28px;
  height: 28px;
}
.product-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.product-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-tag {
  background: var(--navy-20);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ─── PROMO ─────────────────────────────────────── */
#promo {
  background: var(--navy);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.promo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 110, 0.2);
  border: 1px solid rgba(200, 169, 110, 0.4);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.promo-badge span {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.promo-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
}
.promo-title .gold {
  color: var(--gold);
}
.promo-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}
.promo-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.promo-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.promo-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.2);
  border: 1px solid rgba(200, 169, 110, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promo-check svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
}
.promo-list-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.promo-visual {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 40px;
}
.promo-discount {
  font-family: "Outfit", sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.promo-discount sub {
  font-size: 36px;
  vertical-align: top;
  margin-top: 16px;
  display: inline-block;
}
.promo-visual-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.promo-visual-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  line-height: 1.6;
}
.promo-deadline {
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.promo-deadline svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.promo-deadline span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── TESTIMONIALS ─────────────────────────────── */
#testimonials {
  background: var(--white);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.testi-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testi-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}
.testi-card blockquote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  overflow: hidden;
  flex-shrink: 0;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.testi-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── CTA ───────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, var(--navy) 0%, #013f70 100%);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner .section-tag {
  justify-content: center;
}
.cta-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #012c4e;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s;
}
.cta-wa:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}
.cta-wa svg {
  width: 20px;
  height: 20px;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: #02203c;
  padding: 64px 5% 32px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  max-width: 260px;
}
.footer-col h5 {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-divider {
  max-width: 1200px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ─── SCROLL REVEAL ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── LINK LIHAT SEMUA ──────────────────────────── */
.link-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.2s;
}
.link-all svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.link-all:hover {
  gap: 12px;
}
.link-all:hover svg {
  transform: translateX(3px);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
  .hero-visual {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-badge-float {
    display: none;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .porto-item:first-child {
    grid-column: span 2;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .promo-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .porto-item:first-child {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* ─── PROJECT DETAIL / ARCHIVE ─────────────────────── */
.project-hero {
  min-height: 68vh;
  padding: 150px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.project-hero-bg,
.project-hero-bg::after {
  position: absolute;
  inset: 0;
}
.project-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.project-hero-bg::after {
  content: "";
  background: linear-gradient(
    135deg,
    rgba(1, 44, 78, 0.98),
    rgba(1, 44, 78, 0.72)
  );
}
.project-hero-inner {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.project-kicker {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.project-title {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.project-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}
.project-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
}
.project-copy h2 {
  color: var(--navy);
  font-size: 30px;
  margin-bottom: 18px;
}
.project-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.project-sidebar {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  height: fit-content;
}
.project-meta-row + .project-meta-row {
  border-top: 1px solid var(--border);
  margin-top: 18px;
  padding-top: 18px;
}
.project-meta-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.project-meta-value {
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
.project-gallery {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r);
}
.projects-archive {
  padding: 140px 0 90px;
}
.projects-archive .portfolio-grid {
  margin-top: 40px;
}
.porto-item-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 900px) {
  .project-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .project-gallery {
    grid-template-columns: 1fr;
  }
}

/* Refined project case study page */
.project-page {
  background: var(--white);
}
.case-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(480px, 1.08fr);
  background: var(--navy);
}
.case-hero-copy {
  padding: 170px 8vw 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.case-hero-copy::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -180px;
  background: radial-gradient(
    circle,
    rgba(200, 169, 110, 0.22),
    transparent 68%
  );
}
.case-hero-media {
  position: relative;
  overflow: hidden;
}

.case-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.case-proof-item {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.case-proof-item:last-child {
  border-right: 0;
}
.case-proof-item span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}
.case-proof-item strong {
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
}
.buyer-strip {
  width: min(1200px, 90%);
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 50px rgba(1, 44, 78, 0.12);
  border: 1px solid var(--border);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.buyer-strip div {
  color: var(--muted);
  line-height: 1.6;
}
.buyer-strip strong {
  color: var(--navy);
}
.buyer-strip a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.case-story {
  padding-top: 88px;
}
.case-story-heading {
  max-width: 700px;
  margin-bottom: 34px;
}
.case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  background: var(--off);
}
.case-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.case-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin: 12px 0 12px;
}
.case-card p {
  color: var(--muted);
  line-height: 1.8;
}
.case-card-accent {
  background: var(--navy);
}
.case-card-accent h3,
.case-card-accent p {
  color: var(--white);
}
.case-card-accent p {
  opacity: 0.78;
}
.case-gallery {
  padding-top: 90px;
}
.case-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.material-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.material-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(1, 44, 78, 0.07);
  color: var(--navy);
  font-size: 13px;
}
.case-gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
}
.case-gallery-grid figure {
  min-height: 230px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.case-gallery-grid .case-gallery-main {
  grid-row: span 2;
  min-height: 476px;
}
.case-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trust-section {
  margin-top: 96px;
  background: var(--navy);
  color: var(--white);
}
.trust-layout {
  padding-top: 84px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}
.trust-section .section-title {
  color: var(--white);
}
.trust-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.trust-steps div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 24px;
}
.trust-steps strong {
  display: block;
  font-family: "Outfit", sans-serif;
  color: var(--gold-lt);
  margin-bottom: 10px;
}
.trust-steps p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}
.case-cta {
  padding-top: 84px;
  padding-bottom: 96px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.case-cta > div:first-child {
  max-width: 720px;
}
.case-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.case-cta .cta-wa,
.case-cta .btn-outline {
  text-decoration: none;
}
@media (max-width: 960px) {
  .case-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .case-hero-copy {
    min-height: 520px;
    padding: 130px 5% 48px;
  }
  .case-hero-media {
    min-height: 360px;
  }
  .buyer-strip,
  .case-gallery-head,
  .case-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .case-cards,
  .trust-layout,
  .case-gallery-grid {
    grid-template-columns: 1fr;
  }
  .case-gallery-grid .case-gallery-main {
    grid-row: auto;
    min-height: 280px;
  }
  .trust-steps {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .case-proof-grid {
    grid-template-columns: 1fr;
  }
  .case-proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .case-proof-item:last-child {
    border-bottom: 0;
  }
  .case-cta-actions {
    flex-direction: column;
    width: 100%;
  }
}

/* Detail project refinements */
.case-hero {
  position: relative;
  overflow: visible;
  margin-bottom: 150px;
}
.case-hero::before,
.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.case-hero-copy,
.trust-layout {
  position: relative;
  z-index: 1;
}
.case-hero-media {
  position: absolute;
  top: 116px;
  right: 5vw;
  bottom: -120px;
  width: 48vw;
  border-radius: 16px;
  z-index: 2;
}
.case-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.case-hero-actions .cta-wa,
.case-hero-actions .btn-outline {
  text-decoration: none;
}
.trust-section {
  position: relative;
  overflow: hidden;
}
.trust-section::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(200, 169, 110, 0.16),
    transparent 70%
  );
  pointer-events: none;
}
.related-projects {
  padding-top: 88px;
  padding-bottom: 96px;
}
.related-projects-head {
  max-width: 760px;
  margin-bottom: 30px;
}
.related-projects-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-project-card {
  min-height: 320px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--r-lg);
  text-decoration: none;
  background: var(--navy);
}
.related-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.72;
  transition:
    transform 0.4s,
    opacity 0.3s;
}
.related-project-card:hover img {
  transform: scale(1.06);
  opacity: 0.84;
}
.related-project-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(1, 44, 78, 0.95), transparent);
}
.related-project-card span,
.related-project-card strong {
  display: block;
}
.related-project-card span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.related-project-card strong {
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 19px;
}
.project-page #cta {
  margin-top: 0;
}
@media (max-width: 960px) {
  .case-hero {
    margin-bottom: 72px;
  }
  .case-hero-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    border-radius: 0;
  }
  .related-projects-track {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .case-hero-actions {
    flex-direction: column;
  }
}

.section-intro {
  max-width: 680px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 14px;
}
.trust-section .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

/* Global page transition loader */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  display: grid;
  place-items: center;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.site-loader.is-revealed {
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}
.site-loader.is-covering {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}
.site-loader-inner {
  width: min(560px, calc(100vw - 48px));
  text-align: center;
  transform: translateY(-10px);
}
.site-loader-title {
  font-family: "Outfit", sans-serif;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.site-loader-divider {
  width: 72px;
  height: 2px;
  margin: 24px auto 20px;
  background: var(--gold);
}
.site-loader-tip {
  min-height: 52px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  transition: opacity 0.35s ease;
}
.site-loader-tip.is-changing {
  opacity: 0;
}
body.is-transitioning {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .site-loader,
  .site-loader-tip {
    transition: none;
  }
}
.site-loader-logo {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 18px;
}

/* Blog */
.latest-news {
  background: var(--off);
}
.latest-news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 38px;
}
.latest-news-head > div:first-child {
  max-width: 680px;
}
.latest-news-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.blog-card-image {
  display: block;
  height: 220px;
  background: var(--navy);
}
.blog-card-image img,
.blog-image-fallback {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.blog-image-fallback {
  background:
    linear-gradient(rgba(200, 169, 110, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #012c4e, #013f70);
  background-size:
    36px 36px,
    36px 36px,
    auto;
}
.blog-card-body {
  padding: 22px;
}
.blog-meta,
.article-meta,
.article-category {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-card h2,
.blog-card h3 {
  font-size: 22px;
  line-height: 1.25;
  margin: 10px 0 12px;
}
.blog-card h2 a,
.blog-card h3 a {
  color: var(--navy);
  text-decoration: none;
}
.blog-card p {
  color: var(--muted);
  line-height: 1.75;
}
.blog-read-more {
  display: inline-block;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  margin-top: 16px;
}
.blog-hero {
  padding: 150px 0 56px;
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.blog-hero::before,
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.blog-hero .container,
.article-hero-inner {
  position: relative;
  z-index: 1;
}
.blog-hero .section-title,
.article-hero h1 {
  color: var(--white);
}
.blog-hero .section-intro {
  color: rgba(255, 255, 255, 0.74);
}
.blog-listing {
  padding-top: 70px;
  padding-bottom: 90px;
}
.blog-pagination {
  margin-top: 36px;
}
.article-hero {
  padding: 150px 0 72px;
  background: var(--navy);
  position: relative;
}
.article-hero h1 {
  max-width: 850px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin: 14px 0 18px;
}
.article-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.8;
}
.article-meta {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 22px;
}
.article-featured {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.article-featured img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.article-content {
  max-width: 820px;
  padding-top: 58px;
  padding-bottom: 96px;
}
.article-content > * + * {
  margin-top: 20px;
}
.article-content p,
.article-content li {
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}
.article-content h2,
.article-content h3 {
  color: var(--navy);
  margin-top: 38px;
}
.article-content h2 {
  font-size: 30px;
}
.article-content h3 {
  font-size: 24px;
}
.article-content ul,
.article-content ol {
  padding-left: 24px;
}
@media (max-width: 900px) {
  .latest-news-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .latest-news-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r);
}
.article-content figure {
  margin-top: 30px;
  margin-bottom: 30px;
}
.article-comments {
  max-width: 820px;
  padding-bottom: 84px;
}
.comments-area {
  margin-top: 28px;
}
.comments-title {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 20px;
}
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.comment-list .comment-body {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 14px;
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.comment-author img {
  border-radius: 999px;
}
.comment-metadata {
  font-size: 12px;
  margin-bottom: 12px;
}
.comment-metadata a,
.reply a {
  color: var(--muted);
  text-decoration: none;
}
.comment-respond {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.comment-reply-title {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 14px;
}
.comment-form p {
  margin-top: 14px;
}
.comment-form label {
  display: block;
  color: var(--navy);
  margin-bottom: 7px;
}
.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}
.comment-form .submit {
  border: 0;
  cursor: pointer;
}
.latest-articles {
  padding-bottom: 96px;
}
.article-page footer {
  margin-top: 0;
}

/* Portfolio archive */
.portfolio-archive-hero {
  min-height: 420px;
  padding: 150px 0 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.portfolio-archive-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.portfolio-archive-hero .section-title {
  color: var(--white);
}
.portfolio-archive-hero .section-intro {
  color: rgba(255, 255, 255, 0.76);
}
.portfolio-archive-list {
  padding-top: 76px;
  padding-bottom: 96px;
}
.project-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-list-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.project-list-image {
  display: block;
  height: 280px;
  background: var(--navy);
}
.project-list-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-list-card:hover .project-list-image img {
  transform: scale(1.05);
}
.project-list-body {
  padding: 22px;
}
.project-list-category {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.project-list-body h2 {
  font-size: 24px;
  line-height: 1.2;
  margin: 10px 0 12px;
}
.project-list-body h2 a {
  color: var(--navy);
  text-decoration: none;
}
.project-list-body p {
  color: var(--muted);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.portfolio-archive-page #cta {
  margin-top: 0;
}
@media (max-width: 900px) {
  .project-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Portfolio card refinement */
.project-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.project-list-card {
  border-radius: 16px;
  border: 1px solid rgba(1, 44, 78, 0.1);
  background: var(--white);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease;
}
.project-list-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 110, 0.45);
}
.project-list-image {
  height: 250px;
}
.project-list-body {
  padding: 20px 20px 22px;
}
.project-list-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.project-list-category::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.project-list-body h2 {
  font-size: 21px;
  margin: 12px 0 10px;
}
.project-list-body p {
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .project-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .project-card-grid {
    grid-template-columns: 1fr;
  }
}
.portfolio-archive-hero-inner {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.portfolio-archive-hero-inner .section-tag {
  justify-content: center;
}
.portfolio-archive-hero-inner .section-intro {
  margin-left: auto;
  margin-right: auto;
}
.hero-card-main {
  display: block;
  color: inherit;
  text-decoration: none;
}
.hero-card-body h4 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 8px;
}
.hero-card-body h4 {
  color: var(--white);
}

/* About page */
.about-page-hero {
  min-height: 440px;
  padding: 150px 0 76px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.about-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.about-page-hero .section-title {
  color: var(--white);
}
.about-page-hero .section-intro {
  color: rgba(255, 255, 255, 0.76);
}
.about-story {
  padding-top: 88px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.about-story-copy p:not(.section-intro) {
  color: var(--muted);
  line-height: 1.9;
  margin-top: 18px;
}
.about-story-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.about-story-panel div {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.about-story-panel strong,
.about-story-panel span {
  display: block;
}
.about-story-panel strong {
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-size: 32px;
}
.about-story-panel span {
  color: var(--muted);
  margin-top: 6px;
}
.about-values {
  background: var(--off);
  padding: 88px 0;
}
.about-values-head {
  max-width: 720px;
  margin-bottom: 34px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.about-values-grid article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.about-values-grid h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 12px;
}
.about-values-grid p {
  color: var(--muted);
  line-height: 1.75;
}
.about-location {
  padding-top: 88px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 42px;
  align-items: start;
}
.about-location-card {
  border-radius: var(--r-lg);
  background: var(--navy);
  color: var(--white);
  padding: 28px;
}
.about-location-card div + div {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.about-location-card span,
.about-location-card strong {
  display: block;
}
.about-location-card span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.about-location-card strong {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
}
@media (max-width: 900px) {
  .about-story,
  .about-location {
    grid-template-columns: 1fr;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

/* About page visual upgrade */
.about-page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
}
.about-page-hero-copy {
  max-width: 760px;
}
.about-page-hero-image {
  position: relative;
  z-index: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(255,255,255,.14);
}
.about-page-hero-image img,
.about-story-img-main,
.why-choose-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about-story-visual {
  position: relative;
}
.about-story-img-main {
  height: 420px;
  border-radius: var(--r-lg);
}
.about-story-visual .about-story-panel {
  width: calc(100% - 42px);
  margin: -72px auto 0;
  position: relative;
  z-index: 2;
}
.why-choose-about {
  padding-top: 92px;
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.why-choose-media {
  height: 520px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--navy);
}
.why-choose-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.why-choose-list div {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--off);
}
.why-choose-list strong,
.why-choose-list span {
  display: block;
}
.why-choose-list strong {
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  margin-bottom: 6px;
}
.why-choose-list span {
  color: var(--muted);
  line-height: 1.7;
}
.about-location {
  grid-template-columns: minmax(0, 1fr) 420px;
}
.about-map-card {
  min-height: 430px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  display: block;
}
.about-location-card h2 {
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  margin: 10px 0 12px;
}
.about-location-card p {
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 24px;
}
.about-location-card a {
  color: var(--gold-lt);
  text-decoration: none;
}
@media (max-width: 900px) {
  .about-page-hero-inner,
  .why-choose-about {
    grid-template-columns: 1fr;
  }
  .about-page-hero-image,
  .why-choose-media {
    min-height: 280px;
    height: 320px;
  }
  .about-story-img-main {
    height: 320px;
  }
}

/* About page hero alternate layout + responsive contact */
.about-page-hero {
  padding-bottom: 0;
}
.about-page-hero-inner {
  display: block;
  max-width: 1200px;
}
.about-page-hero-copy {
  max-width: 820px;
  padding-bottom: 42px;
}
.about-page-hero-image {
  width: 100%;
  min-height: 420px;
  border-radius: 24px 24px 0 0;
  margin-top: 8px;
  border-bottom: 0;
}
.about-page-hero-image img {
  max-height: 520px;
}
.about-location {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: stretch;
}
.about-location-card {
  min-width: 0;
  overflow-wrap: anywhere;
}
.about-location-card .section-tag {
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .about-page-hero {
    padding-top: 130px;
  }
  .about-page-hero-copy {
    padding-bottom: 30px;
  }
  .about-page-hero-image {
    min-height: 300px;
    height: 340px;
    border-radius: 18px 18px 0 0;
  }
  .about-location {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-map-card,
  .about-map-card iframe {
    min-height: 320px;
  }
  .about-location-card {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .about-page-hero-image {
    min-height: 240px;
    height: 260px;
  }
  .about-location-card {
    padding: 22px;
  }
  .about-location-card h2 {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  .about-values .container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-location-card {
    order: 1;
  }
  .about-map-card {
    order: 2;
  }
}

/* Consistent responsive container spacing */
.container {
  width: min(1200px, 90%);
}
@media (max-width: 900px) {
  .container {
    width: calc(100% - 40px);
  }
  .about-page-hero-image {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .container {
    width: calc(100% - 32px);
  }
}
@media (max-width: 560px) {
  .about-page .container,
  .about-page-hero-inner,
  .about-story,
  .why-choose-about,
  .about-location,
  .about-values .container {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }
  .about-story,
  .why-choose-about,
  .about-location {
    padding-left: 0;
    padding-right: 0;
  }
  .about-page-hero-copy {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 900px) {
  .about-location {
    padding-top: 0;
  }
}
@media (max-width: 560px) {
  .about-story,
  .why-choose-about,
  .about-values,
  .about-location {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .about-location {
    padding-top: 0;
  }
  .about-story-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .about-story-visual .about-story-panel {
    order: 1;
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-story-img-main {
    order: 2;
    height: 280px;
  }
  .about-story-panel div {
    padding: 18px;
  }
}

/* Mobile sidebar navigation */
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}
.mobile-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9980;
  background: rgba(1, 20, 35, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 9981;
  width: min(86vw, 360px);
  background: var(--white);
  padding: 22px;
  transform: translateX(-100%);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  display: flex;
  flex-direction: column;
}
.mobile-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
}
.mobile-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-sidebar-brand img {
  width: 38px;
  height: 38px;
}
.mobile-sidebar-brand strong,
.mobile-sidebar-brand span {
  display: block;
}
.mobile-sidebar-brand strong {
  color: var(--navy);
  font-family: "Outfit", sans-serif;
}
.mobile-sidebar-brand span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.mobile-sidebar-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--off);
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.mobile-sidebar-links {
  display: grid;
  gap: 4px;
}
.mobile-sidebar-links a {
  color: var(--navy);
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  line-height: 1.15;
  padding: 12px 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}
.mobile-sidebar-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  padding: 15px 18px;
  border-radius: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
body.mobile-menu-open {
  overflow: hidden;
}
body.mobile-menu-open .mobile-sidebar-backdrop {
  opacity: 1;
  pointer-events: auto;
}
body.mobile-menu-open .mobile-sidebar {
  transform: translateX(0);
}
body.mobile-menu-open .mobile-sidebar-links a {
  opacity: 1;
  transform: translateY(0);
}
body.mobile-menu-open .mobile-sidebar-links a:nth-child(1) { transition-delay: .12s; }
body.mobile-menu-open .mobile-sidebar-links a:nth-child(2) { transition-delay: .18s; }
body.mobile-menu-open .mobile-sidebar-links a:nth-child(3) { transition-delay: .24s; }
body.mobile-menu-open .mobile-sidebar-links a:nth-child(4) { transition-delay: .30s; }
body.mobile-menu-open .mobile-sidebar-links a:nth-child(5) { transition-delay: .36s; }
@media (max-width: 900px) {
  nav {
    gap: 12px;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }
  nav .nav-links,
  nav > .nav-cta {
    display: none;
  }
  nav .nav-logo {
    margin-right: auto;
  }
}
.mobile-sidebar-brand img {
  display: block;
  object-fit: contain;
}
.mobile-sidebar-head {
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

/* Final mobile spacing audit: one outer gutter, no double spacing */
@media (max-width: 560px) {
  nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .container,
  .hero-inner,
  .project-hero-inner,
  .project-content,
  .project-gallery,
  .case-story,
  .case-gallery,
  .trust-layout,
  .case-cta,
  .related-projects,
  .blog-listing,
  .article-hero-inner,
  .article-featured,
  .article-content,
  .article-comments,
  .latest-articles,
  .portfolio-archive-hero-inner,
  .portfolio-archive-list,
  .about-page-hero-inner,
  .about-story,
  .why-choose-about,
  .about-location,
  .about-values > .container,
  .latest-news > .container,
  #testimonials > .container,
  #portfolio > .container,
  #products > .container,
  #about > .container,
  #promo > .container {
    width: calc(100% - 32px) !important;
    max-width: none;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .about-values,
  .latest-news,
  .trust-section,
  .portfolio-archive-hero,
  .about-page-hero,
  .blog-hero,
  .article-hero,
  #cta,
  footer {
    width: 100%;
  }
}
@media (max-width: 560px) {
  section,
  #promo,
  #cta,
  footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  footer .footer-grid,
  footer .footer-bottom,
  footer .footer-divider,
  #cta .cta-inner,
  #promo .promo-inner {
    width: calc(100% - 32px) !important;
    max-width: none;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.portfolio-archive-hero.blog-hero {
  min-height: 0;
  padding: 150px 0 56px;
}
.blog-page #cta {
  margin-top: 0;
}
.portfolio-archive-hero-inner {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.portfolio-archive-hero-inner .section-tag {
  justify-content: flex-start;
}
.portfolio-archive-hero-inner .section-intro {
  margin-left: 0;
  margin-right: 0;
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.about-hero-actions a {
  text-decoration: none;
}
.about-hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.32);
}
@media (max-width: 560px) {
  .about-hero-actions {
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .about-hero-actions {
    flex-direction: row;
    align-items: center;
  }
  .about-hero-actions a {
    width: fit-content;
    flex: 0 0 auto;
  }
}

/* Project detail mobile polish */
.case-hero-actions {
  flex-wrap: wrap;
}
.case-hero-actions a {
  width: fit-content;
  flex: 0 0 auto;
}
.case-hero-copy::before {
  background: radial-gradient(circle, rgba(255,255,255,.14), transparent 68%);
}
.trust-section::after {
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
}
@media (max-width: 560px) {
  .case-hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .case-hero-copy {
    padding-top: 40px !important;
  }
  .case-story,
  .case-gallery {
    padding-top: 24px !important;
  }
  .trust-layout {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (max-width: 560px) {
  .case-hero {
    padding-bottom: 0 !important;
  }
}
.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.product-icon-letter {
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 800;
}
.service-tags-section {
  padding-top: 72px;
}
.service-material-tags {
  justify-content: flex-start;
  margin-top: 10px;
}
.service-page #cta {
  margin-top: 0;
}

/* Product detail page */
.product-detail-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 150px 0 96px;
}
.product-detail-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: center;
}
.product-detail-image {
  min-height: 560px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 0;
}
.product-detail-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-price-pill {
  width: fit-content;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 28px;
}
.product-price-pill span,
.product-price-pill strong {
  display: block;
}
.product-price-pill span {
  color: rgba(255,255,255,.56);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-price-pill strong {
  color: var(--gold-lt);
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  margin-top: 4px;
}
.product-explain {
  padding-top: 82px;
  padding-bottom: 36px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
}
.product-explain-body p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}
.product-specs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding-top: 38px;
  padding-bottom: 68px;
}
.product-spec-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
}
.product-spec-card span,
.product-spec-card strong {
  display: block;
}
.product-spec-card span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-spec-card strong {
  color: var(--navy);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.35;
}
.product-spec-price {
  background: var(--navy);
  grid-column: span 2;
}
.product-spec-price span,
.product-spec-price p { color: rgba(255,255,255,.68); }
.product-spec-price strong { color: var(--gold-lt); font-size: 26px; }
.product-spec-price p { line-height: 1.65; margin-top: 10px; }
.product-card-price {
  width: fit-content;
  color: var(--gold);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin: -2px 0 10px;
}
@media (max-width: 900px) {
  .product-detail-hero-inner,
  .product-explain {
    grid-template-columns: 1fr;
  }
  .product-detail-image {
    min-height: 320px;
  }
  .product-specs {
    grid-template-columns: 1fr;
  }
  .product-spec-price {
    grid-column: auto;
  }
}
@media (max-width: 560px) {
  .product-detail-hero {
    padding-top: 120px;
    padding-bottom: 48px;
  }
  .product-explain {
    padding-top: 48px;
  }
}
.home-product-grid {
  margin-top: 42px;
}
#products .project-list-card {
  text-align: left;
}
#products .project-list-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
