@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Outfit:wght@500;600;700;800&family=Lora:wght@600;700&display=swap");

/* ===== BRAND COLORS ===== */
:root {
  --brand-purple: #492b85;
  --brand-purple-dark: #2d1959;
  --brand-magenta: #e2005a;
  --brand-cyan: #0093c9;
  --brand-yellow: #ffc900;
  --text-main: #201d25;
  --text-light: #625d68;
  --border: #e6e1eb;
  --bg-light: #f6f4f8;
  --bg-warm: #fbfaf7;
  --shadow-soft: 0 18px 48px rgba(45, 25, 89, 0.08);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  font-family:
    "DM Sans",
    -apple-system,
    sans-serif;
  color: var(--text-main);
  background: var(--bg-warm);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  color: var(--brand-purple);
}
a {
  text-decoration: none;
  color: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 147, 201, 0.42);
  outline-offset: 3px;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 4px;
  background: #fff;
  color: var(--brand-purple-dark);
  font-weight: 700;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary {
  background: #fff;
  color: var(--brand-purple);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-dark {
  background: #111;
  color: #fff;
}
.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.btn-green {
  background: #00c853;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 200, 83, 0.25);
}
.btn-green:hover {
  background: #00e676;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 200, 83, 0.3);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--brand-purple-dark);
}
.btn-outline-dark:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(73, 43, 133, 0.08);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
  transition: 0.3s;
}
.navbar.scrolled .nav-inner {
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 44px;
  flex: 0 0 auto;
  min-width: 0;
  line-height: 1;
}
.brand-logo {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
}
.logo-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
  transform: translateY(1px);
}
.logo-wordmark {
  display: block;
  color: var(--brand-purple);
  font-family: "Lora", Georgia, serif;
  font-size: 1.52rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.nav-menu a {
  font-family: "Outfit", sans-serif;
  font-size: 0.91rem;
  font-weight: 600;
  color: var(--text-light);
  transition: 0.2s;
  position: relative;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-magenta);
  transition: 0.3s ease;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--brand-purple);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}
.nav-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 0 0 auto;
}
.nav-call {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand-purple);
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 7px 8px;
  z-index: 201;
}
.menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: #111;
  margin: 6px 0;
  transition: 0.3s;
}
.menu-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.menu-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO (VIDEO BACKGROUND) ===== */
.hero {
  position: relative;
  min-height: min(820px, 92svh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 128px 0 86px;
  background: #0a0512 url("images/hero-video-poster.webp") center / cover
    no-repeat;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1.18);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(12, 7, 20, 0.36), rgba(12, 7, 20, 0.58)),
    linear-gradient(90deg, rgba(45, 25, 89, 0.2), transparent 50%);
  z-index: 2;
}
.hero-content {
  text-align: center;
  max-width: 880px;
  width: 100%;
  position: relative;
  z-index: 3;
  color: #fff;
}

.hero h1 {
  font-size: 4.8rem;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hero-desc {
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto 38px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* ===== SECTION COMMON ===== */
section {
  padding: 84px 0;
}
.section-tight {
  padding-bottom: 52px;
}
.bg-white {
  background: #fff;
}
.bg-gray {
  background: var(--bg-light);
}
.bg-dark {
  background: var(--brand-purple);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sec-tag {
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-magenta);
  margin-bottom: 16px;
  display: block;
}
.bg-dark .sec-tag {
  color: var(--brand-cyan);
}
.sec-title {
  font-size: 2.85rem;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 24px;
  color: var(--brand-purple);
}
.bg-dark .sec-title {
  color: #fff;
  position: relative;
  z-index: 3;
}
.sec-desc {
  font-size: 1.04rem;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 48px;
}
.bg-dark .sec-desc {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 3;
}
.sec-center {
  text-align: center;
}
.sec-center .sec-desc {
  margin: 0 auto 60px;
}
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}
.split-heading .sec-title,
.split-heading .sec-desc {
  margin-bottom: 0;
}
.mt-section {
  margin-top: 60px;
}
.cta-title {
  color: #fff;
  margin-bottom: 24px;
}
.cta-desc {
  margin: 0 auto 48px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-primary {
  background: #fff;
  color: var(--brand-purple);
}
.cta-section .btn {
  max-width: 320px;
}

/* ===== QUICK INQUIRY ===== */
.quick-inquiry-section {
  position: relative;
  z-index: 120;
  padding: 24px 0;
  background: var(--bg-warm);
}
.quick-inquiry-section.on-gray {
  background: var(--bg-light);
}
.quick-inquiry-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: center;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid rgba(73, 43, 133, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.quick-inquiry-section.on-gray .quick-inquiry-card {
  background: #fff;
}
.quick-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-magenta);
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.quick-copy h2 {
  margin-bottom: 8px;
  color: var(--brand-purple);
  font-size: 1.65rem;
  line-height: 1.1;
}
.quick-copy p {
  max-width: 420px;
  color: var(--text-light);
  font-size: 0.98rem;
}
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.quick-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(73, 43, 133, 0.16);
  border-radius: 5px;
  background: #fff;
  color: var(--brand-purple);
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.15;
  box-shadow: 0 8px 20px rgba(34, 34, 34, 0.04);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.quick-chip:hover {
  transform: translateY(-2px);
  border-color: var(--brand-magenta);
  background: var(--brand-magenta);
  color: #fff;
}
.quick-chip.primary {
  border-color: #00c853;
  background: #00c853;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 200, 83, 0.22);
}
.quick-chip.primary:hover {
  background: #00b94d;
  border-color: #00b94d;
}

/* ===== METRICS BAR ===== */
.metrics-bar {
  background: var(--bg-warm);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 40px 0;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.m-val {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-purple);
  line-height: 1;
  margin-bottom: 8px;
}
.m-lbl {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== FOOTER & CTA WRAPPER ===== */
.footer-wrapper {
  position: relative;
  overflow: hidden;
  background: #0a0512;
}
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 5, 20, 0.6) 0%,
    rgba(10, 5, 20, 0.95) 100%
  );
  z-index: 2;
}
.footer-content-area {
  position: relative;
  z-index: 3;
}

