  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue: #0a66c2;
      --blue-dark: #084d99;
      --blue-light: #e8f2fc;
      --accent: #ff6b00;
      --accent-light: #fff3eb;
      --dark: #0d1117;
      --mid: #1e2a38;
      --text: #1a2332;
      --muted: #5a6a7a;
      --border: #dce4ef;
      --card-bg: #ffffff;
      --section-alt: #f4f7fb;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Barlow', sans-serif;
      color: var(--text);
      background: #fff;
      line-height: 1.65;
      font-size: 16px;
    }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--dark);
      color: #b0bec8;
      font-size: 13px;
      padding: 7px 0;
    }
    .topbar-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 20px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 6px;
    }
    .topbar a { color: #8ab4cc; text-decoration: none; }
    .topbar a:hover { color: #fff; }
    .topbar-contact { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
    .topbar-badge {
      background: var(--accent); color: #fff;
      padding: 2px 10px; border-radius: 3px; font-weight: 700; font-size: 12px;
      letter-spacing: 0.04em;
    }

    /* ── HEADER ── */
    header {
      background: var(--mid);
      box-shadow: 0 2px 12px rgba(0,0,0,0.18);
      position: sticky; top: 0; z-index: 100;
    }
    .header-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 20px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; min-height: 64px;
    }
    .logo {
      display: flex; align-items: center; gap: 10px; text-decoration: none;
    }
    .logo-icon {
      width: 40px; height: 40px; background: var(--blue);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
    }
    .logo-icon svg { width: 22px; height: 22px; fill: #fff; }
    .logo-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 20px; color: #fff; line-height: 1.1; }
    .logo-text span { color: #60a8e8; display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

    nav { display: flex; gap: 6px; align-items: center; }
    nav a {
      color: #cdd8e6; font-size: 14px; font-weight: 500;
      text-decoration: none; padding: 6px 12px; border-radius: 6px;
      transition: background 0.2s, color 0.2s;
    }
    nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
    .nav-cta {
      background: var(--accent) !important; color: #fff !important;
      padding: 7px 18px !important; font-weight: 700 !important;
    }
    .nav-cta:hover { background: #e05a00 !important; }

    .hamburger { display: none; cursor: pointer; background: none; border: none; }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: #fff; margin: 5px 0; border-radius: 2px;
      transition: 0.3s;
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #0d1117 0%, #1a2d4a 55%, #0a3060 100%);
      color: #fff; padding: 72px 20px 80px;
      text-align: center; position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(10,102,194,0.18) 0%, transparent 70%);
    }
    .hero-badge {
      display: inline-block; background: var(--accent);
      color: #fff; font-size: 12px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 5px 16px; border-radius: 4px; margin-bottom: 20px;
    }
    .hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(32px, 5.5vw, 58px); font-weight: 800;
      line-height: 1.1; max-width: 820px; margin: 0 auto 18px;
    }
    .hero h1 em { color: #60b8ff; font-style: normal; }
    .hero p {
      font-size: clamp(15px, 2vw, 18px); color: #a8c4dc;
      max-width: 620px; margin: 0 auto 36px;
    }
    .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--accent); color: #fff; font-family: 'Barlow', sans-serif;
      font-weight: 700; font-size: 16px; padding: 14px 32px;
      border-radius: 8px; text-decoration: none; border: none; cursor: pointer;
      display: inline-block; transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: #e05a00; transform: translateY(-1px); }
    .btn-secondary {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,0.35); font-family: 'Barlow', sans-serif;
      font-weight: 600; font-size: 16px; padding: 13px 28px;
      border-radius: 8px; text-decoration: none; display: inline-block;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
    .hero-stats {
      display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
      margin-top: 52px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stat { text-align: center; }
    .hero-stat strong {
      display: block; font-family: 'Barlow Condensed', sans-serif;
      font-size: 36px; font-weight: 800; color: #fff;
    }
    .hero-stat span { font-size: 13px; color: #7da8c8; text-transform: uppercase; letter-spacing: 0.05em; }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--blue); color: #fff;
      padding: 14px 20px; text-align: center;
    }
    .trust-bar-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; justify-content: center; align-items: center;
      gap: 32px; flex-wrap: wrap;
    }
    .trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
    .trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* ── SECTIONS ── */
    section { padding: 72px 20px; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-alt { background: var(--section-alt); }

    .section-header { text-align: center; margin-bottom: 48px; }
    .section-tag {
      display: inline-block; background: var(--blue-light); color: var(--blue);
      font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 4px 14px; border-radius: 4px; margin-bottom: 12px;
    }
    .section-header h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--text);
      margin-bottom: 12px;
    }
    .section-header p { color: var(--muted); font-size: 17px; max-width: 560px; margin: 0 auto; }

    /* ── SERVICES GRID ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
      gap: 18px;
    }
    .service-card {
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 12px; padding: 22px 20px;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
      cursor: default;
    }
    .service-card:hover {
      border-color: var(--blue); box-shadow: 0 4px 20px rgba(10,102,194,0.12);
      transform: translateY(-3px);
    }
    .service-icon {
      width: 46px; height: 46px; background: var(--blue-light);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .service-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
    .service-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
    .service-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

    /* ── WHY CHOOSE US ── */
    .why-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px;
    }
    .why-card {
      display: flex; gap: 16px; align-items: flex-start;
      background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 22px;
    }
    .why-num {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--blue-dark); color: #fff;
      font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .why-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
    .why-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

    /* ── PROCESS ── */
    .process-steps {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0;
      position: relative;
    }
    .process-step { text-align: center; padding: 24px 16px; position: relative; }
    .step-bubble {
      width: 58px; height: 58px; border-radius: 50%;
      background: var(--blue); color: #fff; margin: 0 auto 14px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800;
    }
    .process-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
    .process-step p { font-size: 13px; color: var(--muted); }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
    }
    @media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

    .contact-card {
      background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 36px;
    }
    .contact-item {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 18px 0; border-bottom: 1px solid var(--border);
    }
    .contact-item:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-icon {
      width: 44px; height: 44px; background: var(--blue-light); border-radius: 10px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .contact-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 2; }
    .contact-item h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 4px; }
    .contact-item a, .contact-item p { font-size: 16px; font-weight: 600; color: var(--text); text-decoration: none; }
    .contact-item a:hover { color: var(--blue); }

    .map-placeholder {
      background: var(--section-alt); border: 1px solid var(--border);
      border-radius: 16px; height: 320px; overflow: hidden;
    }
    .map-placeholder iframe { width: 100%; height: 100%; border: none; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark); color: #7a8fa0; padding: 48px 20px 24px;
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
    }
    @media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; } }
    .footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 12px; max-width: 300px; }
    footer h4 { color: #cdd8e6; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
    footer ul { list-style: none; }
    footer ul li { margin-bottom: 8px; }
    footer ul li a { color: #7a8fa0; text-decoration: none; font-size: 14px; }
    footer ul li a:hover { color: #cdd8e6; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px; font-size: 13px;
    }

    /* ── FLOATING CTA ── */
    .float-call {
      position: fixed; bottom: 24px; right: 24px; z-index: 200;
      background: var(--accent); color: #fff; border-radius: 50px;
      padding: 14px 22px; font-weight: 700; font-size: 15px;
      text-decoration: none; box-shadow: 0 4px 20px rgba(255,107,0,0.4);
      display: flex; align-items: center; gap: 8px;
      transition: background 0.2s, transform 0.15s;
    }
    .float-call:hover { background: #e05a00; transform: scale(1.04); }
    .float-call svg { width: 18px; height: 18px; fill: #fff; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--mid); padding: 16px 20px; gap: 4px; }
      nav.open { display: flex; }
      .hamburger { display: block; }
      header { position: relative; }
    }
    @media (max-width: 600px) {
      .hero { padding: 52px 20px 60px; }
      section { padding: 52px 20px; }
      .hero-stats { gap: 24px; }
      .trust-bar-inner { gap: 16px; }
      .float-call span { display: none; }
      .float-call { padding: 14px; border-radius: 50%; }
    }