:root {
  --navy: #0d2438;
  --navy-2: #12344d;
  --sky: #2d7fc8;
  --accent: #f5a623;
  --accent-2: #ffcc66;
  --text: #1c2732;
  --muted: #5e6976;
  --bg: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(8, 24, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

html,
body {
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 9;
  background: linear-gradient(135deg, rgba(13, 36, 56, 0.98) 0%, rgba(18, 52, 77, 0.98) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
}

.nav-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  min-height: 54px;
  transform: translateY(-4px);
}

.brand {
  display: flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  display: block;
  height: 185px;
  width: auto;
  object-fit: contain;
  background: transparent;
  filter: none;
  margin: -26px 0;
  transform: translateY(-2px);
}

.main-nav {
  display: flex;
  gap: 1.3rem;
  line-height: 1;
  margin-top: 48px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 1.125rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.65rem;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--white);
}

.menu-toggle:focus-visible,
.main-nav a:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
}

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 5rem 0 4.5rem;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.90rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 0.8rem;
}

.hero h1,
.section-heading h2,
.section-dark h2,
.order-grid h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-text,
.section-dark p,
.info-card p,
.benefits-list p,
.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

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

.order-grid .eyebrow {
  color: var(--accent);
}

.how-it-works {
  margin-top: 1.75rem;
}

.how-it-works h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1.25rem;
}

.how-it-works ol {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: order-step;
}

.how-it-works li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  counter-increment: order-step;
}

.how-it-works li::before {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--navy);
  content: counter(order-step);
  font-weight: 800;
  line-height: 1;
}

.how-it-works strong {
  line-height: 1.4;
}

.section-eyebrow-accent {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--navy);
  box-shadow: 0 12px 20px rgba(245, 166, 35, 0.2);
}

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

.hero-highlights {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-highlights li::before {
  content: "•";
  color: var(--accent-2);
  font-size: 1.1rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.pill {
  display: inline-block;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 204, 102, 0.2);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.86rem;
  margin-bottom: 0.8rem;
}

.card-top h2 {
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 0;
}

.card-body {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.card-body > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  padding: 4.5rem 0;
}

.section-light {
  background: var(--bg);
}

.section-dark {
  background: linear-gradient(135deg, #102b3b 0%, #183a4e 100%);
  color: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 4rem 0 3rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.pricing-table {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.pricing-table > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--text);
}

.pricing-table.dark > div {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.pricing-note {
  margin-top: 1.2rem;
  color: var(--muted);
  max-width: 760px;
}

.tariff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 1.2rem;
}

.tariff-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.tariff-card-dark {
  background: linear-gradient(135deg, #102b3b 0%, #183a4e 100%);
  color: var(--white);
}

.tariff-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.tariff-card-dark h3 {
  color: var(--white);
}

.tariff-intro {
  color: var(--muted);
  margin-bottom: 1rem;
}

.tariff-card-dark .tariff-intro {
  color: rgba(255, 255, 255, 0.8);
}

.tariff-table {
  display: grid;
  gap: 0.7rem;
}

.tariff-table > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(8, 24, 38, 0.08);
}

.tariff-table .tariff-table-heading {
  padding-top: 0;
  border-bottom-color: rgba(8, 24, 38, 0.18);
}

.tariff-table span {
  min-width: 0;
}

.tariff-table strong {
  flex: 0 0 auto;
  white-space: nowrap;
}

.tariff-card-dark .tariff-table > div {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.surcharge-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.5;
}

.corporate-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.4rem;
  padding: 1.4rem;
  border-radius: 1.25rem;
  background: rgba(13, 36, 56, 0.04);
  border: 1px solid rgba(13, 36, 56, 0.08);
}

.corporate-box h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.corporate-box p {
  margin: 0;
  color: var(--muted);
}

.corporate-box .btn {
  text-align: center;
}

.tariff-note {
  margin-top: 1.2rem;
  color: var(--muted);
  width: 100%;
}

.legal-content {
  max-width: 860px;
}

.legal-content article {
  margin-bottom: 2rem;
}

.legal-content h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.3;
}

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

.legal-content ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.legal-content li ul {
  margin-top: 0.55rem;
}

.legal-content strong {
  color: var(--text);
}

.legal-content a {
  color: var(--navy);
  font-weight: 700;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.info-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin-top: 0;
  color: var(--navy);
}

.info-card p,
.info-card li {
  color: var(--muted);
}

.info-card ul {
  padding-left: 1rem;
  margin-bottom: 0;
}

.split-grid,
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.benefits-list {
  display: grid;
  gap: 1rem;
}

.benefits-list > div {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.benefits-list h3 {
  margin: 0 0 0.4rem;
}

.order-form {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

input {
  border: 1px solid #dce4eb;
  border-radius: 0.8rem;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--text);
}

input::placeholder {
  font-size: 0.9rem;
}

.full-width {
  width: 100%;
  border: 0;
  cursor: pointer;
  margin-top: 0.4rem;
}

.form-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.75rem 0 0;
  font-weight: 600;
}

.form-status.success {
  color: #147a3f;
}

.form-status.error {
  color: #b42318;
}

.cf-turnstile {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 1rem auto;
  min-height: 65px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
}

.checkbox-row input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
}

.checkbox-row a {
  color: var(--navy);
  font-weight: 700;
}

.full-width:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-note a {
  color: var(--navy);
  font-weight: 700;
}

.site-footer {
  background: #071722;
  color: var(--white);
  padding: 2.2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr 0.8fr;
  gap: 1rem;
}

.footer-grid > div {
  text-align: center;
}

.site-footer h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.site-footer p {
  margin: 0.25rem 0;
}

.registration-number {
  white-space: nowrap;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent-2);
}

.footer-social {
  min-width: 6.5rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.2rem;
  background: #0a66c2;
  color: var(--white);
}

.site-footer .social-icon {
  color: var(--white);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.site-footer .social-icon:hover,
.site-footer .social-icon:focus-visible {
  background: #084f96;
  color: var(--white);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 160px;
  }

  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    padding-bottom: 0.8rem;
    transform: none;
  }

  .brand-logo {
    height: 145px;
    margin: -20px 0;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin-top: 0;
  }

  .main-nav a {
    font-size: 1rem;
  }

  .hero-grid,
  .split-grid,
  .order-grid,
  .cards-grid,
  .footer-grid,
  .tariff-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 3.5rem;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 110px;
  }

  .container {
    width: min(100% - 1.25rem, 1120px);
  }

  .brand-logo {
    height: 120px;
    margin: -16px 0;
  }

  .menu-toggle {
    position: absolute;
    top: 1rem;
    right: 0;
    display: block;
  }

  .main-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.35rem 0 0;
  }

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

  .main-nav a {
    display: block;
    padding: 0.65rem 0.8rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .tariff-table > div {
    align-items: flex-start;
    gap: 0.75rem;
  }
}
