:root {
  --navy: #0b1c33;
  --navy-deep: #071422;
  --navy-soft: #1a2a44;
  --gold: #c19a3b;
  --gold-light: #d4b45a;
  --gold-muted: rgba(193, 154, 59, 0.35);
  --cream: #f7f5f1;
  --white: #ffffff;
  --text: #1c2430;
  --muted: #667384;
  --line: rgba(11, 28, 51, 0.1);
  --radius-nav: 50px;
  --radius-btn: 24px;
  --radius-box: 14px;
  --shadow: 0 18px 50px rgba(7, 20, 34, 0.12);
  --inner-width: min(1180px, calc(100% - 2.5rem));
  --font-display: "Cinzel", serif;
  --font-body: "Outfit", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container,
.hero__inner {
  width: var(--inner-width);
  margin-inline: auto;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.6rem 1.28rem;
  border-radius: var(--radius-btn);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
  white-space: nowrap;
}

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

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

.btn--light:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn--gold:hover {
  background: var(--gold-light);
}

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

.btn--navy:hover {
  background: var(--navy-soft);
}

.btn--sm {
  min-height: 34px;
  padding: 0.45rem 1rem;
  font-size: 0.62rem;
  gap: 0.4rem;
}

.btn--whatsapp {
  width: 100%;
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  margin-top: 1rem;
}

.btn--whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
}

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

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

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11, 28, 51, 0.25);
}

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

/* —— Header (Lawyer Justice style) —— */
.site-header {
  position: relative;
  z-index: 100;
  background: transparent;
}

.top-bar {
  padding: 1.1rem 0 0.85rem;
  background: var(--white);
}

.top-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.top-bar__col--left {
  text-align: left;
}

.top-bar__col--center {
  display: flex;
  justify-content: center;
}

.top-bar__col--right {
  text-align: right;
}

.top-bar__meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.top-bar__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 100%;
}

.top-bar__contact--end {
  justify-content: flex-end;
}

.top-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #000;
  color: var(--white);
  flex-shrink: 0;
}

