:root {
    --primary: #003bbf;
    --primary-2: #139be8;
    --navy: #071638;
    --dark: #172033;
    --muted: #6b7280;
    --line: #e8eef7;
    --soft: #f5f8fd;
    --white: #ffffff;
    --footer: #05070d;
    --shadow: 0 18px 45px rgba(7, 22, 56, .12);
    --shadow-soft: 0 10px 30px rgba(7, 22, 56, .08);
    --radius: 20px;
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    font-family: "Lato", Arial, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button, input, textarea { font: inherit; }

  .container {
    width: min(1420px, calc(100% - 32px));
    margin: 0 auto;
  }

  .topbar {
    background: #34363b;
    color: #fff;
    padding: 9px 0;
    font-size: 14px;
  }

  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .partners { width: 135px; opacity: .96; }

  .call-box {
    display: flex;
    align-items: center;
    gap: 11px;
    text-align: right;
  }

  .call-box img { width: 36px; height: 36px; }
  .call-box span:first-of-type { color: rgba(255,255,255,.84); }
  .call-box b { font-size: 20px; color: #fff; }

  .navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, #0034af, #0057dc);
    box-shadow: 0 10px 28px rgba(0,0,0,.15);
  }

  .nav-inner {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .logo img { width: 130px; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-links > li { position: relative; }

  .nav-links a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    font-size: 12px;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
    border-radius:100px;
  }

  .nav-links a:hover,
  .nav-links .active > a { background: rgba(255,255,255,.15); }

  .dropdown,
  .mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    color: var(--dark);
    min-width: 230px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s ease;
    z-index: 10;
  }

  .nav-links li:hover > .dropdown,
  .nav-links li:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown { padding: 10px; list-style: none; }
  .dropdown a { color: var(--dark); padding: 10px 14px; border-radius: 10px; font-size: 13px; }
  .dropdown a:hover { background: var(--soft); color: var(--primary); }

  .mega-menu {
    width: 790px;
    right: -180px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .mega-menu h5 { margin: 0 0 10px; color: var(--primary); font-size: 16px; }
  .mega-menu ul { margin: 0; padding: 0; list-style: none; }
  .mega-menu a { color: var(--muted); padding: 5px 0; text-transform: none; letter-spacing: 0; font-size: 14px; }
  .mega-menu a:hover { color: var(--primary); background: transparent; }

  .mobile-toggle { display: none; color: #fff; font-size: 24px; background: none; border: 0; }

  .hero {
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(rgba(7,22,56,.80), rgba(7,22,56,.70)),
      radial-gradient(circle at 20% 25%, rgba(19,155,232,.45), transparent 28%),
      linear-gradient(135deg, #071638 0%, #0d2d73 58%, #118edf 100%);
    padding: 88px 0 78px;
    color: #fff;
  }

  .hero::after {
    content: "";
    position: absolute;
    /* inset: auto -10% -78px -10%; */
    height: 145px;
    background: #fff;
    transform: rotate(-2deg);
    transform-origin: left top;
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 48px;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 18px;
  }

  h1, h2, h3, h4, h5, p { margin-top: 0; }

  h1 {
    font-size: clamp(40px, 3vw, 50px);
    line-height: 1.05;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -.03em;
  }

  .hero p {
    /* max-width: 680px; */
    color: rgba(255,255,255,.84);
    font-size: 18px;
    margin-bottom: 24px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .contact-hero-simple { text-align: center; }
  .contact-hero-simple.hero { padding: 88px 0 72px; }
  .contact-hero-simple .hero-inner {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
  }

  .contact-hero-simple h1,
  .contact-hero-simple p,
  .contact-hero-simple .eyebrow { text-align: center; }

  .contact-hero-simple .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-simple .hero-actions { justify-content: center; }
  .contact-hero-simple.hero::after { display: none; }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  }

  .btn:hover { transform: translateY(-2px); }
  .btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary-2), #006de0); box-shadow: 0 16px 32px rgba(0,0,0,.22); }
  .btn-light { color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24); }

  .quick-card {
    background: rgba(255,255,255,.96);
    color: var(--dark);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,.24);
    border: 1px solid rgba(255,255,255,.42);
  }

  .quick-card h3 { margin-bottom: 18px; color: var(--navy); font-size: 24px; }

  .quick-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .quick-item:first-of-type { border-top: 0; }

  .quick-item i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: #eef6ff;
    font-size: 20px;
  }

  .quick-item b { display: block; color: var(--navy); }
  .quick-item span { color: var(--muted); font-size: 14px; }

  .section { padding: 80px 12px 80px; }

  .section-title {
    text-align: center;
    margin-bottom: 52px;
  }

  .section-title h2 {
    color: var(--primary);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.16;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -.02em;
  }

  .section-title p {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
  }

  .divider {
    width: 58px;
    height: 3px;
    background: var(--primary-2);
    border-radius: 10px;
    margin: 0 auto 18px;
  }

  .contact-section { background: #fff; }

  .contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
    align-items: stretch;
  }

  .info-panel,
  .form-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .info-panel {
    overflow: hidden;
  }

  .info-head {
    padding: 34px;
    background: linear-gradient(135deg, var(--navy), #0d2d73);
    color: #fff;
  }

  .info-head h3 { font-size: 28px; margin-bottom: 10px; }
  .info-head p { margin: 0; color: rgba(255,255,255,.78); }

  .info-list {
    display: grid;
    gap: 0;
    padding: 10px 24px 24px;
  }

  .contact-info-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-info-item:last-child { border-bottom: 0; }

  .contact-info-item i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    font-size: 18px;
  }

  .contact-info-item span { display: block; color: var(--muted); font-size: 13px; }
  .contact-info-item b { display: block; color: var(--navy); line-height: 1.45; }

  .service-box {
    margin: 0 24px 24px;
    padding: 20px;
    border-radius: 18px;
    background: var(--soft);
    border: 1px solid #edf3fb;
  }

  .service-box h4 { color: var(--navy); margin-bottom: 12px; }
  .service-box ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
  .service-box li { color: var(--muted); font-size: 14px; }
  .service-box li::before { content: "✓"; color: var(--primary-2); font-weight: 700; margin-right: 8px; }

  .form-panel { padding: 34px; }
  .form-panel h3 { color: var(--navy); font-size: 28px; margin-bottom: 8px; }
  .form-panel > p { color: var(--muted); margin-bottom: 28px; }

  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .form-group.full { grid-column: 1 / -1; }

  label {
    display: block;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
  }

  input,
  textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fbfdff;
    color: var(--dark);
    padding: 14px 15px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  }

  textarea { min-height: 150px; resize: vertical; }

  input:focus,
  textarea:focus {
    border-color: rgba(19,155,232,.75);
    box-shadow: 0 0 0 4px rgba(19,155,232,.12);
    background: #fff;
  }

  .form-actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
  }

  .form-note {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
  }

  .map-strip {
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 54px 0;
  }

  .map-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
  }

  .map-card h3 { color: var(--navy); font-size: 26px; margin-bottom: 6px; }
  .map-card p { color: var(--muted); margin: 0; }

  .footer {
    background: var(--footer);
    color: #fff;
  }

  .footer-main {
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.1fr .9fr 1fr;
    gap: 38px;
    align-items: start;
  }

  .footer p, .footer a { color: rgba(255,255,255,.78); }
  .footer h4 { margin: 0 0 16px; font-size: 18px; color: #fff; }
  .payment-cards { max-width: 320px; margin: 16px 0; }

  .footer-contact { display: grid; gap: 14px; }
  .footer-contact a, .footer-contact div { display: flex; align-items: center; gap: 12px; }
  .footer-contact i { color: var(--primary-2); font-size: 20px; }

  .footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
  .footer-links li::before { content: "✓"; color: var(--primary-2); margin-right: 9px; }

  .footer-brand img { width: 108px; margin-bottom: 14px; }

  .small-footer {
    background: #0f9ee8;
    padding: 13px 0;
    font-size: 13px;
  }

  .small-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .small-footer p { margin: 0; color: #fff; }
  .bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
  .bottom-links a { color: #fff; }

  .to-top {
    position: fixed;
    right: 22px;
    bottom: 26px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 99;
  }

  @media (max-width: 992px) {
    .mobile-toggle { display: block; }
    .nav-links {
      position: absolute;
      left: 0;
      right: 0;
      top: 66px;
      display: none;
      flex-direction: column;
      align-items: stretch;
      background: var(--primary);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 15px 20px; }
    .dropdown, .mega-menu { position: static; width: auto; right: auto; transform: none; opacity: 1; visibility: visible; display: none; border-radius: 0; box-shadow: none; }
    .nav-links li:hover > .dropdown, .nav-links li:hover > .mega-menu { display: grid; }
    .mega-menu { grid-template-columns: repeat(2, 1fr); }
    .hero-inner, .contact-grid, .footer-main, .why-grid { grid-template-columns: 1fr; }
    .features { grid-template-columns: repeat(2, 1fr); }
    .map-card { grid-template-columns: 1fr; }
  }

  @media (max-width: 640px) {
    .topbar-inner { justify-content: center; text-align: center; }
    .partners { display: none; }
    .call-box { text-align: left; }
    .hero { padding: 64px 0 66px; }
    .hero p { font-size: 14px; margin-bottom: 24px;}
    .quick-card, .form-panel, .info-head, .map-card { padding: 26px; }
    .contact-form, .features, .check-grid { grid-template-columns: 1fr; }
    .mega-menu { grid-template-columns: 1fr; }
    .footer-main { padding: 38px 0; gap: 28px; }
    .footer-main { text-align: center; }
    .footer-main > div { max-width: 420px; margin-left: auto; margin-right: auto; }
    .payment-cards { margin-left: auto; margin-right: auto; max-width: 280px; }
    .footer-contact { justify-items: center; }
    .footer-contact a, .footer-contact div { justify-content: center; }
    .footer-links { justify-items: center; gap: 10px; }
    .footer-links li { display: flex; align-items: center; justify-content: center; }
    .footer-brand img { margin-left: auto; margin-right: auto; }
    /* .bottom-links { display: none; } */
    .topbar { display: none; }
    .copy-right { max-width: 340px; margin: 0 auto; line-height: 1.6; }
    .small-footer-inner { flex-direction: column; text-align: center; }
    .small-footer { padding: 16px 0 18px; }
    .to-top { right: 14px; bottom: 18px; }
  }



  .error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      linear-gradient(rgba(7,22,56,.82), rgba(7,22,56,.78)),
      radial-gradient(circle at 20% 25%, rgba(19,155,232,.45), transparent 28%),
      linear-gradient(135deg, #071638 0%, #0d2d73 58%, #118edf 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0;
  }
  
  .error-box {
    max-width: 760px;
  }
  
  .error-icon {
    width: 105px;
    height: 105px;
    margin: 0 auto 24px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    box-shadow: 0 25px 60px rgba(0,0,0,.24);
  }
  
  .error-icon i {
    font-size: 48px;
    color: #fff;
  }
  
  .error-page h1 {
    font-size: clamp(90px, 16vw, 180px);
    line-height: .85;
    margin: 0 0 18px;
    font-weight: 700;
  }
  
  .error-page h2 {
    font-size: clamp(28px, 4vw, 46px);
    margin-bottom: 14px;
    font-weight: 700;
  }
  
  .error-page p {
    max-width: 560px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
  }
  
  .error-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .btn-outline {
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.24);
  }

  .hero-card {
    background: rgba(255,255,255,.96);
    color: var(--dark);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,.24);
    border: 1px solid rgba(255,255,255,.42);
  }

  .hero-card h3 {
    margin-bottom: 16px;
    color: var(--navy);
    font-size: 24px;
  }

  .mini-stat {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .mini-stat:first-of-type { border-top: 0; }

  .mini-stat i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: #eef6ff;
    font-size: 20px;
  }

  .mini-stat b { display: block; color: var(--navy); }
  .mini-stat span { color: var(--muted); font-size: 14px; }

  .features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
  }

  .feature-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #eef6ff, #fff);
    color: var(--primary);
    font-size: 30px;
    margin-bottom: 22px;
  }

  .feature-card h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 10px;
  }

  .feature-card p {
    color: var(--muted);
    margin: 0;
  }

  .why { background: var(--soft); }

  .why-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items: start;
  }

  .content-card,
  .contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
  }

  .content-card p { color: var(--muted); }

  .check-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .check-item {
    background: var(--soft);
    border: 1px solid #edf3fb;
    border-radius: 14px;
    padding: 12px;
    color: var(--navy);
    font-weight: 700;
  }

  .check-item i {
    color: var(--primary-2);
    margin-right: 8px;
  }

  .contact-card h3 {
    color: var(--navy);
    font-size: 24px;
    margin-bottom: 10px;
  }

  .contact-list {
    margin-top: 18px;
    display: grid;
    gap: 12px;
  }

  .contact-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    background: var(--soft);
    border: 1px solid #edf3fb;
    border-radius: 14px;
    padding: 12px;
  }

  .contact-item i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
  }

  .contact-item span {
    display: block;
    font-size: 13px;
    color: var(--muted);
  }

  .contact-item b {
    display: block;
    color: var(--navy);
    line-height: 1.45;
  }
