@charset "utf-8";
/* CSS Document */
  /* ---------- DESIGN TOKENS ---------- */
  :root {
    --ink:        #0F1B2D;
    --ink-soft:   #2C3E50;
    --ink-mute:   #5A6B7E;
    --ivory:      #FAF7F2;
    --paper:      #FFFFFF;
    --line:       #E5DDD0;
    --navy:       #1F3A5F;
    --navy-deep:  #112744;
    --gold:       #C9A961;
    --red:        #B91C1C;
    --red-soft:   #FEE2E2;
    --green:      #15803D;

    --font-display: 'Fraunces', 'Georgia', serif;
    --font-body:    'IBM Plex Sans', -apple-system, 'Segoe UI', sans-serif;

    --content-w:    1140px;
    --gutter:       clamp(20px, 4vw, 56px);
  }

  /* ---------- RESET ---------- */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; }
  img { max-width: 100%; display: block; }

  .wrap {
    max-width: var(--content-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }

  /* ---------- UTILITY TYPE ---------- */
  .eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
  }
  .display {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .h1 { font-size: clamp(40px, 6vw, 72px); }
  .h2 { font-size: clamp(30px, 4vw, 48px); }
  .h3 { font-size: clamp(22px, 2.5vw, 30px); }
  .lead {
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.55;
    color: var(--ink-soft);
    font-weight: 400;
  }

  /* ---------- TOP BAR ---------- */
  .topbar {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.92);
    font-size: 13px;
    padding: 10px 0;
  }
  .topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .topbar a {
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 3px;
    transition: background 0.2s;
  }
  .topbar a:hover { background: rgba(255,255,255,0.1); }
  .topbar-cta { font-weight: 600; color: var(--gold); }
  .topbar svg { width: 14px; height: 14px; }

  /* ---------- NAV ---------- */
  nav.main {
    background: var(--ivory);
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    background: rgba(250, 247, 242, 0.92);
  }
  nav.main .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
	 flex-wrap: wrap;
  }
  .logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .logo span { color: var(--red); }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
  }
  .btn-primary {
    background: var(--red);
    color: white;
  }
  .btn-primary:hover {
    background: #991717;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px -8px rgba(185, 28, 28, 0.5);
  }
  .btn-outline {
    border-color: var(--ink);
    color: var(--ink);
    background: transparent;
  }
  .btn-outline:hover {
    background: var(--ink);
    color: white;
  }
  .btn-large { padding: 16px 32px; font-size: 16px; }

  /* ---------- HERO ---------- */
  .hero {
    padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 120px);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;

    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.07) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero h1 .accent {
    color: var(--red);
    font-style: italic;
    font-weight: 600;
  }
  .hero .lead { margin-top: 24px; max-width: 540px; }
  .hero-cta-row {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
  }
  .hero-trust {
    margin-top: 36px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    color: var(--ink-mute);
    font-size: 13px;
  }
  .hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .hero-trust svg { width: 16px; height: 16px; color: var(--green); }

  /* Hero illustration / number card */
  .hero-visual {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px -30px rgba(15, 27, 45, 0.25);
    position: relative;
  }
  .hero-visual::before {
    content: "ESTIMATED";
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--ink-mute);
  }
  .leak-stat {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: 18px;
  }
  .leak-stat:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
  .leak-stat-label {
    font-size: 12px;
    color: var(--ink-mute);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
  }
  .leak-stat-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    color: var(--red);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .leak-stat-sub {
    font-size: 13px;
    color: var(--ink-mute);
    margin-top: 4px;
  }

  /* ---------- SECTION ---------- */
  section.block {
    padding: clamp(56px, 9vw, 96px) 0;
  }
  section.block.bg-paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  section.block.bg-navy {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.92);
  }
  section.block.bg-navy .display { color: white; }
  section.block.bg-navy .lead { color: rgba(255,255,255,0.75); }

  .section-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
  }
  .section-head .lead { margin-top: 16px; }

  /* ---------- PAIN AMPLIFICATION ---------- */
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
  }
  .pain-card {
    background: var(--paper);
    padding: 32px 28px;
    transition: background 0.2s;
  }
  .pain-card:hover { background: #FFFBF0; }
  .pain-card .icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    color: var(--red);
  }
  .pain-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .pain-card p {
    margin: 0;
    font-size: 14px;
    color: var(--ink-mute);
    line-height: 1.55;
  }

  /* ---------- LIVE CALCULATOR ---------- */
  .calc-shell {
    background: var(--paper);
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: 0 30px 80px -40px rgba(15, 27, 45, 0.3);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
  }
  .calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .calc-inputs {
    padding: 40px;
    border-right: 1px solid var(--line);
  }
  .calc-output {
    padding: 40px;
    background: linear-gradient(180deg, var(--navy-deep) 0%, #0a1d35 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .calc-inputs h3 {
    font-family: var(--font-display);
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 600;
  }
  .calc-inputs > p {
    font-size: 13px;
    color: var(--ink-mute);
    margin: 0 0 28px;
  }
  .calc-field { margin-bottom: 22px; }
  .calc-field label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .calc-field label .val {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--red);
    font-weight: 500;
  }
  .calc-field input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
  }
  .calc-field input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: var(--line);
    border-radius: 2px;
  }
  .calc-field input[type="range"]::-moz-range-track {
    height: 4px;
    background: var(--line);
    border-radius: 2px;
  }
  .calc-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red);
    margin-top: -9px;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(185,28,28,0.4);
  }
  .calc-field input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(185,28,28,0.4);
  }
  .calc-output-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
  }
  .calc-headline-num {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    color: white;
  }
  .calc-output-sub {
    margin-top: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
  }
  .calc-breakdown {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .calc-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    font-size: 14px;
  }
  .calc-breakdown-row .name { color: rgba(255,255,255,0.7); }
  .calc-breakdown-row .amt {
    color: white;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
  }
  .calc-cta {
    margin-top: 28px;
  }
  .calc-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border: 1.5px solid var(--gold);
    border-radius: 4px;
    transition: all 0.2s;
  }
  .calc-cta a:hover {
    background: var(--gold);
    color: var(--navy-deep);
  }

  /* ---------- SOLUTION GRID ---------- */
  .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
  }
  .solution-card {
    padding: 8px 0;
  }
  .solution-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    font-style: italic;
  }
  .solution-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px;
    color: white;
    letter-spacing: -0.01em;
  }
  .solution-card p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
    font-size: 14.5px;
  }

  /* ---------- WHY US ---------- */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
  }
  .why-card {
    border-top: 3px solid var(--ink);
    padding-top: 24px;
  }
  .why-card.gold { border-top-color: var(--gold); }
  .why-card.red { border-top-color: var(--red); }
  .why-card.navy { border-top-color: var(--navy); }
  .why-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
  }
  .why-card p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.6;
    font-size: 15px;
  }

  /* ---------- TESTIMONIAL ---------- */
  .testimonial {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }
  .testimonial blockquote {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 500;
    line-height: 1.35;
    color: var(--ink);
    margin: 0 0 32px;
    letter-spacing: -0.01em;
    position: relative;
  }
  .testimonial blockquote::before {
    content: "\201C";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: var(--gold);
    opacity: 0.3;
    font-family: var(--font-display);
    line-height: 1;
  }
  .testimonial-meta {
    font-size: 14px;
    color: var(--ink-mute);
    letter-spacing: 0.5px;
  }
  .testimonial-meta strong {
    color: var(--ink);
    display: block;
    margin-bottom: 2px;
    font-weight: 600;
  }

  /* ---------- FAQ ---------- */
  .faq {
    max-width: 820px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 0;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    letter-spacing: -0.01em;
    transition: color 0.2s;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "+";
    font-size: 28px;
    color: var(--red);
    font-weight: 400;
    transition: transform 0.3s;
    flex-shrink: 0;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item summary:hover { color: var(--red); }
  .faq-item-body {
    padding: 0 0 24px;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 90%;
  }
.final-cta1{
	background: linear-gradient(135deg, var(--navy-deep) 0%, #0a1d35 100%);color: white;
    border-radius: 8px;
    padding: clamp(40px, 6vw, 64px);
}
  /* ---------- FINAL CTA ---------- */
  .final-cta {
    background: linear-gradient(135deg, var(--navy-deep) 0%, #0a1d35 100%);
    color: white;
    border-radius: 8px;
    padding: clamp(40px, 6vw, 64px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.12) 0%, transparent 60%);
    pointer-events: none;
  }
  .final-cta-text { position: relative; }
  .final-cta-text .eyebrow { color: var(--gold); }
  .final-cta-text h2 {
    color: white;
    margin: 12px 0 20px;
  }
  .final-cta-text p {
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
  }
  .final-cta-bullets {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
  }
  .final-cta-bullets li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
  }
  .final-cta-bullets svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
  }

  /* Form */
  .lead-form {
    background: var(--paper);
    border-radius: 6px;
    padding: 32px;
    position: relative;
    color: var(--ink);
  }
  .lead-form h3 {
    font-family: var(--font-display);
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .lead-form > p {
    font-size: 13px;
    color: var(--ink-mute);
    margin: 0 0 24px;
  }
  .form-field { margin-bottom: 16px; }
  .form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--ink-soft);
    margin-bottom: 6px;
    text-transform: uppercase;
  }
  .form-field input, .form-field select {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    background: var(--ivory);
    border: 1.5px solid var(--line);
    border-radius: 4px;
    transition: border-color 0.2s;
  }
  .form-field input:focus, .form-field select:focus {
    outline: none;
    border-color: var(--red);
  }
  .form-submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    background: var(--red);
    color: white;
    border-radius: 4px;
    transition: background 0.2s;
  }
  .form-submit:hover { background: #991717; }
  .form-fine {
    font-size: 11px;
    color: var(--ink-mute);
    margin-top: 14px;
    line-height: 1.5;
  }
  .form-success {
    background: var(--green);
    color: white;
    padding: 16px;
    border-radius: 4px;
    margin-top: 16px;
    display: none;
    font-size: 14px;
    line-height: 1.5;
  }
  .form-success.show { display: block; }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
    font-size: 13.5px;
  }
  footer .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
  }
  footer .logo { color: white; }
  footer .logo span { color: var(--gold); }
  footer p { margin: 8px 0; line-height: 1.6; max-width: 360px; }
  footer .foot-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    width: 100%;
    text-align: center;
  }
  footer a { color: var(--gold); }

  /* ---------- FLOATING WHATSAPP ---------- */
  .float-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: transform 0.2s;
  }
  .float-wa:hover { transform: scale(1.08); }
  .float-wa svg { width: 32px; height: 32px; color: white; }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 880px) {
    .hero-grid, .calc-grid, .final-cta {
      grid-template-columns: 1fr;
    }
    .calc-inputs { border-right: none; border-bottom: 1px solid var(--line); }
    .testimonial blockquote::before { top: -30px; font-size: 80px; }
    .lead-form { padding: 24px; }
  }
  @media (max-width: 520px) {
    .topbar { font-size: 12px; }
    .hero { padding: 32px 0 48px; }
    .hero-cta-row .btn { width: 100%; justify-content: center; }
    .hero-trust { gap: 16px; font-size: 12px; }
  }
/* Overlay styling */
.overlay {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.overlay.hidden { display:none; }
.loader { text-align:center; color:#fff; }
.spinner {
  width:40px; height:40px;
  border:4px solid #fff;
  border-top-color: transparent;
  border-radius:50%;
  animation: spin 1s linear infinite;
  margin:0 auto 15px;
}
@keyframes spin { to { transform: rotate(360deg); } }