.top-bar__accent {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.top-bar__accent--email {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-logo img {
  height: 48px;
  width: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
}

.nav-wrap {
  margin-top: 1rem;
  margin-bottom: -50px; /* only half nav sits on hero */
  position: relative;
  z-index: 20;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  background: var(--navy);
  border: 2px solid #fff;
  border-radius: var(--radius-nav);
  padding: 0.7rem 0.7rem 0.7rem 1.8rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.main-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem 1.6rem;
}

.main-nav__list > .nav-item {
  position: relative;
}

.main-nav__list > .nav-item > .nav-link,
.main-nav__list > li > a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.main-nav__list > .nav-item > .nav-link::after,
.main-nav__list > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}

.main-nav__list > .nav-item > .nav-link:hover,
.main-nav__list > .nav-item.is-active > .nav-link,
.main-nav__list > .nav-item > .nav-link[aria-current="page"],
.main-nav__list > li > a:hover,
.main-nav__list > li > a[aria-current="page"] {
  color: var(--gold-light);
}

.main-nav__list > .nav-item > .nav-link:hover::after,
.main-nav__list > .nav-item.is-active > .nav-link::after,
.main-nav__list > .nav-item > .nav-link[aria-current="page"]::after,
.main-nav__list > li > a:hover::after,
.main-nav__list > li > a[aria-current="page"]::after {
  width: 100%;
}

.nav-caret {
  transition: transform 0.2s;
}

.nav-item--has-dropdown.is-open > .nav-link .nav-caret,
.nav-item--has-dropdown:hover > .nav-link .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: 260px;
  max-width: min(320px, 90vw);
  background: var(--white);
  border: 1px solid rgba(11, 28, 51, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(7, 20, 34, 0.18);
  padding: 0.55rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 40;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-item--has-dropdown:hover > .nav-dropdown,
.nav-item--has-dropdown.is-open > .nav-dropdown,
.nav-item--has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  color: var(--navy) !important;
  font-size: 0.86rem !important;
  font-weight: 500;
  padding: 0.7rem 0.85rem !important;
  border-radius: 10px;
  line-height: 1.35;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown a::after {
  display: none !important;
}

.nav-dropdown a:hover {
  background: rgba(193, 154, 59, 0.12);
  color: var(--navy-deep) !important;
}

.nav-dropdown li:first-child a {
  color: var(--gold) !important;
  font-weight: 600;
  border-bottom: 1px solid rgba(11, 28, 51, 0.08);
  border-radius: 10px 10px 0 0;
  margin-bottom: 0.2rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: block;
  padding: 7rem 0 5rem;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.62) 45%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__content {
  width: 100%;
  max-width: 720px;
  text-align: left;
  animation: rise 0.9s ease both;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 60px;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}

.hero__text {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  margin-bottom: 2rem;
}

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

/* —— Sections —— */
.section {
  padding: 6rem 0;
}

.section--soft {
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(193, 154, 59, 0.06), transparent 55%),
    var(--cream);
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-title--light {
  color: var(--white);
}

.section-lead {
  color: var(--muted);
  max-width: 36rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head .section-lead {
  margin-inline: auto;
}

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

.about__copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about__copy .btn {
  margin-top: 1rem;
}

.about__cards {
  display: grid;
  gap: 1rem;
}

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

.info-box {
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-box);
  padding: 1.35rem 1.4rem;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 28, 51, 0.04);
  transition: border-color 0.25s, transform 0.25s;
}

.info-box:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.info-box h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.info-box p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* About showcase (Balanza-inspired layout, Mirwan theme) */
.page-hero--image {
  position: relative;
  background:
    linear-gradient(120deg, rgba(7, 20, 34, 0.82), rgba(11, 28, 51, 0.72)),
    var(--page-hero-image) center / cover no-repeat;
  text-align: center;
  padding: 7.5rem 0 4.25rem;
  overflow: hidden;
}

.page-hero--image .page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero--image h1 {
  margin-bottom: 0.55rem;
}

.page-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.page-hero__crumb a:hover {
  color: var(--gold-light);
}

.about-showcase {
  background: var(--cream);
}

.about-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-showcase__media {
  position: relative;
  width: 100%;
  max-width: 540px;
  padding-bottom: 1.5rem;
}

.about-showcase__frame {
  overflow: hidden;
  background: #d9dee7;
  box-shadow: var(--shadow);
}

.about-showcase__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-showcase__frame--main {
  position: relative;
  width: 88%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  z-index: 1;
}

.about-showcase__frame--inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 3 / 4;
  border-radius: 140px 140px 22px 22px;
  border: 7px solid var(--cream);
  z-index: 2;
  box-shadow: 0 18px 40px rgba(7, 20, 34, 0.18);
}

.about-showcase__badge {
  position: absolute;
  top: 1.25rem;
  right: 0.15rem;
  z-index: 3;
  width: 150px;
  min-height: 92px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.85rem 0.7rem;
  box-shadow: 0 16px 36px rgba(7, 20, 34, 0.28);
  border: 1px solid rgba(193, 154, 59, 0.28);
  overflow: hidden;
}

.about-showcase__badge-num {
  position: absolute;
  left: 0.15rem;
  top: 50%;
  transform: translateY(-52%);
  z-index: 0;
  font-family: var(--font-body);
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.about-showcase__badge-text {
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: #fff;
}

.about-showcase__copy .section-title {
  margin-bottom: 0.55rem;
}

.about-showcase__sub {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy-soft);
  margin-bottom: 1.15rem !important;
}

.about-showcase__copy > p {
  color: var(--muted);
  margin-bottom: 0.95rem;
}

.about-showcase__features {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.15rem;
}

.about-showcase__features ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1rem;
}

.about-showcase__features li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
}

