:root {
  --color-navy: #071b34;
  --color-navy-2: #0b2e55;
  --color-orange: #ff9d00;
  --color-orange-2: #ff4b12;
  --color-ink: #0d1b2f;
  --color-text: #425066;
  --color-muted: #f4f7fb;
  --color-surface: #ffffff;
  --color-dark: #06172c;
  --color-border: #dbe3ee;
  --shadow-soft: 0 22px 60px rgba(7, 27, 52, 0.12);
  --shadow-brand: 0 24px 60px rgba(255, 100, 16, 0.24);
  --radius-card: 8px;
  --radius-pill: 999px;
  --container: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.6;
}

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

button {
  font: inherit;
}

.content-wrap {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 227, 238, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--container), calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
}

.brand-logo {
  width: 58px;
  height: 58px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 32px rgba(7, 27, 52, 0.16);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.08rem;
  font-weight: 900;
}

.brand small {
  color: var(--color-orange-2);
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--color-ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-menu a {
  padding: 8px 0;
}

.nav-menu a:hover {
  color: var(--color-orange-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-ink);
}

.section-band {
  padding: 96px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  background:
    linear-gradient(115deg, rgba(7, 27, 52, 0.98), rgba(9, 38, 72, 0.94) 54%, rgba(255, 116, 7, 0.16)),
    linear-gradient(180deg, #071b34, #0b2e55);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% 42%;
  height: 78%;
  background: radial-gradient(circle, rgba(255, 157, 0, 0.32), rgba(255, 75, 18, 0.14) 36%, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-orange-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-ink);
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  color: var(--color-surface);
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  font-weight: 900;
}

h3 {
  font-size: 1.12rem;
}

.hero-text {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 900;
}

.btn.primary {
  color: var(--color-surface);
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-2));
  box-shadow: var(--shadow-brand);
}

.btn.secondary {
  color: var(--color-surface);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.expertise-list span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  color: var(--color-surface);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-panel {
  min-height: 460px;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero-logo {
  width: min(420px, 100%);
  aspect-ratio: 1;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.panel-copy {
  display: grid;
  gap: 8px;
  text-align: center;
}

.panel-copy strong {
  color: var(--color-surface);
  font-size: 1.32rem;
  font-weight: 900;
}

.panel-copy span {
  color: rgba(255, 255, 255, 0.74);
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 46px;
  align-items: start;
  padding: 76px 0;
}

.about-copy {
  display: grid;
  gap: 14px;
}

.about-copy p,
.intro-strip p:last-child,
.section-heading p {
  margin: 0;
  font-size: 1.05rem;
}

.muted {
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.96), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, rgba(255, 157, 0, 0.16), rgba(7, 27, 52, 0.08));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading p {
  margin-top: 16px;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: 0 14px 36px rgba(7, 27, 52, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 117, 7, 0.48);
  box-shadow: 0 18px 42px rgba(7, 27, 52, 0.12);
}

.service-card p {
  margin: 14px 0 0;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--color-surface);
  background: linear-gradient(135deg, var(--color-navy), var(--color-orange-2));
  font-weight: 900;
}

.expertise-section {
  padding: 92px 0;
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.expertise-list span {
  color: var(--color-ink);
  border-color: var(--color-border);
  background: var(--color-surface);
  box-shadow: 0 12px 28px rgba(7, 27, 52, 0.06);
}

.dark {
  background:
    linear-gradient(135deg, rgba(7, 27, 52, 0.98), rgba(6, 23, 44, 0.96)),
    var(--color-dark);
}

.light-text h2,
.light-text .eyebrow {
  color: var(--color-surface);
}

.light-text p {
  color: rgba(255, 255, 255, 0.72);
}

.process-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 46px;
  align-items: center;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.06);
}

.timeline-item span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--color-surface);
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-2));
  font-weight: 900;
}

.timeline-item h3 {
  color: var(--color-surface);
}

.timeline-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 48px;
  align-items: center;
  padding: 96px 0;
}

.contact-copy p:last-of-type {
  max-width: 640px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-row a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-ink);
  background: var(--color-surface);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7, 27, 52, 0.06);
}

.social-row a:hover {
  color: var(--color-surface);
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-navy), var(--color-orange-2));
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.contact-card a:not(.whatsapp) {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 8px;
  background: var(--color-muted);
}

.contact-card span {
  color: var(--color-orange-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--color-ink);
  font-size: 1.02rem;
}

.whatsapp {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  color: var(--color-surface);
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-2));
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.footer-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-wrap p {
  margin: 0;
}

.to-top {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 10px 24px rgba(7, 27, 52, 0.08);
}

.to-top span {
  width: 12px;
  height: 12px;
  display: block;
  border-top: 3px solid var(--color-orange-2);
  border-left: 3px solid var(--color-orange-2);
  transform: translateY(3px) rotate(45deg);
}

.to-top:hover {
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-navy), var(--color-orange-2));
}

.to-top:hover span {
  border-color: var(--color-surface);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: var(--header-height);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
  }

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

  .nav-menu a {
    padding: 12px;
  }

  .hero-grid,
  .intro-strip,
  .process-wrap,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .content-wrap,
  .nav-shell {
    width: min(100% - 28px, var(--container));
  }

  .section-band,
  .expertise-section,
  .contact-section {
    padding: 64px 0;
  }

  .hero {
    padding: 58px 0 60px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .service-card {
    min-height: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 18px;
  }

  .footer-wrap {
    align-items: center;
    padding: 22px 0;
  }
}
