*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:      #10151b;
      --navy2:     #181f2a;
      --blue:      #09a4fb;
      --blue-dark: #0782c5;
      --blue-pale: #e8f5fe;
      --yellow:    #ffba00;
      --mist:      #f4f5f6;
      --border:    #e2e6ea;
      --text:      #2e3a46;
      --text-soft: #6b7a8d;
      --white:     #ffffff;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--navy); color: rgba(255,255,255,.7);
      font-size: .75rem; letter-spacing: .04em;
      padding: 9px 60px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .topbar-left { display: flex; gap: 28px; align-items: center; }
    .topbar-left span { display: flex; align-items: center; gap: 6px; }
    .topbar-left svg { opacity: .6; flex-shrink: 0; }
    .topbar-right { display: flex; gap: 20px; align-items: center; }
    .topbar-right a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
    .topbar-right a:hover { color: var(--blue); }
    .topbar-phone {
      background: var(--blue); color: #fff !important;
      padding: 5px 14px; font-weight: 600; letter-spacing: .02em;
      display: inline-flex; align-items: center; gap: 6px;
    }
    .topbar-phone-wrap { position: relative; }
    .topbar-phone-chevron { opacity: .85; transition: transform .2s; flex-shrink: 0; }
    .topbar-phone-wrap:hover .topbar-phone-chevron,
    .topbar-phone-wrap:focus-within .topbar-phone-chevron { transform: rotate(180deg); }
    .topbar-phone-dropdown {
      position: absolute; top: calc(100% + 8px); right: 0;
      min-width: 230px; background: var(--navy2);
      border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
      padding: 6px 0; box-shadow: 0 12px 32px rgba(0,0,0,.28);
      opacity: 0; visibility: hidden; transform: translateY(-4px);
      transition: opacity .2s, transform .2s, visibility .2s;
      z-index: 300;
    }
    .topbar-phone-wrap:hover .topbar-phone-dropdown,
    .topbar-phone-wrap:focus-within .topbar-phone-dropdown {
      opacity: 1; visibility: visible; transform: translateY(0);
    }
    .topbar-phone-dropdown-title {
      padding: 6px 14px 8px; font-size: .65rem;
      text-transform: uppercase; letter-spacing: .08em;
      color: rgba(255,255,255,.45);
    }
    .topbar-phone-dropdown a {
      display: block; padding: 8px 14px;
      color: rgba(255,255,255,.85) !important;
      font-size: .78rem; text-decoration: none; white-space: nowrap;
    }
    .topbar-phone-dropdown a:hover {
      background: rgba(9,164,251,.15); color: #fff !important;
    }
    .topbar-phone-dropdown a strong { font-weight: 600; color: var(--blue); }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 200;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 60px; height: 68px;
      box-shadow: 0 1px 0 var(--border);
      transition: box-shadow .3s;
    }
    nav.elevated { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
    .logo { display: flex; align-items: center; text-decoration: none; }
    .logo img { height: 40px; width: auto; }
    .nav-links { display: flex; gap: 4px; list-style: none; }
    .nav-links a {
      font-size: .85rem; font-weight: 500; padding: 8px 14px;
      color: var(--text); text-decoration: none; border-radius: 6px;
      transition: background .2s, color .2s;
    }
    .nav-links a:hover { background: var(--mist); color: var(--navy); }
    .nav-actions { display: flex; gap: 10px; align-items: center; }
    .nav-phone {
      font-size: .85rem; font-weight: 600; color: var(--navy);
      text-decoration: none; display: flex; align-items: center; gap: 7px;
      white-space: nowrap;
    }
    .nav-phone svg { color: var(--blue); }
    .nav-cta {
      padding: 10px 22px; background: var(--blue); color: var(--white);
      font-size: .84rem; font-weight: 600; border-radius: 6px;
      text-decoration: none; transition: background .2s, transform .15s;
    }
    .nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(120deg, var(--navy) 0%, #1a2840 100%);
      padding: 80px 60px 0;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: end; overflow: hidden;
      min-height: 580px; position: relative;
    }
    .hero::before {
      content: '';
      position: absolute; top: 0; right: 0; bottom: 0;
      width: 55%;
      background: radial-gradient(ellipse at 80% 40%, rgba(9,164,251,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-left { padding-bottom: 80px; position: relative; z-index: 2; }
    .hero-badge-row {
      display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px;
    }
    .hero-badge {
      display: flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
      padding: 5px 12px; border-radius: 20px;
      font-size: .72rem; font-weight: 500; letter-spacing: .05em;
      color: rgba(255,255,255,.75); text-transform: uppercase;
    }
    .hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
    .hero-badge.green .dot { background: #00c98e; }
    .hero-badge.yellow .dot { background: var(--yellow); }
    h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.4rem, 4vw, 3.8rem);
      font-weight: 700; line-height: 1.1;
      color: var(--white); margin-bottom: 22px;
    }
    h1 em { font-style: normal; color: var(--blue); }
    .hero-sub {
      font-size: 1.05rem; line-height: 1.75;
      color: rgba(255,255,255,.65);
      max-width: 480px; margin-bottom: 40px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
    .btn-hero {
      padding: 15px 32px; background: var(--blue); color: var(--white);
      font-size: .9rem; font-weight: 600; border-radius: 8px;
      text-decoration: none; transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(9,164,251,.35);
    }
    .btn-hero:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(9,164,251,.45); }
    .btn-hero-outline {
      padding: 15px 32px; background: transparent;
      border: 1.5px solid rgba(255,255,255,.25);
      color: var(--white); font-size: .9rem; font-weight: 500;
      border-radius: 8px; text-decoration: none;
      transition: border-color .2s, background .2s;
    }
    .btn-hero-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.05); }
    .hero-trust-row {
      display: flex; gap: 28px; align-items: center;
      padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08);
    }
    .hero-trust-item { display: flex; flex-direction: column; }
    .hero-trust-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.7rem; font-weight: 700; color: var(--white); line-height: 1;
    }
    .hero-trust-num span { color: var(--blue); }
    .hero-trust-label { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: 4px; line-height: 1.4; }
    .hero-divider { width: 1px; height: 44px; background: rgba(255,255,255,.1); }

    .hero-right {
      position: relative; z-index: 2;
      display: flex; flex-direction: column; gap: 12px;
      padding-bottom: 0; align-self: end;
    }
    .hero-image {
      position: absolute; inset: 0;
      z-index: 0; overflow: hidden;
    }
    .hero-image img {
      width: 100%; height: 100%; object-fit: cover; object-position: right center;
    }
    .hero-image::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(100deg, var(--navy) 0%, rgba(16,21,27,.55) 35%, transparent 65%);
    }
    .hero-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      backdrop-filter: blur(10px);
      border-radius: 12px; padding: 20px 24px;
      display: flex; align-items: center; gap: 16px;
      color: var(--white);
      animation: float 6s ease-in-out infinite;
    }
    .hero-card:nth-child(2) { animation-delay: -2s; }
    .hero-card:nth-child(3) { animation-delay: -4s; }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-6px); }
    }
    .hero-card-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: rgba(9,164,251,.2);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: var(--blue);
    }
    .hero-card-icon.green { background: rgba(0,201,142,.15); color: #00c98e; }
    .hero-card-icon.yellow { background: rgba(255,186,0,.15); color: var(--yellow); }
    .hero-card-text { font-size: .85rem; font-weight: 600; line-height: 1.3; }
    .hero-card-sub { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 2px; }

    /* ── CERT BAR ── */
    .cert-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 20px 60px;
      display: flex; flex-direction: column; align-items: center; gap: 14px;
      overflow: hidden;
    }
    .cert-bar-label {
      font-size: .72rem; font-weight: 600; letter-spacing: .1em;
      text-transform: uppercase; color: var(--text-soft);
      white-space: nowrap;
    }
    .cert-badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
    .cert-badge {
      display: flex; align-items: center; gap: 8px;
      border: 1.5px solid var(--border); border-radius: 8px;
      padding: 8px 16px; font-size: .8rem; font-weight: 600;
      color: var(--navy);
    }
    .cert-badge svg { color: var(--blue); }
    .cert-badge.iso { border-color: #09a4fb30; background: #09a4fb08; }
    .cert-badge.rodo { border-color: #00c98e30; background: #00c98e08; }
    .cert-badge.rodo svg { color: #00c98e; }
    .cert-badge.pl { border-color: #ffba0030; background: #ffba0008; }
    .cert-badge.pl svg { color: var(--yellow); }

    /* ── SECTION HELPERS ── */
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .72rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 14px;
    }
    .section-eyebrow::before {
      content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 2px;
    }
    h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.9rem, 3vw, 2.9rem);
      font-weight: 700; line-height: 1.15; color: var(--navy);
    }
    .section-lead {
      font-size: 1rem; line-height: 1.8; color: var(--text-soft);
      max-width: 520px; margin-top: 16px;
    }

    /* ── CLIENTS ── */
    .clients {
      background: var(--mist);
      padding: 56px 60px;
      border-bottom: 1px solid var(--border);
    }
    .clients-label {
      font-size: .72rem; font-weight: 600; letter-spacing: .12em;
      text-transform: uppercase; color: var(--text-soft);
      text-align: center; margin-bottom: 36px;
    }
    .clients-logos {
      display: flex; align-items: center; justify-content: center;
      gap: 48px; flex-wrap: wrap;
    }
    .client-logo {
      display: flex; align-items: center; gap: 10px;
      opacity: .45; filter: grayscale(1);
      transition: opacity .25s, filter .25s;
    }
    .client-logo:hover { opacity: .9; filter: grayscale(0); }
    .client-logo-icon {
      width: 36px; height: 36px; border-radius: 8px;
      background: var(--navy); display: flex; align-items: center; justify-content: center;
    }
    .client-logo-icon svg { color: white; }
    .client-logo-name {
      font-size: .88rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em;
    }
    .client-logo-type { font-size: .7rem; color: var(--text-soft); }

    /* ── WHY US ── */
    .whyus { padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .whyus-features { display: flex; flex-direction: column; gap: 0; }
    .feature {
      display: flex; gap: 20px; padding: 28px 0;
      border-bottom: 1px solid var(--border);
    }
    .feature:first-child { padding-top: 0; }
    .feature:last-child { border-bottom: none; }
    .feature-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: var(--blue-pale); color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .feature-title { font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
    .feature-desc { font-size: .87rem; line-height: 1.7; color: var(--text-soft); }
    .whyus-visual {
      background: var(--navy); border-radius: 16px;
      padding: 56px; position: relative; overflow: hidden;
      width: 100%; max-width: 100%; margin-left: auto;
    }
    .whyus-visual::before {
      content: '';
      position: absolute; top: -80px; right: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(9,164,251,.25) 0%, transparent 70%);
    }
    .whyus-stat-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
      position: relative; z-index: 1;
    }
    .whyus-stat {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07);
      padding: 40px 28px; border-radius: 2px;
      text-align: center;
    }
    .whyus-stat:first-child { border-radius: 12px 2px 2px 2px; }
    .whyus-stat:nth-child(2) { border-radius: 2px 12px 2px 2px; }
    .whyus-stat:nth-child(3) { border-radius: 2px 2px 2px 12px; }
    .whyus-stat:last-child { border-radius: 2px 2px 12px 2px; }
    .whyus-stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 3.3rem; font-weight: 700;
      color: var(--white); line-height: 1.05;
      letter-spacing: -0.02em;
    }
    .whyus-stat-num span { color: var(--blue); font-weight: 700; }
    .whyus-stat-label {
      font-size: 1.4rem; color: rgba(255,255,255,.45);
      margin-top: 12px; line-height: 1.35;
    }
    .whyus-bottom {
      margin-top: 32px; padding: 32px 36px;
      background: rgba(9,164,251,.1); border: 1px solid rgba(9,164,251,.2);
      border-radius: 10px; position: relative; z-index: 1;
    }
    .whyus-bottom-text {
      font-size: 1.6rem; color: rgba(255,255,255,.75); line-height: 1.55;
    }
    .whyus-bottom-text strong { color: var(--blue); }

    /* ── SERVICES ── */
    .services { background: var(--mist); padding: 100px 60px; }
    .services-head {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 52px;
    }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .service-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 12px; padding: 36px 32px;
      transition: box-shadow .3s, transform .3s, border-color .3s;
      position: relative; overflow: hidden;
    }
    .service-card::after {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--blue);
      transform: scaleX(0); transform-origin: left;
      transition: transform .35s ease;
    }
    .service-card:hover {
      box-shadow: 0 8px 40px rgba(0,0,0,.1);
      transform: translateY(-3px);
      border-color: rgba(9,164,251,.25);
    }
    .service-card:hover::after { transform: scaleX(1); }
    .service-icon {
      width: 52px; height: 52px; border-radius: 12px;
      background: var(--blue-pale); color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .service-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .service-desc { font-size: .87rem; line-height: 1.72; color: var(--text-soft); }
    .service-tag {
      display: inline-block; margin-top: 16px;
      font-size: .7rem; font-weight: 600; letter-spacing: .08em;
      text-transform: uppercase; color: var(--blue);
      background: var(--blue-pale); padding: 4px 10px; border-radius: 4px;
    }

    /* ── COVERAGE ── */
    .coverage {
      background: var(--navy); padding: 100px 60px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .coverage h2 { color: var(--white); }
    .coverage .section-lead { color: rgba(255,255,255,.6); }
    .coverage-features { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
    .coverage-feature {
      display: flex; gap: 14px; align-items: flex-start;
    }
    .coverage-feature-icon {
      width: 36px; height: 36px; border-radius: 8px;
      background: rgba(9,164,251,.15); color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 2px;
    }
    .coverage-feature-title { font-size: .92rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
    .coverage-feature-desc { font-size: .83rem; line-height: 1.65; color: rgba(255,255,255,.5); }
    .coverage-map {
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px; padding: 40px;
      display: flex; flex-direction: column; align-items: center; gap: 24px;
    }
    .map-placeholder {
      width: 100%; max-width: 320px; aspect-ratio: 4/5;
      position: relative;
    }
    .map-placeholder svg { width: 100%; height: 100%; }
    .coverage-cities {
      display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
    }
    .city-pill {
      font-size: .75rem; font-weight: 500; padding: 5px 14px;
      border-radius: 20px; border: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.65);
    }

    /* ── TESTIMONIALS ── */
    .testimonials { padding: 100px 60px; background: var(--white); }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
    .testimonial {
      background: var(--mist); border-radius: 12px; padding: 32px;
      border: 1px solid var(--border);
      display: flex; flex-direction: column;
    }
    .testimonial-stars { color: var(--yellow); font-size: .9rem; margin-bottom: 16px; letter-spacing: 2px; }
    .testimonial-text {
      font-size: .9rem; line-height: 1.75; color: var(--text); flex-grow: 1;
      font-style: italic;
    }
    .testimonial-author {
      display: flex; align-items: center; gap: 14px; margin-top: 24px;
      padding-top: 20px; border-top: 1px solid var(--border);
    }
    .testimonial-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--navy); display: flex; align-items: center; justify-content: center;
      font-family: 'Syne', sans-serif; font-size: .9rem; font-weight: 700; color: var(--white);
      flex-shrink: 0;
    }
    .testimonial-name { font-size: .88rem; font-weight: 600; color: var(--navy); }
    .testimonial-role { font-size: .78rem; color: var(--text-soft); margin-top: 2px; }

    /* ── RULE 3-2-1 ── */
    .rule321 {
      background: linear-gradient(135deg, #0d1520 0%, #1a2840 100%);
      padding: 100px 60px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .rule321 h2 { color: var(--white); }
    .rule321 .section-lead { color: rgba(255,255,255,.6); }
    .rule-steps { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
    .rule-step {
      display: flex; gap: 24px; padding: 32px 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .rule-step:first-child { padding-top: 0; }
    .rule-step:last-child { border-bottom: none; }
    .rule-num {
      font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 800;
      color: var(--blue); line-height: 1; flex-shrink: 0; width: 52px; opacity: .9;
    }
    .rule-title { font-size: .95rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
    .rule-desc { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.5); }
    .rule321-right {
      background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px; padding: 40px;
    }
    .rule321-right h3 {
      font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700;
      color: var(--white); margin-bottom: 24px;
    }
    .threat-list { display: flex; flex-direction: column; gap: 14px; }
    .threat-item {
      display: flex; align-items: center; gap: 14px;
      font-size: .87rem; color: rgba(255,255,255,.65);
    }
    .threat-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: rgba(255,50,50,.12); color: #ff6464;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .threat-icon.ok { background: rgba(0,201,142,.12); color: #00c98e; }

    /* ── PROCESS ── */
    .process { padding: 100px 60px; background: var(--mist); }
    .process-steps {
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 0; margin-top: 60px; position: relative;
    }
    .process-steps::before {
      content: ''; position: absolute;
      top: 24px; left: 10%; right: 10%;
      height: 1px; background: var(--border); z-index: 0;
    }
    .process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
    .process-dot {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--white); border: 2px solid var(--blue);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
      font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
      color: var(--blue);
    }
    .process-step-name { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .08em; }
    .process-step-desc { font-size: .78rem; line-height: 1.65; color: var(--text-soft); }

    /* ── CTA STRIP ── */
    .cta-strip {
      background: var(--blue); padding: 72px 60px;
      display: flex; align-items: center; justify-content: space-between; gap: 40px;
    }
    .cta-strip h2 { font-family: 'Syne', sans-serif; color: var(--white); font-size: clamp(1.6rem, 2.8vw, 2.4rem); max-width: 600px; }
    .cta-strip-actions { display: flex; gap: 12px; flex-shrink: 0; }
    .btn-cta-white {
      padding: 15px 32px; background: var(--white); color: var(--blue);
      font-size: .88rem; font-weight: 700; border-radius: 8px;
      text-decoration: none; white-space: nowrap;
      transition: box-shadow .2s, transform .15s;
    }
    .btn-cta-white:hover { box-shadow: 0 6px 24px rgba(0,0,0,.15); transform: translateY(-2px); }
    .btn-cta-outline {
      padding: 15px 32px; background: transparent;
      border: 2px solid rgba(255,255,255,.4);
      color: var(--white); font-size: .88rem; font-weight: 600;
      border-radius: 8px; text-decoration: none; white-space: nowrap;
      display: flex; align-items: center; gap: 8px;
      transition: border-color .2s, background .2s;
    }
    .btn-cta-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

    /* ── CONTACT ── */
    .contact { display: grid; grid-template-columns: 1fr 1fr; }
    .contact-info {
      background: var(--navy2); padding: 80px 60px; color: var(--white);
    }
    .contact-info h2 { color: var(--white); margin-bottom: 40px; }
    .contact-details { display: flex; flex-direction: column; gap: 28px; }
    .contact-item-label {
      font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
      color: rgba(255,255,255,.35); margin-bottom: 6px; font-weight: 600;
    }
    .contact-item-val { font-size: 1.05rem; color: var(--white); text-decoration: none; transition: color .2s; }
    a.contact-item-val:hover { color: var(--blue); }
    .contact-item-sub { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 4px; }
    .contact-regions { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
    .contact-region-link {
      font-size: .9rem; color: rgba(255,255,255,.85); text-decoration: none;
      transition: color .2s;
    }
    .contact-region-link:hover { color: var(--blue); }
    .contact-region-link strong { font-weight: 600; }
    .contact-guarantee {
      margin-top: 40px; padding: 20px;
      background: rgba(9,164,251,.1); border: 1px solid rgba(9,164,251,.2);
      border-radius: 10px;
    }
    .contact-guarantee p { font-size: .83rem; line-height: 1.65; color: rgba(255,255,255,.65); }
    .contact-guarantee strong { color: var(--blue); }
    .contact-form { background: var(--mist); padding: 80px 60px; }
    .form-title { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 32px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block; font-size: .72rem; font-weight: 600; letter-spacing: .1em;
      text-transform: uppercase; color: var(--text); margin-bottom: 8px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%; background: var(--white);
      border: 1.5px solid var(--border); border-radius: 8px;
      padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: .9rem;
      color: var(--navy); outline: none; appearance: none;
      transition: border-color .2s, box-shadow .2s;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(9,164,251,.12);
    }
    .form-group textarea { height: 110px; resize: none; }
    .form-submit {
      width: 100%; padding: 16px;
      background: var(--blue); color: var(--white);
      font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 700;
      border: none; border-radius: 8px; cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 16px rgba(9,164,251,.3);
    }
    .form-submit:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(9,164,251,.4); }
    .form-note { font-size: .75rem; color: var(--text-soft); margin-top: 10px; text-align: center; }
    .dc-hp {
      position: absolute; left: -9999px; width: 1px; height: 1px;
      overflow: hidden; opacity: 0; pointer-events: none;
    }
    .dc-recaptcha-wrap { margin-bottom: 16px; }
    .dc-recaptcha-wrap > div { min-height: 78px; }

    /* ── FOOTER ── */
    .footer-main {
      background: #0b0f16; padding: 60px 60px 40px;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    }
    .footer-brand img { height: 36px; margin-bottom: 16px; }
    .footer-brand-desc { font-size: .84rem; line-height: 1.75; color: rgba(255,255,255,.4); max-width: 260px; }
    .footer-reg {
      margin-top: 20px; font-size: .75rem; color: rgba(255,255,255,.25); line-height: 1.8;
    }
    .footer-col-title {
      font-size: .72rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: rgba(255,255,255,.35);
      margin-bottom: 18px;
    }
    .footer-col-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-col-links a {
      font-size: .84rem; color: rgba(255,255,255,.5); text-decoration: none;
      transition: color .2s;
    }
    .footer-col-links a:hover { color: var(--blue); }
    .footer-bottom {
      background: #07090d; padding: 18px 60px;
      display: flex; justify-content: space-between; align-items: center;
      border-top: 1px solid rgba(255,255,255,.04);
    }
    .footer-bottom-copy { font-size: .75rem; color: rgba(255,255,255,.25); }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { font-size: .75rem; color: rgba(255,255,255,.25); text-decoration: none; transition: color .2s; }
    .footer-bottom-links a:hover { color: var(--blue); }

    /* ── REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }
    .reveal-delay-5 { transition-delay: .5s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .compliance-main-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
      .compliance-section { padding-left: 32px !important; padding-right: 32px !important; }
      .nav-phone { display: none; }
      .topbar, nav, .hero { padding-left: 32px; padding-right: 32px; }
      .nav-links a { font-size: .78rem; padding: 8px 9px; }
      .nav-cta { padding: 10px 14px; font-size: .78rem; }
      .hero { grid-template-columns: 1fr; padding-top: 64px; }
      .hero-right { display: none; }
      .hero-left { padding-bottom: 60px; }
      .cert-bar, .clients, .whyus, .services, .coverage, .testimonials, .rule321, .process, .cta-strip { padding-left: 32px; padding-right: 32px; }
      .contact-info, .contact-form { padding: 56px 32px; }
      .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 32px; }
      .footer-bottom { padding: 16px 32px; }
      .whyus, .coverage, .rule321 { grid-template-columns: 1fr; gap: 48px; }
      .whyus-visual { margin-left: auto; margin-right: auto; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
      .process-steps::before { display: none; }
      .contact { grid-template-columns: 1fr; }
      .cta-strip { flex-direction: column; text-align: center; }
      .cta-strip-actions { justify-content: center; }
      .services-head { flex-direction: column; align-items: flex-start; gap: 20px; }
    }
    @media (max-width: 640px) {
      .compliance-section { padding: 48px 20px !important; }
      .compliance-cards-grid { grid-template-columns: 1fr !important; }
      .topbar { display: none; }
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .nav-phone { display: none; }
      section, .clients, .cert-bar { padding-left: 20px !important; padding-right: 20px !important; }
      .hero { padding-left: 20px; padding-right: 20px; padding-top: 48px; }
      .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr; padding: 36px 20px; }
      .footer-bottom { flex-direction: column; gap: 12px; padding: 16px 20px; }
      .form-row { grid-template-columns: 1fr; }
      .clients-logos { gap: 24px; }
      .hero-trust-row { flex-wrap: wrap; gap: 20px; }
    }
/* Moto CMS overrides for DataCare theme */
/* Moto/Bootstrap sets html { font-size: 10px } — mock-up uses 16px rem baseline */
html.datacare-theme { font-size: 16px !important; }
body.datacare-theme {
  background: var(--white, #fff);
  font-size: 16px !important;
  font-family: 'Inter', sans-serif;
  -webkit-text-size-adjust: 100%;
}
body.datacare-theme .page { max-width: none; padding: 0; margin: 0; }
body.datacare-theme #section-header,
body.datacare-theme #section-footer,
body.datacare-theme #section-content { padding: 0; margin: 0; max-width: none; }
body.datacare-theme #section-header .container-fluid,
body.datacare-theme #section-footer .container-fluid,
body.datacare-theme #section-content .container-fluid { padding: 0; max-width: none; width: 100%; }
body.datacare-theme #section-header .row,
body.datacare-theme #section-footer .row,
body.datacare-theme #section-content .row { margin: 0; }
body.datacare-theme #section-header .moto-cell,
body.datacare-theme #section-footer .moto-cell,
body.datacare-theme #section-content .moto-cell { padding: 0; float: none; width: 100%; max-width: none; }
body.datacare-theme .moto-widget-row { margin: 0; }
body.datacare-theme .row-fixed .container-fluid { max-width: none !important; }
body.datacare-theme .moto-container_width-fixed { max-width: none !important; }
body.datacare-theme .header,
body.datacare-theme .footer { background: transparent; border: none; }
body.datacare-theme .content { padding: 0; }
body.datacare-theme .moto-widget-embed { width: 100%; max-width: none; font-size: 16px; }
body.datacare-theme .moto-widget-embed > * { max-width: none; }
body.datacare-theme .dc-page { width: 100%; max-width: none; }
body.datacare-theme table.dc-article-table {
  width: 700px !important;
  max-width: 700px !important;
  table-layout: fixed !important;
  border-collapse: collapse;
}
body.datacare-theme table.dc-article-table td {
  border: none !important;
  vertical-align: top;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
body.datacare-theme table.dc-article-table td.dc-article-table-col-left {
  border-right: 1px solid #d8dee6 !important;
}
body.datacare-theme .moto-widget-blog-post_content table.dc-article-table,
body.datacare-theme [data-widget="blog.post_content"] table.dc-article-table {
  width: 700px !important;
  max-width: 700px !important;
}
body.datacare-theme .dc-page-article .article-single-main #section-content,
body.datacare-theme .dc-page-article .article-single-main [data-widget="blog.post_content"] {
  max-width: 700px !important;
  width: 100% !important;
}
body.datacare-theme .dc-page-article .article-single-main #section-content .container-fluid,
body.datacare-theme .dc-page-article .article-single-main [data-widget="blog.post_content"] .container-fluid {
  max-width: 700px !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.dc-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
@media (max-width: 960px) {
  .dc-nav-toggle { display: flex; flex-direction: column; gap: 5px; margin-left: auto; }
  .dc-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }
  nav.dc-nav-open .nav-links { display: flex !important; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 16px 24px 24px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.08); z-index: 199; }
}