.about-showcase__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.about-showcase__copy .btn {
  margin-top: 0.55rem;
}

/* —— Foundation: Vision / Mission / Values (Bizcorpo-inspired, no video) —— */
.foundation {
  background: var(--white);
}

.foundation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  align-items: stretch;
}

.foundation-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.55rem 1.4rem;
  box-shadow: 0 10px 28px rgba(11, 28, 51, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.foundation-card:hover {
  transform: translateY(-3px);
  border-color: rgba(193, 154, 59, 0.45);
  box-shadow: var(--shadow);
}

.foundation-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold-light);
  display: inline-grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.foundation-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.foundation-card p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 28rem;
}

.foundation-media {
  border-radius: 22px;
  overflow: hidden;
  min-height: 180px;
  max-height: 210px;
  background: var(--cream);
  box-shadow: 0 10px 28px rgba(11, 28, 51, 0.06);
}

.foundation-media img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  max-height: 210px;
  object-fit: cover;
  display: block;
}

.foundation-media--values img {
  object-position: center;
}

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

  .foundation-card,
  .foundation-media,
  .foundation-media img {
    min-height: 170px;
    max-height: 200px;
  }
}


/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(11, 28, 51, 0.08);
  border-radius: var(--radius-box);
  overflow: hidden;
  border-top: 3px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

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

.service-card__media {
  height: 180px;
  overflow: hidden;
  background: var(--navy-soft);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__btn {
  margin-top: auto;
  align-self: flex-start;
}

.service-card__link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card__link:hover {
  color: var(--navy);
}
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
  line-height: 1.35;
}

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

/* Vision panel */
.vision {
  padding-top: 0;
}

.vision__panel {
  background:
    linear-gradient(120deg, rgba(7, 20, 34, 0.92), rgba(11, 28, 51, 0.88)),
    url("../images/hero-bg.png") center / cover;
  border-radius: 24px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  box-shadow: var(--shadow);
}

.vision__content {
  max-width: 34rem;
}

.vision__content p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.5rem;
}

/* CTA */
.cta {
  padding-top: 0;
  padding-bottom: 5rem;
}

.cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--gold-muted);
  border-radius: 20px;
  padding: 2rem 2.2rem;
  background: linear-gradient(180deg, #fffefb, var(--cream));
}

