/* =========================================================
   Zaviyan Enterprise — Brand styles (logo blue + navy + gray)
   ========================================================= */

:root {
  --navy: #001d4a;
  --navy-deep: #001233;
  --slate: #16315f;
  --steel: #2d5caf;
  --amber: #2d5caf;
  --amber-hot: #4a7ad4;
  --amber-dim: rgba(45, 92, 175, 0.15);
  --mist: #e8eef6;
  --paper: #f4f7fb;
  --ink: #1a2330;
  --muted: #5a6270;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 29, 74, 0.16);
  --radius: 14px;
  --header-h: 92px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: clip;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #f4f7fb;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-eye {
  position: relative;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
}

.loader-eye img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  animation: pulse 1.4s ease-in-out infinite;
}

.loader-eye span {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.92); opacity: 0.75; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.88rem 1.45rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-hot));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(45, 92, 175, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(45, 92, 175, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--amber);
  color: var(--amber);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(0, 29, 74, 0.2);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.88rem;
}

/* Header */
.app-call,
.app-tabbar,
.app-sheet-overlay {
  display: none;
}

.app-tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1350;
  align-items: stretch;
  justify-content: space-around;
  gap: 0.15rem;
  min-height: 64px;
  padding: 0.35rem 0.4rem calc(0.4rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(0, 29, 74, 0.08);
  box-shadow: 0 -10px 30px rgba(0, 29, 74, 0.08);
}

.app-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  min-height: 52px;
  border: 0;
  background: transparent;
  color: #7a8494;
  font: inherit;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 14px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.app-tab i {
  font-size: 1.15rem;
}

.app-tab.active,
.app-tab[aria-expanded="true"] {
  color: var(--steel);
  background: var(--amber-dim);
}

.app-tab-wa {
  color: #fff;
  background: #1fad5a;
  max-width: 64px;
  margin: 0 0.15rem;
  box-shadow: 0 8px 18px rgba(31, 173, 90, 0.35);
}

.app-tab-wa span,
.app-tab-wa i {
  color: #fff;
}

.app-sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 1250;
  background: rgba(0, 18, 51, 0.42);
}

.app-call {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--amber-dim);
  color: var(--steel);
  align-items: center;
  justify-content: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
  background: var(--white);
  padding-top: env(safe-area-inset-top);
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(0, 29, 74, 0.08);
}

.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar a:hover {
  color: var(--amber);
}

.top-bar-right {
  display: flex;
  gap: 0.85rem;
}

.nav-wrap {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 29, 74, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 52px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  background-color: var(--white);
  padding: 3px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--steel);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav > a,
.nav-dropdown > a {
  color: var(--navy);
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.main-nav > a:hover,
.nav-dropdown > a:hover,
.main-nav > a.active,
.nav-dropdown > a.active {
  color: var(--steel);
  background: var(--amber-dim);
}

.main-nav .nav-cta {
  margin-left: 0.4rem;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--amber), var(--amber-hot)) !important;
  padding: 0.65rem 1.1rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a i {
  font-size: 0.7rem;
  margin-left: 0.2rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 250px;
  max-height: min(70vh, 480px);
  overflow-y: auto;
  background: var(--white);
  border-radius: 16px;
  padding: 0.6rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s var(--ease);
  z-index: 50;
}

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

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 500;
}

.dropdown-menu a i {
  color: var(--amber);
  width: 1.1rem;
}

.dropdown-menu a:hover {
  background: var(--mist);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 29, 74, 0.12);
  border-radius: 12px;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--navy);
  background:
    radial-gradient(circle at 88% 12%, rgba(45, 92, 175, 0.16), transparent 32%),
    linear-gradient(180deg, #f3f6fb 0%, #ffffff 72%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 62%, rgba(45, 92, 175, 0.06) 62.2%, rgba(45, 92, 175, 0.06) 78%, transparent 78.2%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding: 4.2rem 0 3.4rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: none;
}

.hero-brand,
.hero-content h1.hero-brand {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
  max-width: none;
  color: var(--navy);
}

.hero-brand span {
  color: var(--steel);
}