.cta-section {
  padding: 86px 0 62px;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: transparent;
  color: #fff;
  padding: 52px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 38px;
  margin-bottom: 48px;
}
.ft-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 5px;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.ft-logo .brand-logo {
  height: 30px;
}
.ft-logo .logo-mark {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}
.ft-logo .logo-wordmark {
  font-size: 1.25rem;
}
.ft-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
  max-width: 320px;
  margin-bottom: 24px;
}
.ft-title {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #fff;
}
.ft-links li {
  margin-bottom: 10px;
}
.ft-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.2s;
  font-weight: 500;
}
.ft-links a:hover {
  color: var(--brand-yellow);
  padding-left: 4px;
}
.ft-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}
.ft-contact strong {
  color: #fff;
  font-family: "Outfit", sans-serif;
  margin-bottom: 4px;
  font-weight: 600;
}
.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}
.ft-credit {
  margin-top: 16px;
  text-align: right;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.86rem;
}
.ft-credit a {
  color: #8bdcff;
  font-weight: 600;
  transition: color 0.2s ease;
}
.ft-credit a:hover {
  color: #b9ecff;
}

/* ===== SERVICES GRID ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 18px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(73, 43, 133, 0.08);
}
.svc-icon {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(180deg, rgba(10, 5, 18, 0) 40%, rgba(10, 5, 18, 0.62) 100%),
    var(--svc-image, url("images/printing-services.webp")) center / cover;
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: #fff;
  margin-bottom: 26px;
  padding: 14px;
  transition: 0.3s;
  overflow: hidden;
}
.svc-card:hover .svc-icon {
  color: #fff;
  transform: translateY(-2px);
}
.svc-icon svg {
  display: none;
}
.svc-icon::after {
  content: attr(data-label);
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-purple);
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.svc-card.svc-print,
.svc-card.svc-stationery {
  --svc-image: url("images/7f27362b-d065-4ad1-8e6e-06a2c1a6e6c6.webp");
}
.svc-card.svc-brochures {
  --svc-image: url("images/printing-services.webp");
}
.svc-card.svc-packaging {
  --svc-image: url("images/packaging-boxes.webp");
}
.svc-card.svc-gifts {
  --svc-image: url("images/corporate-gifts.webp");
}
.svc-card.svc-signage {
  --svc-image: url("images/69368a4b-6c9a-4687-8a0d-74f3283d4948.webp");
}
.svc-card.svc-vinyl {
  --svc-image: url("images/flex-printing.webp");
}
.svc-card.svc-awards {
  --svc-image: url("images/trophies-awards.webp");
}
.svc-card.svc-bags {
  --svc-image: url("images/shopping-bags.webp");
}
.svc-card.svc-fabrication {
  --svc-image: url("images/id-lanyards.webp");
}
.svc-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--brand-purple);
}
.svc-card p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.svc-link {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: var(--brand-magenta);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  transition: 0.2s;
}
.svc-link:hover {
  gap: 8px;
  color: var(--brand-purple);
}

/* ===== CAPABILITY CATEGORY BOARD ===== */
.capability-section {
  position: relative;
}
.capability-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.capability-group {
  --capability-image: url("images/printing-services.webp");
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(73, 43, 133, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(30, 20, 54, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.capability-group:hover {
  transform: translateY(-3px);
  border-color: rgba(226, 0, 90, 0.2);
  box-shadow: 0 26px 60px rgba(30, 20, 54, 0.1);
}
.capability-group::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(180deg, rgba(10, 5, 18, 0) 42%, rgba(10, 5, 18, 0.32) 100%),
    var(--capability-image) center / cover;
}
.capability-office {
  --capability-image: url("images/id-lanyards.webp");
}
.capability-marketing {
  --capability-image: url("images/printing-services.webp");
}
.capability-space {
  --capability-image: url("images/flex-printing.webp");
}
.capability-gifting {
  --capability-image: url("images/corporate-gifts.webp");
}
.capability-group h3 {
  margin: 22px 20px 12px;
  color: var(--brand-purple);
  font-size: 1.24rem;
  line-height: 1.15;
}
.capability-list {
  display: grid;
  gap: 0;
  padding: 0 20px 22px;
}
.capability-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 10px 2px;
  border: 0;
  border-top: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  color: var(--brand-purple);
  font-family: "Outfit", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.1;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.capability-pill::after {
  content: "\2197";
  color: var(--brand-magenta);
  font-size: 0.95rem;
}
.capability-pill:hover {
  transform: translateX(3px);
  border-color: var(--border);
  background: transparent;
  color: var(--brand-magenta);
}

/* ===== PRODUCTION GRADE PORTFOLIO GALLERY ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 32px;
  align-items: stretch;
}
.portfolio-grid.featured-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.portfolio-grid.products-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
}
.port-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 36px rgba(45, 25, 89, 0.06);
  background: #fff;
  border: 1px solid var(--border);
  min-width: 0;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.port-card:hover {
  transform: translateY(-4px);
  border-color: rgba(73, 43, 133, 0.24);
  box-shadow: 0 22px 50px rgba(45, 25, 89, 0.12);
}
.port-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.port-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 1;
}
.port-overlay {
  position: static;
  background: #fff;
  opacity: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px 24px;
}
.port-card:hover .port-img img {
  transform: scale(1.035);
}

.port-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--brand-magenta);
  color: #fff;
  border-radius: 3px;
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  margin-bottom: 0;
  align-self: flex-start;
  transform: none;
  opacity: 1;
  white-space: nowrap;
}
.port-info-wrap {
  flex: 1;
}
.port-info-wrap h3 {
  font-size: 1.35rem;
  color: var(--brand-purple);
  margin-bottom: 5px;
  transform: none;
  opacity: 1;
}
.port-info-wrap p {
  color: var(--text-light);
  font-size: 0.95rem;
  transform: none;
  opacity: 1;
}

/* ===== ABOUT SECTION ===== */
.about-story {
  background: var(--bg-warm);
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
  margin: 0;
}
.about-visual::before {
  content: "";
  position: absolute;
  left: -14px;
  top: -14px;
  width: 64px;
  height: 64px;
  border-top: 5px solid var(--brand-yellow);
  border-left: 5px solid var(--brand-magenta);
  z-index: 2;
}
.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 22px 60px rgba(32, 29, 37, 0.16);
}
.about-visual figcaption {
  padding-top: 12px;
  color: var(--text-light);
  font-size: 0.82rem;
}
.about-story-copy h2 {
  max-width: 640px;
  font-size: 3.15rem;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--brand-purple);
}
.about-story-copy > p {
  font-size: 1.08rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-principles {
  margin-top: 30px;
  border-top: 1px solid var(--border);
}
.about-principle {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.about-principle span {
  color: var(--brand-magenta);
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}
.about-principle h3 {
  margin-bottom: 4px;
  color: var(--brand-purple-dark);
  font-size: 1.08rem;
}
.about-principle p {
  color: var(--text-light);
  font-size: 0.93rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}
.about-stat {
  min-width: 0;
  padding: 36px 24px;
  border-right: 1px solid var(--border);
}
.about-stat:last-child {
  border-right: 0;
}
.about-stat h4 {
  font-size: 2.5rem;
  color: var(--brand-magenta);
  margin-bottom: 8px;
  line-height: 1;
}
.about-process {
  background: var(--bg-light);
}
.process-list {
  border-top: 1px solid rgba(73, 43, 133, 0.18);
}
.process-item {
  display: grid;
  grid-template-columns: 72px minmax(180px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(73, 43, 133, 0.14);
}
.process-number {
  color: var(--brand-magenta);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
}
.process-item h3 {
  color: var(--brand-purple-dark);
  font-size: 1.25rem;
}
.process-item p {
  color: var(--text-light);
}
.about-stat span {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

/* ===== ADVANCED WHATSAPP WIDGET ===== */
.wa-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 16px;
}
.wa-tooltip {
  background: #fff;
  color: #111;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.wa-widget:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.wa-float {
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
  position: relative;
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2s infinite;
  opacity: 0;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
}
.wa-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ===== PAGE HEADERS ===== */
.page-header {
  padding: 132px 0 54px;
  background:
    linear-gradient(90deg, rgba(73, 43, 133, 0.035), transparent 45%),
    var(--bg-light);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: 3.45rem;
  line-height: 1.04;
  margin-bottom: 14px;
  color: var(--brand-purple);
}
.page-header p {
  font-size: 1.06rem;
  color: var(--text-light);
  max-width: 660px;
  margin: 0 auto;
}
.page-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-magenta);
  font-family: "Outfit", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: start;
}
.contact-box {
  background: #fff;
  padding: 48px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.contact-box h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.contact-heading {
  margin-bottom: 40px;
  color: var(--brand-purple);
}
.contact-item {
  margin-bottom: 40px;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 8px;
}
.contact-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: #111;
  line-height: 1.6;
}
.contact-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111;
  overflow-wrap: anywhere;
}
.contact-link.accent {
  color: var(--brand-magenta);
  font-weight: 500;
}
.contact-link.whatsapp {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.95rem;
  color: #00c853;
  font-weight: 700;
}
.form-intro {
  color: #666;
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1.05rem;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: var(--brand-purple);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.form-control {
  width: 100%;
  padding: 16px;
  border: 1px solid #dcd6e3;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.3s;
  background: #fff;
}
.form-control:focus {
  border-color: var(--brand-purple);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(73, 43, 133, 0.1);
}
textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.map-section {
  padding: 0;
  line-height: 0;
}
.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(20%);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 1;
  transform: translateY(0);
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.js-ready .reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .capability-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-story-grid {
    gap: 48px;
  }
  .about-story-copy h2 {
    font-size: 2.7rem;
  }
}