.cta__box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.cta__box p {
  color: var(--muted);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

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

.site-footer__inner,
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1.1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.site-footer__brand .footer-logo-wrap {
  display: inline-block;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
  margin-bottom: 0.85rem;
}

.footer-logo {
  height: 48px;
  width: auto;
}

.site-footer__brand p {
  max-width: 22rem;
  font-size: 0.95rem;
}

.site-footer h3 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.site-footer__contact a:hover {
  color: var(--gold-light);
}

.site-footer__contact p + p {
  margin-top: 0.35rem;
}

.developed {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.55rem;
}

.webigency-logo {
  height: 28px;
  width: auto;
}

.webigency-logo--white {
  filter: brightness(0) invert(1);
}

.site-footer__links ul {
  display: grid;
  gap: 0.4rem;
}

.site-footer__links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: var(--gold-light);
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__dev {
  text-align: right;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .about__grid,
  .services__grid,
  .site-footer__inner,
  .site-footer__grid,
  .about-showcase__grid,
  .about__cards--row {
    grid-template-columns: 1fr 1fr;
  }

  .about-showcase__media {
    max-width: 480px;
    margin-inline: auto;
  }

  .about-showcase__frame--main {
    width: 90%;
  }

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

  .cta__box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .top-bar__inner {
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo toggle";
  }

  .top-bar__col--center { grid-area: logo; justify-content: flex-start; }
  .top-bar__contacts { display: none !important; }
  .nav-toggle { grid-area: toggle; display: grid; }

  .brand-logo img {
    height: 48px;
  }

  .nav-wrap {
    margin-bottom: -50px;
    padding-inline: 0;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 1.1rem;
    margin: 0 0 1rem;
    background: var(--navy);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    width: 100%;
  }

  .main-nav__list > .nav-item {
    width: 100%;
  }

  .main-nav__list > .nav-item > .nav-link,
  .main-nav__list > li > a {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    max-width: none;
    width: 100%;
    margin-top: 0.35rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-item--has-dropdown.is-open > .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    color: rgba(255, 255, 255, 0.88) !important;
  }

  .nav-dropdown a:hover {
    background: rgba(193, 154, 59, 0.18);
    color: var(--gold-light) !important;
  }

  .nav-dropdown li:first-child a {
    color: var(--gold-light) !important;
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .main-nav .btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero {
    min-height: 78vh;
    padding-top: 5.5rem;
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 60px);
  }

  .about__grid,
  .services__grid,
  .site-footer__inner,
  .site-footer__grid,
  .about-showcase__grid,
  .about__cards--row,
  .about-showcase__features ul {
    grid-template-columns: 1fr;
  }

  .about-showcase__media {
    max-width: 100%;
    margin-bottom: 0.5rem;
  }

  .about-showcase__frame--main {
    width: 92%;
  }

  .about-showcase__badge {
    width: 132px;
    min-height: 84px;
  }

  .about-showcase__badge-num {
    font-size: 3rem;
  }

  .about-showcase__badge-text {
    font-size: 0.82rem;
  }

  .site-footer__bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__dev {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .container,
  .hero__inner {
    width: min(100% - 1.5rem, 1180px);
  }

  .hero__actions,
  .cta__actions {
    width: 100%;
  }

  .hero__actions .btn,
  .cta__actions .btn {
    width: 100%;
  }
}

/* —— Contact Modal —— */
body.modal-open {
  overflow: hidden;
}

.contact-modal[hidden] {
  display: none !important;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 34, 0.62);
  backdrop-filter: blur(3px);
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(193, 154, 59, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  padding: 1.6rem 1.75rem 1.5rem;
  max-height: calc(100vh - 2.5rem);
  overflow: hidden;
}

.contact-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s;
}

.contact-modal__close:hover {
  background: var(--navy);
  color: var(--white);
}

.contact-modal__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-modal__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.contact-modal__info h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.4rem;
  padding-right: 2rem;
}

.contact-modal__lead {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

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

.contact-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(11, 28, 51, 0.1);
  border-radius: 12px;
  background: var(--cream);
  transition: border-color 0.2s, transform 0.2s;
}

.contact-box:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.contact-box__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #000;
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-box__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.contact-box__text strong {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.contact-box__text span {
  font-size: 0.92rem;
  color: var(--gold);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-modal__form .form-row {
  margin-bottom: 0.75rem;
}

.contact-modal__form .form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-modal__form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.contact-modal__form input,
.contact-modal__form textarea {
  width: 100%;
  border: 1px solid rgba(11, 28, 51, 0.14);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}

.contact-modal__form input:focus,
.contact-modal__form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193, 154, 59, 0.18);
}

.contact-modal__form textarea {
  min-height: 78px;
}

.contact-modal__submit {
  width: 100%;
  margin-top: 0.15rem;
  cursor: pointer;
}

button.btn {
  font: inherit;
  cursor: pointer;
}

@media (max-width: 760px) {
  .contact-modal__dialog {
    width: min(520px, 100%);
    padding: 1.25rem 1.15rem 1.15rem;
  }

  .contact-modal__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-modal__form .form-row--2 {
    grid-template-columns: 1fr;
  }

  .contact-modal__info h2 {
    font-size: 1.35rem;
  }
}

/* —— Hero Slider —— */
.hero-slider {
  position: relative;
  min-height: min(88vh, 820px);
  color: var(--white);
  overflow: hidden;
}

.hero-slider__slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide.is-active .hero-slide__bg {
  animation: heroZoom 7s ease-out both;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.58) 48%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.hero-slide-content {
  display: none;
  width: 100%;
  max-width: 760px;
  text-align: left;
  animation: rise 0.75s ease both;
}