.hero-lead {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  max-width: none;
  color: var(--steel);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: min(50ch, 100%);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-top: 1.8rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(0, 29, 74, 0.08);
}

.hero-meta strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
}

.hero-meta small {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-meta a {
  color: var(--steel);
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: min(380px, 100%);
  background: var(--white);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: 0 24px 60px rgba(0, 29, 74, 0.12);
  border: 1px solid rgba(0, 29, 74, 0.06);
}

.hero-card img {
  width: 100%;
  border-radius: 14px;
  object-fit: contain;
  background: #f7f8fa;
}

.hero-float {
  display: none;
}

/* Sections */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-dark {
  background:
    radial-gradient(circle at 10% 20%, rgba(45, 92, 175, 0.18), transparent 28%),
    linear-gradient(160deg, var(--navy-deep), var(--navy) 55%, #16315f);
  color: var(--white);
}

.section-muted {
  background: #f5f7fb;
}

.section-head {
  max-width: min(640px, 100%);
  margin-bottom: 2.8rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--amber);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}

.section-dark .eyebrow {
  color: var(--amber-hot);
}

.section-head h2,
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-head p,
.section-dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

/* Feature strip */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -1.2rem;
  position: relative;
  z-index: 5;
}

.feature-chip {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  box-shadow: none;
  border: 1px solid rgba(0, 29, 74, 0.08);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.feature-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 29, 74, 0.08);
  border-color: rgba(45, 92, 175, 0.28);
}

.feature-chip i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--amber-dim);
  color: var(--steel);
  flex-shrink: 0;
}

.feature-chip h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-chip p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0, 29, 74, 0.08);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 29, 74, 0.08);
}

.service-card img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 168px;
  object-fit: cover;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  transition: transform 0.7s var(--ease);
  z-index: 0;
}

.service-card::after {
  display: none;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card-body {
  position: relative;
  inset: auto;
  padding: 1.35rem 1.4rem 1.5rem;
}

.service-card-body .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--amber-dim);
  color: var(--steel);
  display: grid;
  place-items: center;
  margin: -2.4rem 0 0.9rem;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.service-card .link {
  color: var(--steel);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* About preview */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual .main-shot {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}

.about-visual .main-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: -1rem;
  bottom: 2rem;
  background: linear-gradient(135deg, var(--amber), var(--amber-hot));
  color: var(--navy-deep);
  padding: 1.1rem 1.25rem;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(45, 92, 175, 0.35);
  max-width: 190px;
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.checklist {
  margin: 1.4rem 0 1.8rem;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.checklist i {
  color: var(--amber);
  margin-top: 0.25rem;
}

/* Proactive / capability rows */
.capability-list {
  display: grid;
  gap: 1rem;
}

.capability-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s, transform 0.25s;
}

.capability-item:hover {
  border-color: rgba(45, 92, 175, 0.45);
  transform: translateX(6px);
}

.capability-item .num {
  font-family: var(--font-display);
  color: var(--amber);
  font-size: 1.2rem;
}

.capability-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.capability-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.media-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow: var(--shadow);
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame-map {
  aspect-ratio: 21/9;
  border-radius: 24px;
}

.media-frame .play-hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 17, 28, 0.28);
}

.media-frame .play-hint span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(45, 92, 175, 0.92);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  animation: pulse 2s ease-in-out infinite;
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.industry-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(7, 17, 28, 0.08);
  transition: transform 0.3s var(--ease);
}

.industry-card:hover {
  transform: translateY(-8px);
}

.industry-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--steel));
}

.industry-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.industry-card:hover .thumb img {
  transform: scale(1.06);
}

.industry-card .body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.industry-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.industry-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  text-align: center;
  padding: 1.8rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card .value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-card .label {
  color: rgba(255, 255, 255, 0.72);
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--steel));
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 17, 28, 0.92), transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: var(--white);
}

.project-card .tag {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

/* Testimonials */
.quote-board,
.testimonial-slider,
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.15rem;
  align-items: stretch;
}