@media (max-width: 900px) {
  .nav-inner {
    height: 72px;
  }
  .navbar.scrolled .nav-inner {
    height: 72px;
  }
  .logo {
    height: 44px;
  }
  .logo-mark {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }
  .logo-wordmark {
    font-size: 1.18rem;
  }
  .brand-logo {
    height: 36px;
  }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 30px 24px 36px;
    gap: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-btns {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .quick-inquiry-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .quick-actions {
    justify-content: flex-start;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
  section {
    padding: 64px 0;
  }
  .section-tight {
    padding-bottom: 40px;
  }
  .nav-inner {
    height: 72px;
  }
  .logo {
    height: 42px;
  }
  .logo-mark {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }
  .logo-wordmark {
    font-size: 1.06rem;
  }
  .brand-logo {
    height: 34px;
  }
  .hero {
    min-height: 82svh;
    padding: 112px 0 58px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-desc {
    font-size: 1.05rem;
  }
  .sec-title {
    font-size: 2.35rem;
  }
  .page-header h1 {
    font-size: 2.6rem;
  }
  .about-story-copy h2 {
    font-size: 2.45rem;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 40px;
  }
  .btn {
    width: 100%;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .svc-grid,
  .capability-board,
  .portfolio-grid,
  .portfolio-grid.featured-grid,
  .portfolio-grid.products-grid {
    grid-template-columns: 1fr;
  }
  .split-heading {
    margin-bottom: 30px;
  }
  .capability-group h3 {
    margin: 20px 18px 12px;
  }
  .capability-list {
    padding: 0 18px 20px;
  }
  .svc-card,
  .contact-box {
    padding: 28px;
  }
  .svc-card {
    padding: 14px 14px 24px;
  }
  .quick-inquiry-section {
    padding: 18px 0;
  }
  .quick-inquiry-card {
    padding: 22px;
  }
  .quick-copy h2 {
    font-size: 1.45rem;
  }
  .quick-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .quick-chip {
    width: 100%;
  }
  .port-overlay {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
  .port-info-wrap h3 {
    font-size: 1.45rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ft-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .ft-credit {
    text-align: center;
  }
  .page-header {
    padding: 108px 0 38px;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .about-stat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .about-stat:last-child {
    border-bottom: 0;
  }
  .process-item {
    grid-template-columns: 42px 1fr;
    gap: 12px 16px;
  }
  .process-item p {
    grid-column: 2;
  }
  .wa-tooltip {
    display: none;
  }
  .wa-widget {
    right: 14px;
    bottom: 14px;
  }
  .wa-float {
    width: 50px;
    height: 50px;
  }
  .wa-float svg {
    width: 27px;
    height: 27px;
  }
  .map-section iframe {
    height: 360px;
  }
}
