:root {
  --bg: #0b0b0b;
  --bg-soft: #141414;
  --surface: #ffffff;
  --surface-2: #f8f8f8;
  --surface-3: #f3efe2;
  --text: #161616;
  --text-soft: #555555;
  --text-light: #f5f5f5;
  --primary: #caa437;
  --primary-dark: #a8892f;
  --accent: #e6c76b;
  --accent-soft: #f5e6b5;
  --success: #16a34a;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.14);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1220px;
  --transition: 0.28s ease;
  --copy-width: 720px;
  --header-height: 110px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f8f4e8 100%);
}

.narrow {
  max-width: 760px;
}

.max-copy {
  max-width: var(--copy-width);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2.8rem;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.04rem;
  max-width: 690px;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.03em;
}

p {
  max-width: 72ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  cursor: pointer;
  min-height: 48px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #caa437 0%, #e6c76b 100%);
  color: #000000;
  box-shadow:
    0 10px 24px rgba(202, 164, 55, 0.28),
    0 0 0 rgba(230, 199, 107, 0);
}

.btn-primary:hover {
  box-shadow:
    0 16px 36px rgba(202, 164, 55, 0.34),
    0 0 24px rgba(230, 199, 107, 0.24);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-light {
  background: #ffffff;
  color: #000000;
}

.btn-dark {
  background: #000000;
  color: #ffffff;
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 1rem 1.8rem;
  font-size: 1rem;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-height);
}

/* BRAND */

.brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 0;
}

.brand-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.35));
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  min-width: 0;
}

.brand-text strong {
  font-size: 1.18rem;
  line-height: 1.1;
  font-weight: 800;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* NAV */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
}

.nav-link,
.dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover,
.dropdown-toggle.active,
.nav-dropdown.open .dropdown-toggle {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.42rem;
  height: 2px;
  background: linear-gradient(90deg, #caa437, #f0d98f);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after,
.dropdown-toggle:hover::after,
.dropdown-toggle.active::after,
.nav-dropdown.open .dropdown-toggle::after {
  transform: scaleX(1);
}

/* DROPDOWN */

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  gap: 0.55rem;
}

.dropdown-caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--transition);
}

.nav-dropdown.open .dropdown-caret {
  transform: rotate(225deg) translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  min-width: 290px;
  padding: 0.7rem;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(230, 199, 107, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
  z-index: 1300;
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  transform: translateX(2px);
}

/* CTA */

.header-cta {
  justify-self: end;
  white-space: nowrap;
  animation: consultationGlow 2.8s ease-in-out infinite;
}

@keyframes consultationGlow {
  0%,
  100% {
    box-shadow:
      0 10px 24px rgba(202, 164, 55, 0.28),
      0 0 0 rgba(230, 199, 107, 0);
  }
  50% {
    box-shadow:
      0 16px 38px rgba(202, 164, 55, 0.36),
      0 0 26px rgba(230, 199, 107, 0.28);
  }
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 5px auto;
  transition: var(--transition);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(202, 164, 55, 0.24), transparent 30%),
    radial-gradient(circle at left center, rgba(230, 199, 107, 0.15), transparent 30%),
    linear-gradient(180deg, #000000 0%, #141414 100%);
  color: #ffffff;
  padding: 7rem 0 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  font-weight: 900;
}

.hero-copy h1 span {
  color: #f7e7ae;
}

.hero-tagline {
  margin: 1.1rem 0 1rem;
  font-size: 1.34rem;
  font-weight: 800;
  color: #f7e7ae;
  max-width: 24ch;
}

.hero-description {
  margin: 0;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(230, 199, 107, 0.2);
  border-radius: var(--radius-sm);
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
  font-weight: 800;
}

.stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(230, 199, 107, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 620px;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  background: rgba(230, 199, 107, 0.15);
  color: #f8e6a6;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-image-overlay h3 {
  margin: 0 0 1rem;
  font-size: 1.65rem;
  line-height: 1.15;
  font-weight: 900;
  max-width: 16ch;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.hero-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f7e7ae;
  font-weight: 900;
}

/* TRUST STRIP */

.trust-strip {
  background: #0f0f0f;
  border-top: 1px solid rgba(230, 199, 107, 0.12);
  border-bottom: 1px solid rgba(230, 199, 107, 0.12);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
}

.trust-strip-item {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.96rem;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(230, 199, 107, 0.08);
}

/* MEDIA LAYOUTS */

.about-intro {
  background: #ffffff;
}

.about-media-grid,
.cloud-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: stretch;
}
.feature-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.feature-image-wrap {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.feature-image {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

/* GRIDS */

.about-grid,
.who-grid,
.faq-grid,
.steps-grid {
  display: grid;
  gap: 1.4rem;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.18);
}

.form-success[hidden] {
  display: none;
}

.form-success-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.form-success-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-success-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.form-success-text span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.96);
}

.form-status.error {
  margin-top: 12px;
  color: #b91c1c;
  font-weight: 600;
}
.about-grid,
.who-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.category-card,
.info-card,
.feature-item,
.trust-card,
.service-card,
.faq-card,
.step-card,
.contact-card,
.contact-form {
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-card,
.info-card,
.feature-item,
.trust-card,
.service-card,
.faq-card,
.step-card,
.contact-card,
.contact-form {
  padding: 1.5rem;
}

.category-card,
.info-card,
.service-card,
.faq-card,
.step-card {
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.category-card:hover,
.service-card:hover,
.info-card:hover,
.faq-card:hover,
.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(202, 164, 55, 0.35);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.category-card h3,
.info-card h3,
.feature-item h3,
.trust-card h3,
.service-card h3,
.faq-card h3,
.step-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.08rem;
  line-height: 1.32;
  font-weight: 800;
}

.category-card p,
.info-card p,
.feature-item p,
.trust-card p,
.service-card p,
.faq-card p,
.step-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.97rem;
}