.quote-card,
.testimonial-card {
  background: var(--white);
  border-radius: 22px;
  padding: 1.5rem 1.55rem 1.35rem;
  box-shadow: 0 14px 36px rgba(7, 17, 28, 0.07);
  border: 1px solid rgba(13, 27, 42, 0.06);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.quote-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(7, 17, 28, 0.12);
}

.quote-card--feature,
.testimonial-card:first-child {
  grid-row: span 2;
  padding: 2rem 2.05rem 1.7rem;
  background:
    linear-gradient(165deg, rgba(45, 92, 175, 0.12), transparent 42%),
    var(--white);
  border-color: rgba(45, 92, 175, 0.28);
}

.quote-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.05rem;
}

.quote-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--amber-dim);
  color: var(--amber);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.quote-card--feature .quote-icon {
  width: 54px;
  height: 54px;
  background: var(--navy);
  color: var(--amber-hot);
  font-size: 1.15rem;
}

.quote-stars,
.testimonial-card .stars {
  color: var(--amber);
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.quote-card p,
.testimonial-card p {
  color: var(--ink);
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
  line-height: 1.7;
  flex: 1;
}

.quote-card--feature p,
.testimonial-card:first-child p {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
}

.quote-person,
.testimonial-card .who {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(13, 27, 42, 0.08);
  flex-wrap: wrap;
}

.quote-card .avatar,
.testimonial-card .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate), var(--navy));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

.quote-card--feature .avatar {
  width: 52px;
  height: 52px;
}

.quote-card strong,
.testimonial-card strong {
  display: block;
  color: var(--ink);
}

.quote-card small,
.testimonial-card small {
  color: var(--muted);
}

.quote-tag {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid rgba(13, 27, 42, 0.08);
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.quote-trust {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

/* Brands */
.brand-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.brand-pill {
  min-width: 140px;
  height: 64px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  letter-spacing: 0.04em;
}

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

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 3.2rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(45, 92, 175, 0.28), transparent 30%),
    linear-gradient(120deg, var(--navy-deep), var(--slate));
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 46ch;
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  padding: 3.6rem 0 3.2rem;
  color: var(--navy);
  background:
    radial-gradient(circle at 90% 0%, rgba(45, 92, 175, 0.14), transparent 36%),
    linear-gradient(180deg, #eef3fb, #ffffff);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 29, 74, 0.06);
}

.page-hero .breadcrumb {
  display: flex;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.page-hero .breadcrumb a:hover {
  color: var(--steel);
}

.page-hero p {
  max-width: min(56ch, 100%);
  color: var(--muted);
}

.page-hero .btn-ghost {
  color: var(--navy);
  border-color: rgba(0, 29, 74, 0.18);
}

.page-hero .btn-ghost:hover {
  color: var(--steel);
  border-color: var(--steel);
  background: var(--amber-dim);
}

/* Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-card,
.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.contact-item {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid #edf1f5;
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--amber-dim);
  color: var(--steel);
  display: grid;
  place-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #d7e0e8;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 16px;
  background: #fbfcfd;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
  border-color: var(--amber);
  box-shadow: 0 0 0 4px var(--amber-dim);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-note a {
  color: var(--navy);
  text-decoration: underline;
}

.alert {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.alert-success {
  background: #e8f8ef;
  color: #146c43;
}

.alert-error {
  background: #fdecea;
  color: #b42318;
}

/* Service detail */
.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.detail-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.detail-points li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(7, 17, 28, 0.05);
}

.detail-points i {
  color: var(--amber);
  margin-top: 0.2rem;
}

.side-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: 1.8rem;
  position: sticky;
  top: 120px;
}

.side-panel h3 {
  font-family: var(--font-display);
  margin-bottom: 0.8rem;
}

.side-panel p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.2rem;
}

.side-panel ul {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.side-panel li {
  display: flex;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.85);
}

.side-panel li i {
  color: var(--amber);
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 4.5rem;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -120px;
  background: radial-gradient(circle, rgba(45, 92, 175, 0.18), transparent 65%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
}

.footer-brand p {
  margin: 1rem 0 1.2rem;
  max-width: 36ch;
}

.site-footer .brand-text strong {
  color: var(--white);
}

.site-footer .brand-text small {
  color: var(--amber-hot);
}

.site-footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.65rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--amber);
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--amber);
  margin-top: 0.25rem;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  transition: 0.25s;
}

