  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { overflow-x: hidden; width: 100%; scroll-behavior: smooth; }
  body { overflow-x: hidden; width: 100%; min-height: 100vh; }

  :root {
    --c-primary: #0F2C4F;
    --c-primary-2: #163963;
    --c-primary-deep: #081E38;
    --c-action: #F77F00;
    --c-action-hover: #E36C00;
    --c-cyan: #06B6D4;
    --c-success: #16A34A;
    --c-text: #0F172A;
    --c-text-2: #334155;
    --c-muted: #5A6878;
    --c-border: #E2E8F0;
    --c-border-soft: #EEF2F6;
    --c-bg: #FFFFFF;
    --c-bg-alt: #F6F9FC;
    --c-bg-warm: #FFF6EB;
    --c-bg-cyan: #ECFAFC;
    --c-yellow: #FFB400;
    --f-h: 'Plus Jakarta Sans', system-ui, sans-serif;
    --f-b: 'Inter', system-ui, sans-serif;
    --r-xs: 6px;
    --r-sm: 10px;
    --r: 14px;
    --r-lg: 20px;
    --sh-sm: 0 1px 3px rgba(15,44,79,0.06);
    --sh: 0 6px 20px rgba(15,44,79,0.08);
    --sh-md: 0 10px 28px rgba(15,44,79,0.10);
    --sh-action: 0 6px 18px rgba(247,127,0,0.32);
    --tr: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    --hh: 64px;
  }

  body {
    font-family: var(--f-b);
    color: var(--c-text);
    background: var(--c-bg);
    font-size: 15.5px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img { max-width: 100%; height: auto; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  svg { display: inline-block; vertical-align: middle; }

  /* TYPO */
  h1, h2, h3, h4 { font-family: var(--f-h); color: var(--c-primary); line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
  h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; line-height: 1.08; }
  h2 { font-size: clamp(1.6rem, 3.1vw, 2.3rem); }
  h3 { font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
  h4 { font-size: 0.92rem; font-weight: 600; }
  p { color: var(--c-muted); font-size: 0.96rem; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 700; color: var(--c-action); font-family: var(--f-h);
  }
  .eyebrow.center { justify-content: center; }
  .eyebrow.light { color: #FFB475; }
  .eyebrow.cyan { color: var(--c-cyan); }

  /* LAYOUT */
  .container { max-width: 1220px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); width: 100%; }
  .sec { padding: clamp(40px, 5.5vw, 70px) 0; }
  .sec-sm { padding: clamp(28px, 4vw, 50px) 0; }

  /* RESET .page padding so it doesn't inherit any section default */
  .page { display: block; padding: 0; }
  .page.active { display: block; animation: fadeP 0.35s cubic-bezier(0.22,1,0.36,1); }
  @keyframes fadeP { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

  /* BUTTONS */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 46px; padding: 12px 22px; border-radius: var(--r-sm);
    font-weight: 700; font-size: 0.92rem; transition: var(--tr); cursor: pointer;
    text-align: center; border: 2px solid transparent; font-family: var(--f-b); line-height: 1.1;
  }
  .btn svg { width: 16px; height: 16px; }
  .btn-action { background: var(--c-action); color: #fff; box-shadow: var(--sh-action); }
  .btn-action:hover { background: var(--c-action-hover); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(247,127,0,0.42); }
  .btn-primary { background: var(--c-primary); color: #fff; }
  .btn-primary:hover { background: var(--c-primary-2); transform: translateY(-2px); box-shadow: var(--sh-md); }
  .btn-outline { background: transparent; color: var(--c-primary); border-color: var(--c-border); }
  .btn-outline:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); transform: translateY(-2px); }
  .btn-wa { background: #25D366; color: #fff; box-shadow: 0 6px 16px rgba(37,211,102,0.30); }
  .btn-wa:hover { background: #1FB95C; transform: translateY(-2px); }
  .btn-block { width: 100%; }
  .btn-lg { min-height: 52px; padding: 14px 28px; font-size: 0.98rem; }
  .btn-link { display: inline-flex; align-items: center; gap: 6px; color: var(--c-cyan); font-weight: 600; font-size: 0.88rem; transition: var(--tr); }
  .btn-link:hover { gap: 10px; color: var(--c-action); }
  .btn-link svg { width: 14px; height: 14px; }

  /* ICON HELPER */
  .ico { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* HEADER */
  .hdr {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--hh); z-index: 1000;
    background: #fff; border-bottom: 1px solid var(--c-border-soft);
    transition: box-shadow 0.25s ease, height 0.25s ease;
  }
  .hdr.scrolled { box-shadow: 0 4px 18px rgba(15,44,79,0.06); }
  .hdr__in {
    max-width: 1220px; margin: 0 auto; height: 100%;
    padding: 0 clamp(16px, 4vw, 48px);
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
  }
  .logo {
    display: inline-flex; align-items: center; position: relative;
    padding-left: 14px;
    color: var(--c-primary); font-family: var(--f-h); font-weight: 800;
    transition: var(--tr);
  }
  .logo::before {
    content: ''; position: absolute; left: 0; top: 4px; bottom: 4px;
    width: 3px; border-radius: 2px;
    background: linear-gradient(to bottom, var(--c-action) 0%, var(--c-action) 60%, var(--c-cyan) 60%, var(--c-cyan) 100%);
  }
  .logo:hover::before { transform: scaleY(1.05); }
  .logo__txt { line-height: 1; display: flex; flex-direction: column; gap: 4px; }
  .logo__txt strong { font-size: 1rem; letter-spacing: -0.01em; color: var(--c-primary); font-weight: 800; }
  .logo__txt span { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-action); font-weight: 700; }

  .nav { display: flex; align-items: center; gap: 2px; }
  .nav a {
    padding: 8px 14px; font-size: 0.9rem; font-weight: 600;
    color: var(--c-text); transition: color 0.2s; position: relative;
  }
  .nav a::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px;
    height: 2px; background: var(--c-action); transform: scaleX(0);
    transform-origin: center; transition: transform 0.22s ease; border-radius: 2px;
  }
  .nav a:hover, .nav a.active { color: var(--c-action); }
  .nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

  .hdr__cta { display: flex; align-items: center; gap: 10px; }
  .hdr__phone {
    display: flex; align-items: center; gap: 9px;
    padding: 7px 14px 7px 8px; border-radius: 9px;
    background: var(--c-bg-warm); color: var(--c-primary); transition: var(--tr);
  }
  .hdr__phone:hover { background: var(--c-action); color: #fff; transform: translateY(-1px); }
  .hdr__phone:hover .hdr__phone-ic { background: rgba(255,255,255,0.22); color: #fff; }
  .hdr__phone-ic {
    width: 30px; height: 30px; border-radius: 7px; background: var(--c-action); color: #fff;
    display: flex; align-items: center; justify-content: center; transition: var(--tr); flex-shrink: 0;
  }
  .hdr__phone-num { display: flex; flex-direction: column; line-height: 1.1; }
  .hdr__phone-num span { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }
  .hdr__phone-num strong { font-family: var(--f-h); font-size: 0.95rem; font-weight: 700; }

  .nav-tg {
    display: none; width: 42px; height: 42px; border-radius: 10px;
    background: var(--c-primary); color: #fff;
    align-items: center; justify-content: center;
  }

  /* MOBILE OVERLAY */
  .m-ov {
    position: fixed; inset: 0; background: rgba(15,44,79,0.97); z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .m-ov.open { opacity: 1; pointer-events: auto; }
  .m-ov nav { display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .m-ov nav a { color: #fff; font-family: var(--f-h); font-size: 1.4rem; font-weight: 700; line-height: 52px; transition: color 0.2s; }
  .m-ov nav a:hover, .m-ov nav a.active { color: var(--c-action); }
  .m-cls {
    position: fixed; top: 14px; right: 14px; width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.16); color: #ffffff; border: none;
    font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  }
  .m-cls:hover { background: rgba(255,255,255,0.28); }
  .m-ov__cta { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
  .m-ov__cta a {
    background: var(--c-action); color: #fff; padding: 13px 26px; border-radius: 10px;
    font-weight: 700; font-family: var(--f-h); display: inline-flex; align-items: center; gap: 8px;
  }
  .m-ov__cta a.wa { background: #25D366; }

  /* HERO */
  .hero {
    width: 100%; min-height: calc(100vh - var(--hh));
    background: linear-gradient(135deg, #0F2C4F 0%, #163963 50%, #0F2C4F 100%);
    /* Background image is injected inline by the Hero widget (Media Library URL). */
    background-size: cover; background-position: center;
    position: relative; overflow: hidden; display: flex; align-items: center;
    margin-top: 0;
  }
  .hero::after {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(6,182,212,0.14) 0%, transparent 50%),
      radial-gradient(circle at 10% 90%, rgba(247,127,0,0.10) 0%, transparent 50%);
    pointer-events: none;
  }
  .hero .container { position: relative; z-index: 2; padding-top: calc(var(--hh) + 28px); padding-bottom: 40px; }
  .hero__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
  .hero__c { color: #fff; max-width: 660px; }
  .hero__live {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: 100px;
    background: rgba(22,163,74,0.18); border: 1px solid rgba(22,163,74,0.4);
    color: #5EE49B; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
  }
  .live-d { width: 7px; height: 7px; border-radius: 50%; background: #4CDB85; animation: lp 1.6s infinite; }
  @keyframes lp {
    0% { box-shadow: 0 0 0 0 rgba(76,219,133,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(76,219,133,0); }
    100% { box-shadow: 0 0 0 0 rgba(76,219,133,0); }
  }
  .hero h1 { color: #fff; margin-bottom: 16px; }
  .hero h1 .hl { color: var(--c-cyan); font-style: italic; font-weight: 600; }
  .hero__sub { color: rgba(255,255,255,0.82); font-size: clamp(0.98rem, 1.2vw, 1.08rem); line-height: 1.6; margin-bottom: 20px; max-width: 560px; }
  .hero__bf { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; margin-bottom: 24px; max-width: 560px; }
  .hero__bf div { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.92); font-weight: 500; font-size: 0.92rem; }
  .hero__bf div span {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(76,219,133,0.18); color: #5EE49B;
    display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
  .hero__cta .btn-action { font-size: 1rem; min-height: 52px; padding: 14px 26px; }
  .hero__rt { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.14); flex-wrap: wrap; }
  .hero__rt-stars { display: flex; gap: 1px; color: #FFC233; }
  .hero__rt-tx { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; }
  .hero__rt-tx strong { color: #fff; }
  .hero__rt-lg { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

  /* HERO FORM */
  /* HERO LEAD FORM */
  .lf {
    background: #fff; border-radius: 22px; padding: 28px 26px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.32), 0 8px 22px rgba(0,0,0,0.16);
    position: relative; border: 1px solid rgba(255,255,255,0.55);
    width: 100%; max-width: 460px; justify-self: end;
  }
  .lf__t {
    font-family: var(--f-h); font-weight: 800; font-size: 1.55rem;
    line-height: 1.1; color: var(--c-text); margin-bottom: 8px; letter-spacing: -0.015em;
  }
  .lf__s {
    font-size: 0.95rem; color: #6B7280; margin-bottom: 22px; line-height: 1.4;
  }
  .lf__s mark {
    background: linear-gradient(180deg, transparent 55%, #BBF7D0 55%);
    color: #15803D; font-weight: 700; padding: 0 2px; border-radius: 2px;
  }
  .lf__fg { margin-bottom: 12px; position: relative; }
  .lf input, .lf textarea {
    width: 100%; padding: 16px 18px; border: 1.5px solid #E5E7EB; border-radius: 12px;
    font-family: var(--f-b); font-size: 1rem; color: var(--c-text);
    background: #F9FAFB; transition: var(--tr); -webkit-appearance: none; appearance: none;
  }
  .lf input::placeholder, .lf textarea::placeholder { color: #9CA3AF; font-weight: 400; }
  .lf input:focus, .lf textarea:focus {
    outline: none; border-color: var(--c-success); background: #fff;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
  }
  .lf textarea { resize: vertical; min-height: 92px; font-family: var(--f-b); }

  .lf__phone { display: flex; gap: 0; }
  .lf__phone .lf__pfx {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 0 14px; border: 1.5px solid #E5E7EB; border-right: none;
    border-radius: 12px 0 0 12px; background: #F9FAFB; flex-shrink: 0;
    color: #374151; font-weight: 600; font-size: 0.95rem; cursor: default;
  }
  .lf__pfx svg:last-child { color: #9CA3AF; }
  .lf__flag {
    display: inline-flex; border-radius: 3px; overflow: hidden;
    width: 22px; height: 14px; box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
  }
  .lf__pfx-tx { font-family: var(--f-b); }
  .lf__phone input { border-radius: 0 12px 12px 0; }

  .lf__sb {
    width: 100%; padding: 17px 20px; border: none; cursor: pointer;
    background: linear-gradient(180deg, #4ADE80 0%, #22C55E 50%, #16A34A 100%);
    color: #fff; font-family: var(--f-h); font-weight: 700; font-size: 1.05rem;
    border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 12px 26px rgba(34,197,94,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: var(--tr); margin: 8px 0 16px;
  }
  .lf__sb:hover { transform: translateY(-1px); box-shadow: 0 16px 32px rgba(34,197,94,0.42), inset 0 1px 0 rgba(255,255,255,0.3); }
  .lf__sb:active { transform: translateY(0); }
  .lf__sb svg { transition: var(--tr); }
  .lf__sb:hover svg { transform: translate(2px,-2px); }

  .lf__cta { display: grid; grid-template-columns: 1fr 1.2fr; gap: 10px; }
  .lf__cta-a, .lf__cta-w {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 12px; border-radius: 12px; font-weight: 700; font-size: 0.95rem;
    text-decoration: none; transition: var(--tr); border: 1.5px solid transparent;
  }
  .lf__cta-a {
    background: #F3F4F6; color: var(--c-text); border-color: #E5E7EB;
  }
  .lf__cta-a:hover { background: #E5E7EB; }
  .lf__cta-w {
    background: linear-gradient(180deg, #4ADE80 0%, #22C55E 100%);
    color: #fff; box-shadow: 0 6px 14px rgba(34,197,94,0.28);
  }
  .lf__cta-w:hover { transform: translateY(-1px); box-shadow: 0 10px 18px rgba(34,197,94,0.36); }
  .lf__status {
    margin-top: 12px; padding: 10px 14px; border-radius: 10px;
    font-size: 0.86rem; font-weight: 600; text-align: center;
  }

  /* TRUST BAR (compact) */
  .tb {
    background: var(--c-bg-alt);
    padding: 22px 0;
    border-bottom: 1px solid var(--c-border-soft);
  }
  .tb__in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: center; }
  .tb-i { display: flex; align-items: center; gap: 12px; }
  .tb-i__ic {
    width: 40px; height: 40px; border-radius: 10px; background: #fff; color: var(--c-action);
    display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-sm); flex-shrink: 0;
  }
  .tb-i strong { display: block; font-family: var(--f-h); color: var(--c-primary); font-size: 1rem; font-weight: 700; line-height: 1.2; }
  .tb-i span { color: var(--c-muted); font-size: 0.8rem; line-height: 1.3; display: block; }

  /* SECTION HEAD */
  .sh { text-align: center; max-width: 720px; margin: 0 auto 32px; }
  .sh h2 { margin: 10px 0 12px; }
  .sh p { font-size: 0.98rem; line-height: 1.6; }

  .bg-alt { background: var(--c-bg-alt); }
  .bg-warm { background: var(--c-bg-warm); }
  .bg-d { background: var(--c-primary); color: #fff; position: relative; overflow: hidden; }
  .bg-d h2, .bg-d h3, .bg-d h4 { color: #fff; }
  .bg-d p { color: rgba(255,255,255,0.78); }
  .bg-d::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 85% 20%, rgba(6,182,212,0.10) 0%, transparent 50%),
      radial-gradient(circle at 15% 85%, rgba(247,127,0,0.08) 0%, transparent 50%);
    pointer-events: none;
  }

  /* PROBLEM/PROMISE compact */
  .pp { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .pp-c { background: #fff; border-radius: var(--r); padding: 26px; border: 1px solid var(--c-border-soft); }
  .pp-c.prob { border-top: 4px solid #E14C4C; }
  .pp-c.sol { border-top: 4px solid var(--c-success); background: linear-gradient(180deg, #F0FDF4 0%, #fff 100%); }
  .pp-c h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 1.1rem; }
  .pp-c.prob h3 { color: #E14C4C; }
  .pp-c.sol h3 { color: var(--c-success); }
  .pp-c ul { list-style: none; }
  .pp-c ul li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; font-size: 0.92rem; color: var(--c-text-2); border-bottom: 1px solid rgba(0,0,0,0.04); }
  .pp-c ul li:last-child { border-bottom: none; }
  .pp-c ul li svg { flex-shrink: 0; margin-top: 3px; }
  .pp-c.prob ul li svg { color: #E14C4C; }
  .pp-c.sol ul li svg { color: var(--c-success); }

  /* SERVICES (compact 4) */
  .svc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .svc-c {
    background: #fff; border-radius: var(--r); overflow: hidden;
    border: 1px solid var(--c-border-soft); transition: var(--tr);
    display: flex; flex-direction: column;
  }
  .svc-c:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
  .svc-c__m { height: 140px; background-size: cover; background-position: center; position: relative; }
  .svc-c__m::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,44,79,0) 30%, rgba(15,44,79,0.55) 100%); }
  .svc-c__n {
    position: absolute; top: 12px; left: 12px;
    width: 32px; height: 32px; border-radius: 8px; background: var(--c-action); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-h); font-weight: 700; font-size: 0.85rem;
    z-index: 1; box-shadow: 0 4px 10px rgba(247,127,0,0.4);
  }
  .svc-c__b { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
  .svc-c__ic {
    width: 38px; height: 38px; border-radius: 9px;
    background: var(--c-bg-warm); color: var(--c-action);
    display: flex; align-items: center; justify-content: center;
    margin: -32px 0 12px; border: 3px solid #fff; box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    position: relative; z-index: 2;
  }
  .svc-c h3 { margin-bottom: 8px; font-size: 1.02rem; line-height: 1.25; }
  .svc-c p { font-size: 0.86rem; line-height: 1.55; margin-bottom: 14px; flex: 1; }
  .svc-c__f { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--c-border-soft); }
  .svc-c__pr { font-size: 0.72rem; color: var(--c-muted); font-weight: 500; line-height: 1.2; }
  .svc-c__pr strong { display: block; color: var(--c-action); font-family: var(--f-h); font-size: 0.88rem; font-weight: 700; }

  /* STEPS HORIZONTAL */
  .stp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .stp-c {
    background: #fff; border-radius: var(--r); padding: 22px 20px;
    text-align: center; border: 1px solid var(--c-border-soft); transition: var(--tr);
  }
  .stp-c:hover { transform: translateY(-3px); box-shadow: var(--sh); }
  .stp-c__n {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--c-action) 0%, #FF9933 100%); color: #fff;
    font-family: var(--f-h); font-weight: 800; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px; box-shadow: 0 6px 14px rgba(247,127,0,0.32);
  }
  .stp-c__ic {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--c-bg-cyan); color: var(--c-cyan);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
  }
  .stp-c h3 { font-size: 0.98rem; margin-bottom: 6px; }
  .stp-c p { font-size: 0.84rem; line-height: 1.5; }

  /* BENEFITS (compact 6 in 3x2) */
  .bn { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .bn-c {
    background: #fff; padding: 22px 20px; border-radius: var(--r);
    border: 1px solid var(--c-border-soft); transition: var(--tr);
    display: flex; gap: 14px; align-items: flex-start;
  }
  .bn-c:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: transparent; }
  .bn-c__ic {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--c-bg-warm); color: var(--c-action);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .bn-c h3 { font-size: 0.98rem; margin-bottom: 5px; line-height: 1.3; }
  .bn-c p { font-size: 0.86rem; line-height: 1.55; }

  /* GUARANTEES dark band */
  .gu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .gu-c { text-align: center; padding: 20px 18px; }
  .gu-c__sh {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(247,127,0,0.18); color: var(--c-action);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; border: 2px dashed rgba(247,127,0,0.4);
  }
  .gu-c h3 { color: #fff; margin-bottom: 8px; font-size: 1.08rem; }
  .gu-c p { color: rgba(255,255,255,0.78); font-size: 0.9rem; line-height: 1.55; }

  /* TESTIMONIALS compact row */
  .ts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .ts-c {
    background: #fff; padding: 24px 22px; border-radius: var(--r);
    border: 1px solid var(--c-border-soft); transition: var(--tr);
  }
  .ts-c:hover { transform: translateY(-3px); box-shadow: var(--sh); }
  .ts-c__h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
  .ts-c__st { display: flex; gap: 1px; color: var(--c-yellow); }
  .ts-c__vr { display: inline-flex; align-items: center; gap: 4px; color: var(--c-success); font-size: 0.7rem; font-weight: 600; }
  .ts-c__tx { color: var(--c-text); font-size: 0.92rem; line-height: 1.6; margin-bottom: 16px; }
  .ts-c__a { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--c-border-soft); }
  .ts-c__av {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-2)); color: var(--c-action);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-h); font-weight: 700; font-size: 0.85rem;
  }
  .ts-c__a strong { display: block; color: var(--c-primary); font-weight: 700; font-size: 0.9rem; }
  .ts-c__a span { color: var(--c-muted); font-size: 0.78rem; }

  /* OFFER */
  .of {
    background: linear-gradient(135deg, var(--c-action) 0%, #FF9F40 100%);
    border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px);
    color: #fff; display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 28px; align-items: center; position: relative; overflow: hidden;
  }
  .of::before { content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%); }
  .of::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%); }
  .of > * { position: relative; z-index: 1; }
  .of__bd { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 100px; background: rgba(255,255,255,0.22); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
  .of h2 { color: #fff; margin-bottom: 10px; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
  .of p { color: rgba(255,255,255,0.94); font-size: 0.98rem; }
  .of__pr { background: rgba(0,0,0,0.18); border-radius: var(--r); padding: 22px; text-align: center; border: 1.5px dashed rgba(255,255,255,0.35); }
  .of__pr-l { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); font-weight: 600; margin-bottom: 6px; }
  .of__pr-old { text-decoration: line-through; color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-right: 8px; }
  .of__pr-new { font-family: var(--f-h); font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; color: #fff; line-height: 1; display: block; margin: 4px 0 8px; }
  .of__pr-n { color: rgba(255,255,255,0.85); font-size: 0.78rem; margin-bottom: 14px; }
  .of__pr .btn { width: 100%; background: #fff; color: var(--c-action); font-weight: 700; border-color: #fff; }
  .of__pr .btn:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

  /* PARTNERS COMPACT STRIP */
  .prt-st {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 22px 28px; background: #fff; border-radius: var(--r-lg);
    border: 1px solid var(--c-border); flex-wrap: wrap;
  }
  .prt-st__h .eyebrow { display: inline-block; margin-bottom: 4px; }
  .prt-st__h h3 { font-family: var(--f-h); font-size: 1.05rem; color: var(--c-primary); line-height: 1.2; }
  .prt-st__l { display: flex; flex-wrap: wrap; gap: 8px; }
  .prt-st__t {
    background: linear-gradient(135deg, #F8FAFC, #EFF4F9);
    border: 1px solid var(--c-border); color: var(--c-primary);
    font-weight: 700; font-size: 0.85rem; padding: 8px 14px; border-radius: 100px;
    transition: var(--tr); cursor: default;
  }
  .prt-st__t:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); transform: translateY(-1px); }

  /* PARTNERS (used on Despre noi) */
  .prt {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 18px;
  }
  .prt-c {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    background: #fff; border: 1.5px solid var(--c-border); border-radius: var(--r);
    padding: 22px 16px; transition: var(--tr); position: relative; overflow: hidden;
  }
  .prt-c::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--c-action), var(--c-cyan)); transform: scaleX(0); transform-origin: left;
    transition: var(--tr);
  }
  .prt-c:hover { transform: translateY(-4px); border-color: var(--c-primary); box-shadow: 0 12px 30px rgba(15,44,79,0.12); }
  .prt-c:hover::before { transform: scaleX(1); }
  .prt-c__ic {
    width: 52px; height: 52px; border-radius: 12px;
    background: linear-gradient(135deg, var(--c-primary), #1a4474);
    color: #fff; display: grid; place-items: center; margin-bottom: 12px;
  }
  .prt-c strong { font-family: var(--f-h); font-size: 1.05rem; color: var(--c-primary); margin-bottom: 4px; line-height: 1.15; }
  .prt-c span { font-size: 0.74rem; color: var(--c-action); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
  .prt-n { text-align: center; color: var(--c-muted); font-size: 0.92rem; max-width: 720px; margin: 0 auto; }

  /* TIKTOK BANNER */
  .tt-bn {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #25F4EE 200%);
    color: #fff; padding: 22px 26px; border-radius: var(--r-lg);
    text-decoration: none; margin-bottom: 0; transition: var(--tr);
    position: relative; overflow: hidden; border: 1px solid rgba(255,0,80,0.3);
  }
  .tt-bn::before {
    content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px;
    border-radius: 50%; background: radial-gradient(circle, rgba(254,44,85,0.45) 0%, transparent 70%);
  }
  .tt-bn::after {
    content: ''; position: absolute; bottom: -30px; left: 30%; width: 120px; height: 120px;
    border-radius: 50%; background: radial-gradient(circle, rgba(37,244,238,0.3) 0%, transparent 70%);
  }
  .tt-bn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(254,44,85,0.3); }
  .tt-bn__l { display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; flex: 1; min-width: 0; }
  .tt-bn__ic {
    width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
    background: linear-gradient(135deg, #FE2C55 0%, #25F4EE 100%);
    display: grid; place-items: center; color: #fff;
    box-shadow: 0 8px 20px rgba(254,44,85,0.4);
  }
  .tt-bn__l strong { display: block; font-family: var(--f-h); font-size: 1.1rem; margin-bottom: 4px; }
  .tt-bn__l span { font-size: 0.85rem; color: rgba(255,255,255,0.78); line-height: 1.4; }
  .tt-bn__cta {
    background: #fff; color: #000; padding: 11px 18px; border-radius: 100px;
    font-weight: 700; font-size: 0.86rem; display: inline-flex; align-items: center; gap: 6px;
    flex-shrink: 0; position: relative; z-index: 1;
  }
  .tt-bn:hover .tt-bn__cta svg { transform: translateX(3px); }
  .tt-bn__cta svg { transition: var(--tr); }

  /* GALLERY */
  .gf { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: 24px; }
  .gf-b { padding: 8px 18px; border-radius: 100px; background: #fff; color: var(--c-muted); font-weight: 600; font-size: 0.84rem; border: 1.5px solid var(--c-border); transition: var(--tr); font-family: var(--f-b); }
  .gf-b:hover { border-color: var(--c-primary); color: var(--c-primary); }
  .gf-b.active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
  .gl { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; }
  .gl-i { position: relative; overflow: hidden; border-radius: var(--r); cursor: pointer; }
  .gl-i.tall { grid-row: span 2; }
  .gl-i.wide { grid-column: span 2; }
  .gl-i img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.33,1,0.68,1); }
  .gl-i:hover img { transform: scale(1.06); }
  .gl-i__ov {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,30,56,0) 35%, rgba(8,30,56,0.55) 65%, rgba(8,30,56,0.96) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 18px; color: #fff;
  }
  .gl-i__cat {
    display: inline-block; width: max-content;
    padding: 4px 10px; border-radius: 6px; background: var(--c-action); color: #fff;
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(247,127,0,0.32);
  }
  .gl-i__t {
    font-family: var(--f-h); font-size: 1rem; font-weight: 700; line-height: 1.25;
    color: #fff !important; /* override global h3 navy color */
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }

  /* FAQ */
  .fq { max-width: 800px; margin: 0 auto; }
  .fq-i { background: #fff; border: 1px solid var(--c-border-soft); border-radius: var(--r); margin-bottom: 10px; transition: var(--tr); }
  .fq-i:hover { border-color: var(--c-action); }
  .fq-q {
    width: 100%; text-align: left; padding: 18px 22px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-family: var(--f-h); font-weight: 700; color: var(--c-primary); font-size: 0.98rem; line-height: 1.4;
  }
  .fq-q__ic {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--c-bg-warm); color: var(--c-action);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--tr);
  }
  .fq-q__ic svg { transition: transform 0.3s; }
  .fq-i.open .fq-q__ic { background: var(--c-action); color: #fff; transform: rotate(45deg); }
  .fq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .fq-a__in { padding: 0 22px 18px; color: var(--c-muted); line-height: 1.65; font-size: 0.92rem; }

  /* FINAL CTA */
  .ctaf {
    background: var(--c-primary); color: #fff; border-radius: var(--r-lg);
    padding: clamp(30px, 4vw, 50px);
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px;
    align-items: center; position: relative; overflow: hidden;
  }
  .ctaf::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 80% 30%, rgba(6,182,212,0.16) 0%, transparent 60%),
      radial-gradient(circle at 20% 80%, rgba(247,127,0,0.14) 0%, transparent 60%);
  }
  .ctaf > * { position: relative; z-index: 1; }
  .ctaf h2 { color: #fff; margin-bottom: 12px; }
  .ctaf > div p { color: rgba(255,255,255,0.85); font-size: 0.98rem; margin-bottom: 18px; }
  .ctaf__l { list-style: none; margin-top: 14px; }
  .ctaf__l li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.92); padding: 4px 0; font-weight: 500; font-size: 0.92rem; }
  .ctaf__l li svg { color: #5EE49B; flex-shrink: 0; }
  .ctaf__ph { display: flex; flex-direction: column; gap: 10px; }
  .pcard {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
    padding: 14px 16px; border-radius: var(--r); color: #fff; transition: var(--tr);
  }
  .pcard:hover { background: var(--c-action); border-color: var(--c-action); transform: translateY(-2px); }
  .pcard__ic {
    width: 40px; height: 40px; border-radius: 50%; background: var(--c-action); color: #fff;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .pcard:hover .pcard__ic { background: #fff; color: var(--c-action); }
  .pcard strong { display: block; font-family: var(--f-h); font-size: 1.06rem; font-weight: 700; line-height: 1.1; }
  .pcard span { color: rgba(255,255,255,0.7); font-size: 0.74rem; }
  .pcard:hover span { color: rgba(255,255,255,0.9); }

  /* PAGE BANNER */
  .pb {
    width: 100%; min-height: 28vh;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-2) 50%, var(--c-primary-deep) 100%);
    position: relative; overflow: hidden; display: flex; align-items: center;
  }
  /* Banner watermark image is injected inline by the Page Banner widget. */
  .pb.wm::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.28; }
  .pb::after {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(6,182,212,0.16) 0%, transparent 50%),
      radial-gradient(circle at 10% 90%, rgba(247,127,0,0.14) 0%, transparent 50%);
  }
  .pb .container { position: relative; z-index: 2; padding-top: calc(var(--hh) + 22px); padding-bottom: 26px; text-align: center; }
  .pb h1 { color: #fff; margin: 10px 0 10px; font-size: clamp(1.9rem, 4vw, 2.8rem); }
  .pb p { color: rgba(255,255,255,0.78); max-width: 640px; margin: 0 auto; font-size: 0.98rem; }
  .bc { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: rgba(255,255,255,0.65); font-size: 0.82rem; }
  .bc a { color: var(--c-cyan); }

  /* SPLIT */
  .sp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
  .sp.rv > .sp__m { order: 2; }
  .sp { align-items: stretch; }
  .sp__m {
    border-radius: var(--r-lg); overflow: hidden; position: relative;
    box-shadow: var(--sh-md); align-self: center;
    display: flex;
  }
  .sp__m img { width: 100%; height: auto; max-height: 540px; object-fit: cover; transition: transform 0.6s; display: block; }
  .sp:hover .sp__m img { transform: scale(1.04); }
  .sp__bd {
    position: absolute; top: 18px; left: 18px;
    padding: 7px 12px; border-radius: 100px;
    background: rgba(15,44,79,0.78); backdrop-filter: blur(10px);
    color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .sp__n {
    position: absolute; bottom: 0; right: 0;
    padding: 12px 20px; background: var(--c-action); color: #fff;
    font-family: var(--f-h); font-size: 1.4rem; font-weight: 700;
    border-top-left-radius: var(--r-lg);
  }
  .sp__c h2 { margin: 10px 0 14px; }
  .sp__c > p { margin-bottom: 18px; line-height: 1.65; font-size: 0.98rem; }
  .sp__l { list-style: none; margin-bottom: 22px; }
  .sp__l li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--c-border-soft); }
  .sp__l li:last-child { border-bottom: none; }
  .sp__l li > svg, .sp__l li > .ico-bg {
    flex-shrink: 0; margin-top: 2px;
    background: var(--c-bg-warm); color: var(--c-action);
    border-radius: 6px; padding: 5px; width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .sp__l strong { display: block; color: var(--c-primary); font-weight: 700; margin-bottom: 2px; font-size: 0.94rem; }
  .sp__l span { color: var(--c-muted); font-size: 0.86rem; line-height: 1.5; }

  /* STORY */
  .st { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
  .st__m { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
  .st__m img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
  .st__bd {
    position: absolute; bottom: 22px; left: 22px;
    background: var(--c-action); color: #fff;
    padding: 14px 18px; border-radius: var(--r); box-shadow: var(--sh-action);
  }
  .st__bd strong { display: block; font-family: var(--f-h); font-size: 1.7rem; line-height: 1; font-weight: 800; }
  .st__bd span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; font-weight: 600; }

  /* CONTACT */
  .cc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 40px; }
  .cc-c {
    background: #fff; padding: 22px 18px; border-radius: var(--r);
    border: 1px solid var(--c-border-soft); text-align: center; transition: var(--tr);
  }
  .cc-c:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--c-action); }
  .cc-c__ic {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--c-bg-warm); color: var(--c-action);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
  }
  .cc-c h4 { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 6px; font-weight: 700; }
  .cc-c a { color: var(--c-primary); font-family: var(--f-h); font-weight: 700; font-size: 0.98rem; line-height: 1.3; }
  .cc-c a:hover { color: var(--c-action); }

  .csp { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
  .cf {
    background: #fff; padding: 28px; border-radius: var(--r-lg);
    border: 1px solid var(--c-border-soft); box-shadow: var(--sh-sm);
  }
  .cf h3 { margin-bottom: 4px; font-size: 1.25rem; }
  .cf > p { margin-bottom: 18px; font-size: 0.92rem; }
  .fg { margin-bottom: 12px; }
  .fr { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--c-primary); margin-bottom: 5px; }
  .cf input, .cf textarea, .cf .csw select {
    border: 1.5px solid var(--c-border); border-radius: var(--r-sm);
    padding: 11px 13px; width: 100%; font-family: var(--f-b); font-size: 0.92rem;
    color: var(--c-text); background: #fff; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  }
  .cf textarea { resize: vertical; min-height: 100px; line-height: 1.55; }
  .cf input:focus, .cf textarea:focus, .cf .csw select:focus { border-color: var(--c-action); box-shadow: 0 0 0 3px rgba(247,127,0,0.16); }
  .csw { position: relative; }
  .csw select { appearance: none; -webkit-appearance: none; -moz-appearance: none; cursor: pointer; padding-right: 40px; }
  .csw::after {
    content: ''; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent;
    border-top: 6px solid var(--c-primary); pointer-events: none;
  }
  .ck { display: flex; gap: 8px; align-items: flex-start; font-size: 0.82rem; color: var(--c-muted); margin: 4px 0 14px; }
  .ck input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--c-action); }
  .ck a { color: var(--c-action); font-weight: 600; }

  .mp { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--c-border-soft); background: #fff; display: flex; flex-direction: column; }
  .mp iframe { width: 100%; flex: 1; min-height: 320px; border: 0; display: block; }
  .mp__f { padding: 18px 22px; border-top: 1px solid var(--c-border-soft); display: flex; align-items: center; gap: 12px; }
  .mp__f svg { color: var(--c-action); flex-shrink: 0; }
  .mp__f strong { display: block; color: var(--c-primary); font-weight: 700; font-size: 0.95rem; }
  .mp__f span { color: var(--c-muted); font-size: 0.84rem; }

  /* CTA STRIP */
  .cstr {
    background: var(--c-primary); color: #fff; border-radius: var(--r-lg);
    padding: 28px 32px; display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap; position: relative; overflow: hidden;
  }
  .cstr::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(247,127,0,0.18) 0%, transparent 60%); }
  .cstr > * { position: relative; z-index: 1; }
  .cstr h3 { color: #fff; margin-bottom: 4px; font-size: 1.2rem; }
  .cstr p { color: rgba(255,255,255,0.78); font-size: 0.9rem; max-width: 480px; }

  /* FOOTER */
  .ft {
    background: var(--c-primary-deep); color: rgba(255,255,255,0.75);
    padding: 56px 0 0; position: relative; overflow: hidden;
  }
  .ft::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(to right, var(--c-action), var(--c-cyan), var(--c-action)); }
  .ft__g { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px; margin-bottom: 40px; }
  .ft h4 { color: #fff; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
  .ft__a p { color: rgba(255,255,255,0.62); font-size: 0.88rem; line-height: 1.65; margin: 14px 0; max-width: 320px; }
  .ft__so { display: flex; gap: 8px; }
  .ft__so a {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #fff; transition: var(--tr);
  }
  .ft__so a:hover { background: var(--c-action); border-color: var(--c-action); transform: translateY(-3px); }
  .ft__so svg { width: 16px; height: 16px; }
  .ft__pn { margin-top: 14px; }
  .ft__pn-l { display: flex; flex-wrap: wrap; gap: 6px; }
  .ft__pn-l span {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.78); font-size: 0.74rem; font-weight: 600;
    padding: 5px 10px; border-radius: 100px;
  }
  .ft__l { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .ft__l a { color: rgba(255,255,255,0.62); font-size: 0.88rem; transition: color 0.2s; }
  .ft__l a:hover { color: var(--c-action); }
  .ft__ci { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
  .ft__ci svg { color: var(--c-action); margin-top: 3px; flex-shrink: 0; }
  .ft__ci a, .ft__ci span { color: rgba(255,255,255,0.78); font-size: 0.88rem; line-height: 1.5; transition: color 0.2s; }
  .ft__ci a:hover { color: var(--c-action); }
  .ft__an { display: flex; gap: 8px; margin-top: 18px; }
  .ft__an a { background: #fff; border-radius: 6px; overflow: hidden; transition: transform 0.2s; }
  .ft__an a:hover { transform: translateY(-2px); }
  .ft__an img { display: block; height: 36px; width: auto; }
  .ft__b { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; }
  .ft__b p { color: rgba(255,255,255,0.55); font-size: 0.8rem; }
  .ft__lg { display: flex; flex-wrap: wrap; gap: 20px; }
  .ft__lg a { color: rgba(255,255,255,0.55); font-size: 0.8rem; transition: color 0.2s; }
  .ft__lg a:hover { color: var(--c-action); }

  /* STICKY MOBILE CTA — ONLY MOBILE */
  .scta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--c-border); padding: 8px 10px; z-index: 996; box-shadow: 0 -6px 18px rgba(0,0,0,0.08); }
  .scta__in { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .scta a { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px; border-radius: 9px; font-weight: 700; font-size: 0.92rem; color: #fff; }
  .scta__c { background: var(--c-action); }
  .scta__w { background: #25D366; }

  /* FLOATING */
  .wa-fb { position: fixed; bottom: 88px; right: 18px; width: 52px; height: 52px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,0.5); z-index: 998; animation: wap 2.5s infinite; transition: var(--tr); }
  .wa-fb:hover { transform: scale(1.08); }
  @keyframes wap { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }
  .bt-tp { position: fixed; bottom: 22px; right: 22px; width: 44px; height: 44px; border-radius: 50%; background: var(--c-primary); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--sh); z-index: 998; opacity: 0; pointer-events: none; transition: var(--tr); }
  .bt-tp.show { opacity: 1; pointer-events: auto; }
  .bt-tp:hover { background: var(--c-action); transform: translateY(-3px); }

  /* COOKIE — subtle bottom-left card */
  .ck-bn {
    position: fixed; bottom: 18px; left: 18px; z-index: 997;
    max-width: 340px; width: calc(100% - 36px);
    background: #fff; border: 1px solid var(--c-border);
    border-radius: 12px; padding: 14px 16px;
    box-shadow: 0 12px 32px rgba(15,44,79,0.16);
    transform: translateY(150%); opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  }
  .ck-bn.show { transform: translateY(0); opacity: 1; }
  .ck-bn__card { display: flex; align-items: flex-start; gap: 12px; }
  .ck-bn__ic {
    width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
    background: var(--c-bg-warm); color: var(--c-action);
    display: grid; place-items: center;
  }
  .ck-bn__ic svg { width: 16px; height: 16px; }
  .ck-bn__bd { flex: 1; min-width: 0; }
  .ck-bn__h {
    font-family: var(--f-h); font-weight: 700; font-size: 0.88rem;
    color: var(--c-primary); margin-bottom: 2px; line-height: 1.2;
  }
  .ck-bn p { font-size: 0.78rem; line-height: 1.45; margin: 0 0 10px; color: var(--c-muted); }
  .ck-bn__a { display: flex; gap: 12px; align-items: center; }
  .ck-bn__a button {
    padding: 7px 16px; min-height: 30px; font-size: 0.78rem;
    background: var(--c-action); color: #fff; border-radius: 7px;
    font-family: var(--f-h); font-weight: 700; border: none; cursor: pointer;
    transition: background 0.2s;
  }
  .ck-bn__a button:hover { background: var(--c-action-hover); }
  .ck-bn__a a { color: var(--c-muted); font-size: 0.74rem; font-weight: 600; transition: color 0.2s; }
  .ck-bn__a a:hover { color: var(--c-action); }
  .ck-bn__cls {
    position: absolute; top: 6px; right: 6px;
    width: 22px; height: 22px; border-radius: 50%; border: none;
    background: transparent; color: var(--c-muted); cursor: pointer;
    display: grid; place-items: center; font-size: 16px; line-height: 1;
    transition: background 0.2s;
  }
  .ck-bn__cls:hover { background: var(--c-border-soft); color: var(--c-primary); }

  /* PRELOADER */
  .pl { position: fixed; inset: 0; background: var(--c-primary); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.4s, visibility 0.4s; }
  .pl.hidden { opacity: 0; visibility: hidden; }
  .pl__in { text-align: center; color: #fff; }
  .pl__r { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; border: 3px solid rgba(247,127,0,0.18); border-top-color: var(--c-action); animation: spin 1s linear infinite; position: relative; }
  .pl__r::after { content: ''; position: absolute; inset: 9px; border-radius: 50%; border: 2px dashed rgba(6,182,212,0.4); animation: spin 3s linear infinite reverse; }
  @keyframes spin { to { transform: rotate(360deg); } }
  .pl strong { font-family: var(--f-h); font-size: 0.84rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.7); text-transform: uppercase; font-weight: 600; }

  /* ANIMATE */
  .au { opacity: 0; transform: translateY(20px); transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1); }
  .au.in { opacity: 1; transform: translateY(0); }

  /* LEGAL */
  .lg { max-width: 800px; margin: 0 auto; }
  .lg h2 { margin: 28px 0 10px; font-size: 1.35rem; }
  .lg h2:first-child { margin-top: 0; }
  .lg h3 { margin: 20px 0 8px; font-size: 1.05rem; }
  .lg p, .lg li { font-size: 0.94rem; line-height: 1.7; color: var(--c-text); margin-bottom: 10px; }
  .lg ul { margin: 0 0 14px 22px; }
  .lg strong { color: var(--c-primary); font-weight: 700; }
  .lg-m { background: var(--c-bg-warm); padding: 14px 20px; border-radius: var(--r-sm); border-left: 3px solid var(--c-action); color: var(--c-muted); font-size: 0.86rem; margin-bottom: 28px; }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .hero__grid, .pp, .csp, .ctaf, .of { grid-template-columns: 1fr; }
    .lf { max-width: 520px; margin: 0 auto; justify-self: center; }
    .prt { grid-template-columns: repeat(3, 1fr); }
    .prt-c:nth-child(4), .prt-c:nth-child(5) { grid-column: auto; }
    .tb__in { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .svc { grid-template-columns: repeat(2, 1fr); }
    .stp { grid-template-columns: repeat(2, 1fr); }
    .bn { grid-template-columns: 1fr; }
    .gu { grid-template-columns: 1fr; gap: 22px; }
    .ts { grid-template-columns: 1fr; }
    .gl { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .gl-i.wide { grid-column: span 1; }
    .gl-i.tall { grid-row: span 1; }
    .cc { grid-template-columns: repeat(2, 1fr); }
    .ft__g { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .nav, .hdr__phone { display: none; }
    .nav-tg { display: inline-flex; }
    .sp, .sp.rv, .st { grid-template-columns: 1fr; }
    .sp.rv > .sp__m { order: 0; }
    .ctaf__ph { width: 100%; }
  }

  @media (max-width: 640px) {
    body.scta-on { padding-bottom: 70px; }
    .scta { display: block; }
    .wa-fb { bottom: 84px; }
    .bt-tp { display: none !important; }
    .hero__bf { grid-template-columns: 1fr; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { width: 100%; }
    .tb__in { grid-template-columns: 1fr; }
    .svc, .stp, .gl, .cc, .fr { grid-template-columns: 1fr; }
    .prt { grid-template-columns: repeat(2, 1fr); }
    .prt-st { flex-direction: column; align-items: flex-start; padding: 18px; }
    .tt-bn { flex-direction: column; align-items: stretch; text-align: center; padding: 20px; }
    .tt-bn__l { flex-direction: column; text-align: center; }
    .tt-bn__cta { justify-content: center; }
    .lf { padding: 22px 18px; }
    .lf__t { font-size: 1.35rem; }
    .lf__cta { grid-template-columns: 1fr; }
    .gl { grid-auto-rows: 240px; }
    .ft__g { grid-template-columns: 1fr; gap: 24px; }
    .ft__b { flex-direction: column; align-items: flex-start; }
    .hdr__in { padding: 0 16px; }
    .ck-bn { left: 12px; right: 12px; max-width: none; }
    .of__pr { padding: 18px; }
    .cstr { padding: 22px; flex-direction: column; align-items: flex-start; }
    .pl strong { font-size: 0.74rem; }
  }

  /* ===== WORDPRESS / ELEMENTOR OVERRIDES ===== */
  /* Pages render one-at-a-time in WP, no SPA. .page is always visible. */
  body.page main.site-main { padding-top: var(--hh); }
  body.elementor-editor-active .au { opacity: 1 !important; transform: none !important; }
  body.elementor-editor-active .pl, body.elementor-editor-active .ck-bn, body.elementor-editor-active .scta { display: none !important; }
  body.elementor-editor-active .hdr { position: relative; }
  body.elementor-editor-active main.site-main { padding-top: 0; }

  /* Sticky header offset for anchor links */
  html { scroll-padding-top: var(--hh); }

  /* ===== WP NAV MENU NORMALIZATION (match prototype .nav a behavior) ===== */
  .nav ul, .m-ov nav ul { list-style: none; margin: 0; padding: 0; display: contents; }
  .nav li, .m-ov nav li { list-style: none; margin: 0; padding: 0; }
  .nav li::marker, .m-ov nav li::marker { content: ''; }
  /* Active state: WP marks the <li>, not the <a> */
  .nav .current-menu-item > a,
  .nav .current_page_item > a,
  .nav .current-menu-parent > a { color: var(--c-action); }
  .nav .current-menu-item > a::after,
  .nav .current_page_item > a::after,
  .nav .current-menu-parent > a::after { transform: scaleX(1); }
  .m-ov nav .current-menu-item > a,
  .m-ov nav .current_page_item > a { color: var(--c-action); }