.category-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.category-card span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: start;
}

.split-copy p {
  color: var(--text-soft);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.trust-panel {
  display: grid;
  gap: 1rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.85rem;
  color: var(--text-soft);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-dark);
  font-weight: 900;
}

.accent-card {
  background: linear-gradient(180deg, #fff8e6 0%, #f3e3ae 100%);
  border-color: rgba(202, 164, 55, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.services-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.section-cta {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf7 0%, #f5e6b5 100%);
  border: 1px solid rgba(202, 164, 55, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-cta p {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 800;
  max-width: none;
}

.cta-banner {
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #000000 0%, #caa437 100%);
  color: #ffffff;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-copy p {
  max-width: 62ch;
}

.cta-banner h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 900;
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.faq-grid {
  grid-template-columns: repeat(3, 1fr);
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-card {
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #caa437 0%, #e6c76b 100%);
  color: #000000;
  font-weight: 900;
  font-size: 1rem;
}

/* CONTACT */

.contact-section {
  padding: 3.4rem 0;
}

.contact-section .section-heading {
  margin-bottom: 1.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-card,
.contact-form {
  width: 100%;
  min-width: 0;
  padding: 1.2rem;
}

.contact-card h3,
.contact-form h3 {
  margin-top: 0;
}

.contact-block {
  margin-bottom: 0.75rem;
}

.contact-block strong {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 800;
}

.contact-block p {
  margin: 0;
  color: var(--text-soft);
}

.contact-block a {
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-image-wrap {
  width: 100%;
  margin-top: 1rem;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.contact-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.9rem;
}

.form-row label {
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: #fffcf5;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: rgba(202, 164, 55, 0.8);
  box-shadow: 0 0 0 4px rgba(202, 164, 55, 0.14);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.error-message {
  min-height: 1rem;
  color: #dc2626;
  font-size: 0.84rem;
  margin-top: 0.35rem;
}

.form-status {
  margin: 1rem 0 0;
  font-weight: 700;
  min-height: 1.2rem;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: #dc2626;
}

/* FOOTER */

.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  align-items: start;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 1rem;
  font-weight: 800;
  color: #ffffff;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.65rem;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0 2rem;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  max-width: none;
}

@media (max-width: 1040px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .brand-text small {
    display: none;
  }

  .nav-link,
  .dropdown-toggle {
    padding-inline: 0.75rem;
    font-size: 0.9rem;
  }

  .services-grid.four-col,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    gap: 1rem;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 0.5rem);
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 0.9rem;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(230, 199, 107, 0.16);
    border-radius: 20px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 1300;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
  }

  .nav-link::after,
  .dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 0.45rem;
    padding: 0.45rem;
    border-radius: 14px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(230, 199, 107, 0.12);
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: max-height 0.32s ease, margin-top var(--transition);
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 520px;
  }

  .dropdown-item {
    padding: 0.82rem 0.9rem;
  }

  .header-cta {
    justify-self: end;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .hero-grid,
  .split-layout,
  .cta-banner-inner,
  .about-grid,
  .who-grid,
  .about-media-grid,
  .cloud-layout,
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .category-grid,
  .services-grid,
  .services-grid.four-col,
  .feature-list,
  .footer-grid,
  .faq-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-image-wrap {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .section {
    padding: 4.2rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading.center {
    margin-bottom: 2.2rem;
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .section-heading p {
    font-size: 0.98rem;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    min-height: 88px;
  }

  .brand-logo {
    height: 60px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .header-cta {
    padding: 0.82rem 1rem;
    font-size: 0.9rem;
    min-height: 44px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding-top: 5.8rem;
    padding-bottom: 4.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.1rem);
    line-height: 1;
  }

  .hero-tagline {
    font-size: 1.06rem;
    max-width: none;
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats,
  .category-grid,
  .services-grid,
  .services-grid.four-col,
  .feature-list,
  .footer-grid,
  .faq-grid,
  .steps-grid,
  .about-grid,
  .who-grid,
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    min-height: 520px;
  }

  .hero-image {
    min-height: 520px;
  }

  .hero-image-overlay {
    padding: 1.45rem;
  }

  .hero-image-overlay h3 {
    font-size: 1.35rem;
  }

  .category-card,
  .info-card,
  .feature-item,
  .trust-card,
  .service-card,
  .faq-card,
  .step-card,
  .contact-card,
  .contact-form {
    padding: 1.25rem;
  }

  .section-cta,
  .cta-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .section-cta .btn,
  .cta-banner-inner .btn {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-image-wrap {
    min-height: 280px;
  }

  .form-row input,
  .form-row textarea,
  .form-row select {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 0.7rem;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    justify-self: end;
  }

  .site-nav {
    top: calc(var(--header-height) - 0.1rem);
    left: 0.5rem;
    right: 0.5rem;
  }

  .brand-logo {
    height: 54px;
  }

  .hero-copy h1 {
    font-size: 2.15rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
  }

  .service-card:hover,
  .category-card:hover {
    transform: translateY(-4px);
    transition: 0.25s ease;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  .hero-image-overlay {
    display: none;
  }

  .btn {
    padding: 0.9rem 1.15rem;
  }
}