.footer-social a:hover {
  background: var(--amber);
  color: var(--navy-deep);
  border-color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

/* Floaters */
.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(7, 17, 28, 0.25);
}

.whatsapp-float {
  right: 1.25rem;
  bottom: 1.25rem;
  background: #25d366;
  font-size: 1.55rem;
}

.back-to-top {
  right: 1.25rem;
  bottom: 5.2rem;
  background: var(--navy);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-step {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 28px rgba(7, 17, 28, 0.06);
  position: relative;
}

.process-step .step {
  font-family: var(--font-display);
  color: var(--amber);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.process-step h3 {
  margin-bottom: 0.4rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Skip link + detail extras */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 10000;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.nav-drop-btn {
  background: transparent;
  border: 0;
  color: var(--navy);
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-drop-btn:hover,
.nav-drop-btn.active {
  color: var(--steel);
  background: var(--amber-dim);
}

.nav-drop-btn i {
  font-size: 0.7rem;
}

.benefits-grid,
.gallery-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.benefit-card,
.related-card,
.process-mini {
  background: var(--white);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: 0 10px 28px rgba(7, 17, 28, 0.06);
}

.benefit-num {
  font-family: var(--font-display);
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.benefit-card h3,
.process-mini h3 {
  margin-bottom: 0.4rem;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  box-shadow: 0 8px 20px rgba(7, 17, 28, 0.05);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--amber);
  font-size: 1.2rem;
  line-height: 1;
}

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

.faq-item p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.mini-steps {
  margin: 1rem 0 1.4rem;
  display: grid;
  gap: 0.7rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.related-card {
  display: grid;
  gap: 0.45rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.related-card i {
  color: var(--amber);
  font-size: 1.2rem;
}

.related-card span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.btn-block {
  display: flex;
  width: 100%;
  margin-top: 0.7rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--amber);
  font-weight: 600;
  margin-top: 0.7rem;
  font-size: 0.92rem;
}

.capability-list.light .capability-item {
  background: #fff;
  border-color: #e6eef4;
  color: var(--ink);
}

.capability-list.light .capability-item p {
  color: var(--muted);
}

.industry-card .body a:not(.text-link) {
  color: inherit;
}

.project-card {
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    width: min(1180px, calc(100% - 1.25rem));
  }

  .feature-strip,
  .services-grid,
  .industry-grid,
  .projects-grid,
  .stats-row,
  .process-grid,
  .footer-grid,
  .benefits-grid,
  .gallery-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem 0 1.6rem;
    gap: 1.25rem;
  }

  .hero-visual {
    order: 0;
  }

  .hero-card {
    width: min(168px, 46vw);
    margin-inline: auto;
    padding: 0.55rem;
  }

  html,
  body {
    -webkit-tap-highlight-color: transparent;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  body.sheet-open {
    overflow: hidden;
  }

  .top-bar {
    display: none;
  }

  .app-call,
  .app-tabbar {
    display: flex;
  }

  .app-sheet-overlay:not([hidden]) {
    display: block;
  }

  .app-tab span {
    white-space: nowrap;
  }

  .brand-mark {
    width: 36px;
    height: 28px;
    padding: 2px;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .brand-text small {
    display: none;
  }

  .nav-inner {
    min-height: 56px;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand-text strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .app-call {
    flex-shrink: 0;
  }

  .nav-wrap {
    backdrop-filter: none;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav,
  body > .main-nav {
    position: fixed;
    top: auto;
    left: 0.7rem;
    right: 0.7rem;
    bottom: calc(76px + env(safe-area-inset-bottom));
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem 0.85rem 1rem;
    gap: 0.15rem;
    border: 1px solid rgba(0, 29, 74, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0, 29, 74, 0.2);
    display: none;
    max-height: min(68vh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1300;
  }

  .main-nav.open,
  body > .main-nav.open {
    display: flex;
  }

  .main-nav > a,
  .nav-drop-btn {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 0.95rem;
    border-radius: 14px;
    min-height: 48px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f5f7fb;
    margin: 0.2rem 0 0.4rem;
    display: none;
    min-width: 0;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: var(--navy);
    min-height: 46px;
  }

  .main-nav .nav-cta {
    margin: 0.5rem 0 0;
    justify-content: center;
  }

  .hero-content > p:not(.hero-lead) {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .page-hero .hero-actions .btn,
  .cta-band .btn,
  .form-card .btn,
  .contact-card .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-actions {
    display: flex;
  }

  .feature-strip {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    margin-top: 0;
    padding: 0.15rem 0.1rem 0.4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .feature-strip::-webkit-scrollbar {
    display: none;
  }

  .feature-chip {
    min-width: min(78vw, 280px);
    scroll-snap-align: start;
  }

  .page-hero {
    padding: 1.8rem 0 1.6rem;
  }

  .page-hero h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .section {
    padding: 2.4rem 0;
  }

  .cta-band {
    padding: 1.35rem;
    border-radius: 18px;
  }

  .whatsapp-float,
  .page-loader {
    display: none !important;
  }

  .page-hero h1,
  .section-head h2,
  .hero-brand {
    overflow-wrap: anywhere;
    max-width: 100%;
  }

  .page-hero .breadcrumb {
    color: #4b5563;
  }

  .page-hero p,
  .section-head p,
  .lead {
    color: #3f4a57;
  }

  .about-badge {
    display: none;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
    right: 0.85rem;
    bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .site-footer {
    padding-top: 2.6rem;
  }

  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    display: none;
  }

  .about-badge {
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .about-visual .main-shot {
    aspect-ratio: 3 / 4;
    max-height: 340px;
  }

  .contact-card,
  .form-card,
  .side-panel {
    padding: 1.2rem;
  }

  .quote-tag {
    margin-left: 0;
    white-space: normal;
  }

  .media-frame-map {
    aspect-ratio: 16 / 9;
  }

  .about-grid,
  .two-col,
  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  .quote-board,
  .testimonial-slider,
  .testimonial-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .quote-card--feature,
  .testimonial-card:first-child {
    grid-row: auto;
  }

  .quote-card--feature p,
  .testimonial-card:first-child p {
    max-width: none;
  }

  .quote-tag {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .feature-strip,
  .services-grid,
  .industry-grid,
  .projects-grid,
  .stats-row,
  .process-grid,
  .footer-grid,
  .form-grid,
  .benefits-grid,
  .gallery-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-direction: column;
    border-radius: 16px;
  }

  .service-card img {
    width: 100%;
    height: 150px;
  }

  .service-card-body {
    padding: 1.1rem 1.15rem 1.2rem;
  }

  .service-card-body .icon {
    margin: -2.1rem 0 0.75rem;
  }

  .service-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .top-bar-right {
    gap: 0.65rem;
  }

  .brand-text small {
    display: none;
  }

  .about-badge {
    left: 0.75rem;
    bottom: 0.75rem;
    max-width: 150px;
    padding: 0.85rem 1rem;
  }

  .about-badge strong {
    font-size: 1.5rem;
  }

  .media-frame {
    border-radius: 16px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .container {
    width: calc(100% - 1.1rem);
  }

  .btn {
    padding: 0.8rem 1.15rem;
  }

  .hero-brand {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .owner-card {
    align-items: flex-start;
  }
}

@media (hover: none) {
  .service-card:hover,
  .feature-chip:hover,
  .industry-card:hover,
  .project-card:hover img,
  .btn:hover {
    transform: none;
  }
}

.footer-bottom a {
  color: var(--amber);
}

.main-nav a:focus-visible,
.nav-drop-btn:focus-visible,
.btn:focus-visible,
.footer-links a:focus-visible,
.skip-link:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-scan,
  .brand-track {
    animation: none !important;
  }

  .page-loader {
    display: none !important;
  }
}

.owner-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(0, 29, 74, 0.08);
  box-shadow: 0 10px 28px rgba(0, 29, 74, 0.06);
}

.owner-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
  background: #f3f5f8;
}

.owner-card .owner-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.25;
}

.owner-card .owner-title {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-card .owner-card {
  background: var(--paper);
}