.hero-slide-content.is-active {
  display: block;
}

.hero-slide-content .hero__title span {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.hero-slide-content .hero__title {
  font-size: clamp(2.35rem, 5.2vw, 3.85rem);
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-slide-content .hero__text {
  font-size: 1.08rem;
  line-height: 1.65;
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.hero-slider__inner {
  position: relative;
  z-index: 2;
  width: var(--inner-width);
  margin-inline: auto;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
}

.hero-slider__controls {
  position: absolute;
  z-index: 3;
  inset: auto 0 1.75rem 0;
  width: var(--inner-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.hero-slider__arrows,
.hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  pointer-events: auto;
}

.hero-slider__btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(7, 20, 34, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.hero-slider__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-slider__dot.is-active {
  background: var(--gold);
}

/* —— Page hero —— */
.page-hero {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-soft));
  color: var(--white);
  padding: 6.5rem 0 3.25rem;
  margin-top: -50px;
}

.page-hero__inner {
  width: var(--inner-width);
  margin-inline: auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.page-hero p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero--center .page-hero__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero--center .page-hero__name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
  max-width: none;
}

.page-hero--center h1 {
  margin-bottom: 0.85rem;
  max-width: none;
  width: 100%;
  white-space: nowrap;
  font-size: clamp(1.45rem, 3.2vw, 2.75rem);
}

.page-hero--center .page-hero__desc {
  margin-inline: auto;
  max-width: none;
  width: 100%;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.88rem, 1.35vw, 1.05rem);
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .page-hero--center h1,
  .page-hero--center .page-hero__desc {
    white-space: normal;
    max-width: 40rem;
  }
}

/* —— CEO —— */
.ceo {
  background: var(--white);
}

.ceo__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.ceo__photo {
  border-radius: var(--radius-box);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--cream);
  aspect-ratio: 4 / 5;
  max-width: 420px;
}

.ceo__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ceo__copy .section-title {
  margin-bottom: 1rem;
}

.ceo__copy p {
  color: var(--muted);
  margin-bottom: 0.95rem;
}

.ceo__sign {
  margin-top: 1.25rem;
  color: var(--navy);
}

.ceo__sign strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-top: 0.35rem;
}

.services-detail__item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.services-detail__item:first-child {
  padding-top: 0;
}

.services-detail__media {
  border-radius: var(--radius-box);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--cream);
}

.services-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-detail__body h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.services-detail__body p {
  color: var(--muted);
}

/* —— Contact page —— */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-card,
.contact-side-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-box);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-form-card .form-row,
.admin-form .form-row,
.service-widget--form .form-row {
  margin-bottom: 0.9rem;
}

.contact-form-card label,
.admin-form label,
.service-widget--form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select,
.admin-form input,
.admin-form textarea,
.admin-form select,
.service-widget--form input,
.service-widget--form textarea,
.service-widget--form select {
  width: 100%;
  border: 1px solid rgba(11, 28, 51, 0.14);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.admin-form input:focus,
.admin-form textarea:focus,
.service-widget--form input:focus,
.service-widget--form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193, 154, 59, 0.18);
}

.contact-form-card textarea,
.admin-form textarea,
.service-widget--form textarea {
  resize: vertical;
  min-height: 110px;
}

.service-widget--form input[readonly] {
  background: #f7f8fa;
  color: var(--muted);
  cursor: default;
}

.service-widget--form .form-status {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.88rem;
}

