:root {
  --navy: #06152d;
  --navy-2: #0b2447;
  --blue: #0d4fa6;
  --blue-2: #0b3f85;
  --cyan: #4aa9d8;
  --cyan-soft: #8fd0ee;
  --soft-blue: #edf4fb;
  --white: #ffffff;
  --text: #11213b;
  --muted: #5b6b82;
  --border: #d9e5f2;
  --shadow: 0 18px 42px rgba(6, 21, 45, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

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

img {
  max-width: 100%;
}

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

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

.narrow {
  width: min(820px, calc(100% - 32px));
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
}

.logo-brand {
  gap: 0;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(6, 21, 45, 0.16));
}

.footer-brand .brand-logo {
  width: 66px;
  height: 66px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-2);
  background: var(--soft-blue);
}

.nav-links .nav-cta {
  color: var(--white);
  background: var(--navy);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  color: var(--white);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: var(--soft-blue);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero,
.business-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(74, 169, 216, 0.13), transparent 32%),
    linear-gradient(135deg, #06152d 0%, #0a1e3d 48%, #0b2b57 100%);
  color: var(--white);
  padding: 88px 0;
}

.hero::after,
.business-hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(74, 169, 216, 0.10);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.hero .eyebrow,
.business-hero .eyebrow,
.section-dark .eyebrow {
  color: var(--cyan-soft);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.hero-text,
.hero-content p,
.business-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 28px 0 14px;
}

.center-actions {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(6, 44, 96, 0.24);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.section .btn-secondary,
.thank-you-section .btn-secondary {
  color: var(--navy);
  border: 1px solid var(--border);
  background: var(--white);
}

.mini-note {
  margin-top: 14px;
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.hero-card,
.cta-panel,
.card,
.service-item,
.contact-card,
.contact-form,
.thank-you-box {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero-card h2 {
  font-size: 1.7rem;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(143, 208, 238, 0.92);
  font-weight: 800;
  font-size: 0.84rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan-soft);
  font-weight: 900;
}

.dark-checks li::before {
  color: var(--blue);
}

.section {
  padding: 82px 0;
}

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

.section-dark {
  background: linear-gradient(135deg, #06152d, #0a244a);
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

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

.cards {
  display: grid;
  gap: 20px;
}

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

.card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
}

.card p,
.service-item p,
.cta-panel p,
.contact-info p,
.form-note {
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.cta-panel {
  padding: 32px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.light-panel {
  background: var(--white);
  border: 1px solid var(--border);
}

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

.step {
  padding: 24px;
  border-radius: 18px;
  background: var(--soft-blue);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  padding-top: 20px;
}

.final-cta-box {
  text-align: center;
  padding: 52px 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, #06152d, #0a244a);
  color: var(--white);
}

.final-cta-box p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 78px 0;
  background: linear-gradient(135deg, var(--soft-blue), var(--white));
  text-align: center;
}

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

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-item {
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--white);
}

.service-item a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 800;
}

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

.problem-grid div {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.contact-card {
  margin: 28px 0;
  padding: 24px;
  background: var(--soft-blue);
  border: 1px solid var(--border);
  box-shadow: none;
}

.contact-form {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
}

.form-row {
  margin-bottom: 18px;
}

.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(13, 79, 166, 0.16);
  border-color: var(--blue);
}

.submit-btn {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.thank-you-section {
  min-height: 66vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--soft-blue), var(--white));
}

.thank-you-box {
  text-align: center;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--border);
}

.site-footer {
  background: #051428;
  color: var(--white);
  padding-top: 48px;
}

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

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h3 {
  font-size: 1rem;
  color: var(--white);
}

.footer-brand {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #167c45;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(22, 124, 69, 0.28);
}

@media (max-width: 860px) {
  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 12px;
  }

  .hero,
  .business-hero {
    padding: 64px 0;
  }

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

  .three-columns,
  .steps,
  .service-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .two-fields,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .center-actions {
    align-items: stretch;
  }

  .btn,
  .full-mobile {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .contact-form,
  .thank-you-box {
    padding: 24px;
  }
}
