:root {
  --navy: #082b5f;
  --navy-2: #0d3a78;
  --gold: #d9961f;
  --gold-2: #f2b544;
  --ink: #172033;
  --muted: #637083;
  --line: #dfe5ee;
  --soft: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 43, 95, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

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

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

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 76px;
  height: 58px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
}

.brand-domain {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
}

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

.primary-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(8, 43, 95, 0.14);
}

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

.btn-primary:hover,
.btn-primary:focus {
  background: var(--gold-2);
}

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

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

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

.hero {
  background:
    linear-gradient(105deg, rgba(8, 43, 95, 0.95), rgba(8, 43, 95, 0.82)),
    linear-gradient(135deg, #eef2f7 0%, #ffffff 100%);
  color: var(--white);
  padding: 78px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  color: var(--gold-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

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

.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  max-width: 780px;
}

.hero p {
  color: #e8eef7;
  font-size: 1.12rem;
  max-width: 760px;
  margin: 22px 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.hero-image-panel {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-image-panel img {
  width: 100%;
  height: 430px;
  max-height: none;
  object-fit: cover;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.trust-item {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 14px;
  color: #eef4fb;
  font-weight: 700;
}

.section {
  padding: 74px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card,
.category,
.industry-card,
.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(8, 43, 95, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover,
.industry-card:hover,
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(217, 150, 31, 0.45);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(217, 150, 31, 0.14);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.card h3,
.industry-card h3,
.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card p,
.industry-card p,
.process-step p {
  color: var(--muted);
}

.card a {
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

.category {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 78px;
  font-weight: 800;
  color: var(--navy);
}

.category span {
  color: var(--gold);
  font-size: 1.2rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 800;
}

.feature-list li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 8px;
}

.process-step {
  position: relative;
}

.step-number {
  color: var(--gold);
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 52px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.cta-inner p {
  color: #dbe7f5;
  margin: 10px 0 0;
}

.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  padding: 70px 0;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 14px;
}

.page-hero p {
  max-width: 780px;
  color: #e4edf8;
  font-size: 1.08rem;
}

.content-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 8px 24px rgba(8, 43, 95, 0.05);
}

.content-panel h2,
.content-panel h3 {
  margin-bottom: 12px;
}

.plain-list {
  padding-left: 18px;
  color: var(--muted);
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-weight: 800;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(217, 150, 31, 0.24);
  border-color: var(--gold);
}

.form-note {
  color: var(--muted);
  font-size: 0.93rem;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}

.contact-item strong {
  display: block;
  color: var(--navy);
}

.site-footer {
  background: #061f46;
  color: #dce8f6;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 34px;
}

.footer-mark {
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: var(--white);
  color: var(--navy);
  border-left: 5px solid var(--gold);
  font-weight: 900;
  letter-spacing: 0;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--gold-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
  color: #b7c7dc;
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .primary-nav,
  .site-header.is-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.is-open .primary-nav {
    gap: 4px;
    padding-top: 10px;
  }

  .site-header.is-open .header-actions {
    grid-template-columns: 1fr;
    padding-bottom: 16px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .hero-grid,
  .split,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    display: grid;
  }

  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 62px;
    height: 48px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .hero,
  .page-hero,
  .section {
    padding: 50px 0;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-image-panel img {
    height: 300px;
  }

  .trust-row,
  .grid-3,
  .grid-4,
  .feature-list,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-inner .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }
}