.service-widget--form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.contact-side-stack {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.map-embed {
  border: 0;
  border-radius: 12px;
  width: 100%;
  min-height: 220px;
  background: var(--cream);
}

.form-status {
  font-size: 0.9rem;
  margin: 0.4rem 0 0.75rem;
}

.form-status.is-success { color: #1b6b3a; }
.form-status.is-error { color: #9b1c1c; }

.toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1100;
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: min(360px, calc(100vw - 2rem));
  animation: rise 0.35s ease both;
}

.toast--success { border-left: 4px solid var(--gold); }
.toast--error { border-left: 4px solid #d96b6b; }

/* —— Blog —— */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.blog-grid {
  display: grid;
  gap: 1.25rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-box);
  overflow: hidden;
  background: var(--white);
}

.blog-card__media {
  min-height: 160px;
  background: var(--cream);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.1rem 1.1rem 1.1rem 0;
}

.blog-card__meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

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

.blog-sidebar {
  display: grid;
  gap: 1rem;
}

.sidebar-widget {
  border: 1px solid var(--line);
  border-radius: var(--radius-box);
  padding: 1.1rem;
  background: var(--cream);
}

.sidebar-widget h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.sidebar-widget ul {
  display: grid;
  gap: 0.45rem;
}

.sidebar-widget a:hover {
  color: var(--gold);
}

.sidebar-widget input {
  width: 100%;
  border: 1px solid rgba(11, 28, 51, 0.14);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
}

.post-article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-box);
  overflow: hidden;
}

.post-article__hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.post-article__body {
  padding: 1.5rem;
}

.post-article__body h1 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0.4rem 0 0.8rem;
}

.post-content {
  color: var(--text);
  line-height: 1.75;
}

.post-content p {
  margin-bottom: 1rem;
}

.related-posts {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.pagination {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0 0.75rem;
  font-size: 0.9rem;
}

.pagination .is-current {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.empty-state {
  padding: 2rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-box);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 980px) {
  .ceo__grid,
  .contact-layout,
  .blog-layout,
  .services-detail__item,
  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card__body {
    padding: 0 1.1rem 1.1rem;
  }

  .hero-slider,
  .hero-slider__inner {
    min-height: 78vh;
  }
}

@media (max-width: 520px) {
  .hero-slider__inner {
    width: min(100% - 1.5rem, 1180px);
  }
}

/* —— Testimonials + Feature CTA —— */
.testimonials {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  color: var(--white);
  padding: 4.5rem 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.testimonials__intro .section-title {
  margin-bottom: 1.5rem;
}

.testimonials__proof {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonials__proof p {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  max-width: 10rem;
  line-height: 1.35;
}

.testimonials__avatars {
  display: flex;
  align-items: center;
}

.testimonials__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: inline-grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  border: 2px solid var(--navy-deep);
  margin-left: -10px;
  overflow: hidden;
}

.testimonials__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__avatars .testimonials__avatar:first-child {
  margin-left: 0;
}

.testimonials__avatar--lg {
  width: 52px;
  height: 52px;
  margin-left: 0;
  border-color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.testimonials__slider {
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 2rem;
  min-height: 240px;
}

.testimonials__quote-icon {
  position: absolute;
  top: -0.4rem;
  right: 0;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(193, 154, 59, 0.35);
  pointer-events: none;
}

.testimonials__slide {
  display: none;
  animation: rise 0.55s ease both;
}

.testimonials__slide.is-active {
  display: block;
}

.testimonials__slide blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.95);
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonials__author strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
}

.testimonials__author em {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.15rem;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.testimonials__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.testimonials__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.testimonials__dots {
  display: flex;
  gap: 0.4rem;
}

.testimonials__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.testimonials__dot.is-active {
  background: var(--gold);
}

.feature-cta {
  padding: 0 0 4.5rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.feature-cta__panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  padding: 2rem;
}

.feature-cta__video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.feature-cta__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.78%;
  transform: translate(-50%, -50%);
  border: 0;
}

.feature-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(7, 20, 34, 0.88) 0%,
    rgba(7, 20, 34, 0.55) 48%,
    rgba(7, 20, 34, 0.28) 100%
  );
  z-index: 1;
}

.feature-cta__play {
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
  z-index: 2;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.feature-cta__play-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(193, 154, 59, 0.55);
  animation: videoPulse 1.6s ease-out infinite;
}

