
.elementor-35812 .elementor-element.elementor-element-a3f4d77{width:100%;max-width:100%;}/* Start custom CSS */.elementor-column-gap-default > .elementor-row {
    margin: 0;
    width: 100%;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --red: #ed002f;
    --red-dim: #b8002400;
    --black: #0a0a0a;
    --surface: #111111;
    --surface2: #1a1a1a;
    --surface3: #222222;
    --border: rgba(255,255,255,0.08);
    --border2: rgba(255,255,255,0.15);
    --white: #ffffff;
    --white70: rgba(255,255,255,0.7);
    --white40: rgba(255,255,255,0.4);
    --white15: rgba(255,255,255,0.15);
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── NAV ─────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
  }

  .nav-logo img { height: 28px; display: block; }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: #ff1a3e; transform: translateY(-1px); }

  /* ─── HERO ────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 48px 80px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
  }


  .elementor-widget-container::before {
    content: '';
    position: absolute;
    top: -40%;
    right: 0;
    background:
      radial-gradient(ellipse 60% 50% at 80% 50%, rgba(237,0,47,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(237,0,47,0.04) 0%, transparent 60%);
    pointer-events: none;
    height: 100%;
    width: 100%;
    z-index: -1;
    }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 120px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    max-width: 900px;
    margin-bottom: 32px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--red);
  }

  .hero-desc {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--white70);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
  }
  .btn-primary:hover { background: #ff1a3e; transform: translateY(-2px); }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white70);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 0;
    border: none;
    cursor: pointer;
    border-bottom: 1px solid var(--white15);
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); border-color: var(--white40); }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 0.5px solid var(--border);
    margin-top: 80px;
    max-width: 700px;
  }

  .hero-stat {
    background: var(--black);
    padding: 24px 28px;
  }
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px;
  }
  .hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.88);
    line-height: 1.4;
  }

  /* ─── SECTION COMMON ──────────────────────────── */
  section {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
  }
  .section-eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--red);
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
  }

  /* ─── SIGNAL CARDS ────────────────────────────── */
  .signals-intro {
    font-size: 18px;
    color: var(--white70);
    max-width: 600px;
    margin-bottom: 56px;
    line-height: 1.7;
  }

  /* Desktop */
  .signals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }

  /* Tablet */
  @media (max-width: 1024px) {
    .signals-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Mobile */
  @media (max-width: 600px) {
    .signals-grid {
      grid-template-columns: 1fr;
    }
  }

  .signal-card {
    background: var(--surface);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
  }
  .signal-card:hover { background: var(--surface2); }
  .signal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
  }
  .signal-card:hover::before { transform: scaleY(1); }

  .signal-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--border2);
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.2s;
  }
  .signal-card:hover .signal-num { color: rgba(237,0,47,0.55); }

  .signal-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .signal-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
  }

  /* ─── DIVIDER ─────────────────────────────────── */
  .full-divider {
    width: 100%;
    height: 0.5px;
    background: var(--border);
  }

  /* ─── CALCULATOR ──────────────────────────────── */
  .calc-section {
    padding: 100px 48px;
  }
  .calc-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .calc-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 64px;
  }

  .calc-intro {
    font-size: 17px;
    color: var(--white70);
    line-height: 1.7;
    margin-top: 16px;
  }

  .calc-disclaimer {
    background: var(--surface2);
    border-left: 3px solid var(--red);
    padding: 20px 24px;
    font-size: 13px;
    color: var(--white40);
    line-height: 1.7;
    align-self: end;
  }
  .calc-disclaimer strong { color: var(--white70); display: block; margin-bottom: 4px; }

  /* form layout */
  .calc-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    margin-bottom: 2px;
  }

  .calc-block {
    background: var(--surface);
    padding: 36px 32px;
  }

  .block-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 0.5px solid var(--border);
  }

  .block-num {
    width: 32px;
    height: 32px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
  }

  .block-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1.1;
  }
  .block-title span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--white40);
    letter-spacing: 0.1em;
    margin-top: 2px;
  }

  .fields { display: flex; flex-direction: column; gap: 20px; }

  .field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 8px;
  }
  .field .hint {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
  }

  .slider-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .slider-val {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    min-width: 52px;
    text-align: right;
  }

  input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    height: 2px;
    background: var(--border2);
    outline: none;
    cursor: pointer;
    border-radius: 0;
    padding: 2px;
  }
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--red);
    cursor: pointer;
    border: none;
    border-radius: 0;
    box-shadow: 0 0 0 3px rgba(237,0,47,0.2);
    transition: box-shadow 0.2s;
  }
  input[type="range"]:hover::-webkit-slider-thumb {
    box-shadow: 0 0 0 6px rgba(237,0,47,0.2);
  }
  input[type="range"]::-moz-range-thumb {
    width: 14px; height: 14px;
    background: var(--red);
    cursor: pointer;
    border: none;
    border-radius: 0;
  }

  body select,
  input[type="number"] {
    width: 100%;
    background: var(--surface3);
    border: 0.5px solid var(--border2);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 10px 14px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: border-color 0.2s;
    line-height: 1em;
  }

  body select { 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px; 
  }

  select:focus, input[type="number"]:focus { border-color: var(--red); }
  select option {
    background: #1a1a1a;
    color: #fff;
  }

  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button { opacity: 1; }

  /* ─── RESULTS ─────────────────────────────────── */
  .results-panel {
    background: var(--surface);
    padding: 48px;
    display: none;
  }
  .results-panel.visible { display: block; }

  .results-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 0.5px solid var(--border);
  }

  .total-box {
    text-align: left;
  }
  .total-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
  }
  .total-amount {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 900;
    color: var(--red);
    line-height: 1;
  }
  .total-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
    max-width: 340px;
    line-height: 1.5;
  }

  .risk-side { display: flex; flex-direction: column; gap: 16px; }

  .risk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .risk-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white40);
  }
  .risk-score-val {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
  }

  .risk-track {
    height: 4px;
    background: var(--surface3);
    border-radius: 0;
    overflow: hidden;
  }
  .risk-fill {
    height: 100%;
    border-radius: 0;
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1), background 0.4s;
  }

  .flags { display: flex; flex-wrap: wrap; gap: 8px; }
  .flag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border: 0.5px solid;
  }
  .flag-danger { color: var(--red); border-color: rgba(237,0,47,0.3); background: rgba(237,0,47,0.07); }
  .flag-warn { color: #f5a623; border-color: rgba(245,166,35,0.3); background: rgba(245,166,35,0.07); }
  .flag-ok { color: #5cb85c; border-color: rgba(92,184,92,0.3); background: rgba(92,184,92,0.07); }

  .breakdown-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
    margin-bottom: 40px;
  }

  .bk-card {
    background: var(--surface2);
    padding: 24px 20px;
  }
  .bk-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .bk-val {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 4px;
  }
  .bk-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
  }

  .results-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    background: #2a2a2a;
    padding: 32px;
    margin-top: 8px;
  }

  .results-cta-text {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    max-width: 420px;
    line-height: 1.6;
  }

  /* ─── SOURCES STRIP ───────────────────────────── */
  .sources-strip {
    background: var(--surface);
    padding: 32px 48px;
    border-top: 0.5px solid var(--border);
  }
  .sources-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
  }
  .sources-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
    padding-top: 2px;
  }
  .sources-text {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
  }

  /* ─── FOOTER ──────────────────────────────────── */
  footer {
    background: var(--surface);
    border-top: 0.5px solid var(--border);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-logo img { height: 22px; }
  .footer-copy {
    font-size: 12px;
    color: var(--white40);
  }

  /* ─── CALCULATE BUTTON ────────────────────────── */
  .calc-trigger {
    width: 100%;
    background: var(--black);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0;
    margin-top: 2px;
    cursor: pointer;
  }

  .calc-trigger-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    background: var(--red);
    padding: 22px 40px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    transition: background 0.2s, transform 0.15s;
  }
  .calc-trigger:hover .calc-trigger-inner { background: #ff1a3e; }
  .calc-trigger:active .calc-trigger-inner { transform: scale(0.99); }

  /* ─── RESPONSIVE ──────────────────────────────── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .hero { padding: 120px 24px 64px; }
    section, .calc-section { padding: 64px 24px; }
    .calc-header { grid-template-columns: 1fr; gap: 32px; }
    .calc-form { grid-template-columns: 1fr; }
    .breakdown-grid { grid-template-columns: repeat(2, 1fr); }
    .results-top { grid-template-columns: 1fr; gap: 32px; }
    .hero-stats { grid-template-columns: 1fr; }
    .sources-strip { padding: 24px; }
    .sources-strip-inner { grid-template-columns: 1fr; gap: 12px; }
    footer { padding: 28px 24px; }
    .results-panel { padding: 28px 24px; }
  }

  /* ─── ANIMATE ON LOAD ─────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow { animation: fadeUp 0.6s ease both 0.1s; }
  .hero-title { animation: fadeUp 0.7s ease both 0.2s; }
  .hero-desc { animation: fadeUp 0.7s ease both 0.35s; }
  .hero-actions { animation: fadeUp 0.7s ease both 0.45s; }
  .hero-stats { animation: fadeUp 0.7s ease both 0.55s; }

  /* ─── TOOLTIPS ────────────────────────────────── */
  .field-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
  }
  .info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 10px;
    font-weight: 800;
    cursor: default;
    position: relative;
    flex-shrink: 0;
    font-style: normal;
    line-height: 1;
  }
  .info-btn:hover { background: var(--red); color: var(--white); }
  .info-btn .tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.5;
    padding: 8px 12px;
    white-space: nowrap;
    max-width: 220px;
    white-space: normal;
    width: 220px;
    z-index: 999;
    border: 0.5px solid rgba(255,255,255,0.15);
  }
  .info-btn:hover .tooltip { display: block; }
  .info-btn .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
  }/* End custom CSS */