.feature-cta__play-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding-left: 3px;
}

@keyframes videoPulse {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.35); opacity: 0; }
}

.feature-cta__card {
  position: relative;
  z-index: 2;
  width: min(460px, 100%);
  background: rgba(11, 28, 51, 0.78);
  border: 1px solid rgba(193, 154, 59, 0.28);
  border-radius: 22px;
  padding: 1.6rem 1.5rem;
  color: #fff;
  backdrop-filter: blur(4px);
}

.video-modal[hidden] {
  display: none !important;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 34, 0.78);
  backdrop-filter: blur(3px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.video-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.video-modal__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.feature-cta__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.feature-cta__card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.feature-cta__card > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.feature-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.feature-cta__btn {
  gap: 0.65rem;
  padding-right: 0.45rem;
}

.feature-cta__btn-icon {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-grid;
  place-items: center;
}

.feature-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
}

.feature-cta__phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  color: var(--gold-light);
}

.feature-cta__phone strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-cta__phone em {
  display: block;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 0.1rem;
}

@media (max-width: 980px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials__slider {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 0;
    padding-top: 1.5rem;
  }

  .feature-cta {
    margin-top: 0;
    padding-top: 2rem;
  }

  .feature-cta__play {
    right: 1.25rem;
    top: 1.5rem;
    transform: none;
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 620px) {
  .feature-cta__panel {
    padding: 1.1rem;
    min-height: 320px;
  }

  .feature-cta__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— Why Choose Us —— */
.why-choose {
  background: var(--white);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.why-card {
  background: var(--cream);
  border: 1px solid rgba(11, 28, 51, 0.07);
  border-radius: var(--radius-box);
  padding: 1.6rem 1.35rem 1.7rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(193, 154, 59, 0.35);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

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

/* —— Testimonials stars —— */
.testimonials__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.28);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

.testimonials .section-title--light {
  color: var(--white);
}

.testimonials .section-label--light {
  color: var(--gold-light);
}

/* —— Team —— */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.team-card {
  background: var(--white);
  border: 1px solid rgba(11, 28, 51, 0.08);
  border-radius: var(--radius-box);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.team-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--navy-soft);
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card__body {
  padding: 1.2rem 1.2rem 1.35rem;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
}

.team-card__role {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0.3rem 0 0.65rem;
}

.team-card__bio {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.team-card__social {
  display: flex;
  gap: 0.5rem;
}

.team-card__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.team-card__social a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

/* —— Service detail (Accbooks-style) —— */
.service-detail__layout {
  display: grid;
  grid-template-columns: 1.7fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.service-detail__side {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 1.15rem;
}

.service-detail__hero-img {
  border-radius: var(--radius-box);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  background: var(--cream);
}

.service-detail__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__title {
  margin-bottom: 0.85rem;
}

.service-detail__lead {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.service-detail__main > p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.service-detail__block {
  margin-top: 2rem;
}

.service-detail__block h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-detail__list {
  display: grid;
  gap: 0.7rem;
}

.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--muted);
}

.service-detail__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(193, 154, 59, 0.15);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.service-detail__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
}

.service-feature__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.service-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.service-detail__related {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.service-related {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-related:hover {
  border-color: rgba(193, 154, 59, 0.45);
  box-shadow: 0 8px 24px rgba(7, 20, 34, 0.08);
}

.service-related img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.service-related span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.service-widget {
  border-radius: var(--radius-box);
  padding: 1.35rem 1.25rem 1.45rem;
  border: 1px solid rgba(11, 28, 51, 0.08);
}

.service-widget--form {
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-widget--form .section-label {
  margin-bottom: 0.45rem;
}

.service-widget--form h3,
.service-widget--contact h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.25rem;
  margin: 0.35rem 0 1rem;
}

.service-widget--contact {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-soft));
  color: var(--white);
}

.service-widget--contact h3 {
  color: var(--white);
}

.service-contact-list {
  display: grid;
  gap: 0.95rem;
}

.service-contact-list li {
  display: grid;
  gap: 0.2rem;
}

.service-contact-list strong {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-contact-list a,
.service-contact-list span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
}

.service-contact-list a:hover {
  color: var(--gold-light);
}

/* —— CTA Banner —— */
.cta-banner {
  background: var(--cream);
}

.cta-banner__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.4rem 2.2rem;
  border-radius: calc(var(--radius-box) + 4px);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(193, 154, 59, 0.22), transparent 55%),
    linear-gradient(120deg, var(--navy-deep), var(--navy-soft));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-banner__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin: 0.35rem 0 0.7rem;
}

.cta-banner__copy p:last-child {
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .why-choose__grid,
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .service-detail__layout {
    grid-template-columns: 1fr;
  }

  .service-detail__side {
    position: static;
  }

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

@media (max-width: 700px) {
  .services__grid,
  .why-choose__grid,
  .team__grid,
  .service-detail__features,
  .service-detail__related {
    grid-template-columns: 1fr;
  }

  .ceo__photo {
    max-width: none;
  }
}

/* —— Services: Client Stories —— */
.client-stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.story-card {
  background: var(--white);
  border: 1px solid rgba(11, 28, 51, 0.08);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-box);
  padding: 1.55rem 1.35rem 1.45rem;
  box-shadow: 0 8px 24px rgba(7, 20, 34, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.story-card__stars {
  display: flex;
  gap: 0.15rem;
  color: rgba(11, 28, 51, 0.18);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.story-card__star.is-on {
  color: var(--gold);
}

.story-card blockquote {
  flex: 1;
}

.story-card blockquote p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.story-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.story-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(193, 154, 59, 0.35);
}

.story-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card__author strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.story-card__author em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.12rem;
}

.story-card__company {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 0.15rem;
}

/* —— Services: Ratings Summary —— */
.ratings-summary {
  padding-top: 0;
}

.ratings-summary__panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.5rem;
  padding: 2.2rem;
  border-radius: calc(var(--radius-box) + 4px);
  background:
    radial-gradient(ellipse 55% 70% at 0% 0%, rgba(193, 154, 59, 0.18), transparent 55%),
    linear-gradient(145deg, var(--navy-deep), var(--navy-soft));
  color: var(--white);
  box-shadow: var(--shadow);
}

.ratings-summary__stats h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  margin: 0.35rem 0 1.1rem;
}

.ratings-summary__score {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}

.ratings-summary__score-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--gold);
}

.ratings-summary__score-den {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
}

.ratings-summary__stars {
  display: flex;
  gap: 0.2rem;
  color: rgba(255, 255, 255, 0.25);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.ratings-summary__stars .is-on,
.review-snippet__stars .is-on {
  color: var(--gold);
}

.ratings-summary__note {
  color: rgba(255, 255, 255, 0.72);
  max-width: 28rem;
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}

.ratings-summary__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.rating-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.95rem 0.8rem;
  text-align: center;
}

.rating-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.rating-badge span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.ratings-summary__feed h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.ratings-summary__snippets {
  display: grid;
  gap: 0.85rem;
}

.review-snippet {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1rem 1.05rem;
  transition: background 0.2s, border-color 0.2s;
}

.review-snippet:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(193, 154, 59, 0.35);
}

.review-snippet__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.review-snippet__tag {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(193, 154, 59, 0.18);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-snippet__stars {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.review-snippet p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 0.55rem;
}

.review-snippet strong {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 980px) {
  .client-stories__grid,
  .ratings-summary__panel {
    grid-template-columns: 1fr;
  }

  .ratings-summary__badges {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .ratings-summary__panel {
    padding: 1.4rem;
  }

  .ratings-summary__badges {
    grid-template-columns: 1fr;
  }

  .ratings-summary__score-num {
    font-size: 2.6rem;
  }
}


