.elementor-1100 .elementor-element.elementor-element-830aad4{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* ─── TOKENS ─────────────────────────────── */
    :root {
      --navy:        #0D1E38;
      --navy-mid:    #132541;
      --red:         #E8512A;
      --red-hover:   #CF4522;
      --off-white:   #F4EFE6;
      --slate:       #6B7A96;
      --charcoal:    #1A2B3C;
      --border:      #DDD9D0;
      --white:       #FFFFFF;
      --font-d:      'Barlow Condensed', sans-serif;
      --font-b:      'Barlow', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-b);
      font-size: 16px;
      line-height: 1.6;
      color: var(--charcoal);
      background: var(--white);
    }

    a,
    a:link,
    a:visited {
      text-decoration: none;
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    /* ─── NAV ────────────────────────────────── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--navy);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      height: 62px;
      display: flex;
      align-items: center;
      padding: 0 2rem;
      gap: 2rem;
    }

    .nav-logo {
      font-family: var(--font-d);
      font-weight: 800;
      font-size: 1.3rem;
      color: var(--white) !important;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      white-space: nowrap;
      flex-shrink: 0;
      line-height: 1;
    }

    .nav-logo span {
      color: var(--red) !important;
    }

    .nav-links {
      display: flex;
      gap: 1.75rem;
      list-style: none;
      flex: 1;
      justify-content: center;
    }

    .nav-links a {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: color 0.15s;
      color: rgba(255,255,255,0.6) !important;
    }

    .nav-links a:hover {
      color: var(--white) !important;
    }

    .nav-login {
      color: rgba(255,255,255,0.5) !important;
      border: 1px solid rgba(255,255,255,0.15);
      padding: 0.3rem 0.875rem;
      border-radius: 2px;
      transition: all 0.15s;
    }

    .nav-login:hover {
      color: var(--white) !important;
      border-color: rgba(255,255,255,0.4) !important;
    }

    .nav-cta {
      background: var(--red);
      color: var(--white);
      font-family: var(--font-b);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0.5rem 1.25rem;
      border-radius: 2px;
      transition: background 0.15s;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .nav-cta:hover {
      background: var(--red-hover);
    }

    /* ─── BUTTONS ────────────────────────────── */
    .btn {
      display: inline-block;
      font-family: var(--font-b);
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.03em;
      padding: 0.875rem 2rem;
      border-radius: 2px;
      transition: all 0.15s;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--red);
      color: var(--white) !important;
    }

    .btn-primary:hover {
      background: var(--red-hover);
    }

    .btn-ghost {
      background: transparent;
      color: rgba(255,255,255,0.75) !important;
      border: 1px solid rgba(255,255,255,0.22);
    }

    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.55);
      color: var(--white) !important;
    }

    /* ─── SECTION SHELL ──────────────────────── */
    .s {
      padding: 5.5rem 2rem;
    }

    .s-inner {
      max-width: 1060px;
      margin: 0 auto;
    }

    .eyebrow {
      font-family: var(--font-b);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 1rem;
    }

    .eyebrow-light {
      color: rgba(255,255,255,0.45);
    }

    .h2 {
      font-family: var(--font-d);
      font-weight: 800;
      font-size: clamp(2.4rem, 4.5vw, 3.75rem);
      text-transform: uppercase;
      line-height: 0.95;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
      color: var(--charcoal);
    }

    .h2-light {
      color: var(--white);
    }

    .lead {
      font-size: 1.05rem;
      color: var(--slate);
      line-height: 1.7;
    }

    .lead-light {
      color: rgba(255,255,255,0.6);
    }

    /* ─── HERO ───────────────────────────────── */
    .hero {
      background: var(--navy);
      padding: 6.5rem 2rem 5.5rem;
      text-align: center;
    }

    .hero h1 {
      font-family: var(--font-d);
      font-weight: 800;
      font-size: clamp(3.25rem, 8vw, 6rem);
      line-height: 0.93;
      text-transform: uppercase;
      letter-spacing: -0.015em;
      color: var(--white);
      max-width: 880px;
      margin: 0 auto 1.75rem;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--red);
    }

    .hero-sub {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.65);
      max-width: 620px;
      margin: 0 auto 2.75rem;
      line-height: 1.7;
    }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-note {
      margin-top: 1.25rem;
      color: rgba(255,255,255,0.38);
      font-size: 0.8rem;
    }

    /* ─── PROBLEM ────────────────────────────── */
    .problem {
      background: var(--off-white);
    }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .pain-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.875rem;
    }

    .pain-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.975rem;
      font-weight: 500;
      color: var(--charcoal);
      line-height: 1.45;
    }

    .pip {
      flex-shrink: 0;
      width: 5px;
      height: 5px;
      background: var(--red);
      border-radius: 50%;
      margin-top: 0.45rem;
    }

    .body-copy p {
      color: var(--slate);
      margin-bottom: 1rem;
      line-height: 1.75;
    }

    /* ─── DELIVERABLES ───────────────────────── */
    .how {
      background: var(--navy);
    }

    .deliverables {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      margin-top: 3.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .deliverable {
      padding: 2rem 2rem 2rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .deliverable:nth-child(even) {
      padding-left: 2rem;
      border-left: 1px solid rgba(255,255,255,0.08);
    }

    .deliverable-num {
      font-family: var(--font-d);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: var(--red);
      margin-bottom: 0.875rem;
    }

    .deliverable h3 {
      font-family: var(--font-d);
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--white);
      margin-bottom: 0.625rem;
      line-height: 1.05;
    }

    .deliverable p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
    }

    /* ─── CALL SECTION ───────────────────────── */
    .call {
      background: var(--white);
    }

    .call-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 5rem;
      align-items: start;
    }

    .call-list {
      background: var(--off-white);
      border: 1px solid var(--border);
      padding: 2.25rem;
    }

    .call-item {
      padding: 1.35rem 0;
      border-bottom: 1px solid var(--border);
    }

    .call-item:first-child {
      padding-top: 0;
    }

    .call-item:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .call-item h3 {
      font-family: var(--font-d);
      font-size: 1.25rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--charcoal);
      margin-bottom: 0.4rem;
      line-height: 1.15;
    }

    .call-item p {
      color: var(--slate);
      font-size: 0.9rem;
    }

    /* ─── CONTRACT ───────────────────────────── */
    .contract {
      background: var(--red);
    }

    .contract .eyebrow {
      color: rgba(13,30,56,0.55);
    }

    .contract .h2 {
      color: var(--navy);
      max-width: 750px;
    }

    .contract-copy {
      max-width: 760px;
    }

    .contract-copy p {
      color: var(--navy);
      margin-bottom: 1rem;
      font-size: 1.05rem;
    }

    .contract-punch {
      font-family: var(--font-d);
      font-size: 1.7rem !important;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.15;
      margin-top: 1.5rem;
    }

    /* ─── FIT ────────────────────────────────── */
    .fit {
      background: var(--off-white);
    }

    .fit-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .fit-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 2rem;
    }

    .fit-card h3 {
      font-family: var(--font-d);
      font-size: 1.35rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--charcoal);
      line-height: 1.1;
      margin-bottom: 0.7rem;
    }

    .fit-card p {
      color: var(--slate);
      font-size: 0.9rem;
    }

    /* ─── PRICE ──────────────────────────────── */
    .price-section {
      background: var(--navy);
    }

    .price-wrap {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      margin-top: 3rem;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .price-main {
      padding: 3rem;
    }

    .price-side {
      padding: 3rem;
      border-left: 1px solid rgba(255,255,255,0.08);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .price {
      font-family: var(--font-d);
      font-weight: 800;
      font-size: 4.5rem;
      color: var(--white);
      line-height: 0.95;
    }

    .price span {
      font-family: var(--font-b);
      font-size: 1rem;
      font-weight: 500;
      color: rgba(255,255,255,0.45);
    }

    .price-note {
      color: rgba(255,255,255,0.45);
      font-size: 0.85rem;
      margin: 0.75rem 0 1.5rem;
    }

    /* ─── FAQ ────────────────────────────────── */
    .faq {
      background: var(--off-white);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.25rem 4.5rem;
      margin-top: 3.25rem;
    }

    .faq-q {
      font-family: var(--font-d);
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--charcoal);
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    .faq-a {
      font-size: 0.9rem;
      color: var(--slate);
      line-height: 1.65;
    }

    /* ─── BOOKING ────────────────────────────── */
    .booking {
      background: var(--white);
      text-align: center;
    }

    .booking-intro {
      max-width: 700px;
      margin: 0 auto;
    }

    .calendar-wrap {
      max-width: 960px;
      min-height: 650px;
      margin: 3rem auto 0;
      background: var(--off-white);
      border: 1px solid var(--border);
      padding: 1.5rem;
    }

    .calendar-placeholder {
      min-height: 590px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      max-width: 520px;
      margin: 0 auto;
    }

    .calendar-placeholder h3 {
      font-family: var(--font-d);
      font-size: 2rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--charcoal);
      margin-bottom: 0.75rem;
    }

    .calendar-placeholder p {
      color: var(--slate);
      margin-bottom: 1.5rem;
    }

    /* ─── FOOTER ─────────────────────────────── */
    .footer {
      background: var(--charcoal);
      padding: 2.5rem 2rem;
      text-align: center;
    }

    .footer-logo {
      font-family: var(--font-d);
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.45);
      margin-bottom: 0.5rem;
    }

    .footer-logo span {
      color: var(--red);
      opacity: 0.7;
    }

    .footer-note {
      font-size: 0.775rem;
      color: rgba(255,255,255,0.25);
    }

    /* ─── RESPONSIVE ─────────────────────────── */
    @media (max-width: 820px) {
      .nav-links {
        display: none;
      }

      .problem-grid,
      .call-grid,
      .price-wrap {
        grid-template-columns: 1fr;
      }

      .problem-grid,
      .call-grid {
        gap: 2.5rem;
      }

      .deliverables {
        grid-template-columns: 1fr;
      }

      .deliverable,
      .deliverable:nth-child(even) {
        padding: 1.75rem 0;
        border-left: 0;
      }

      .fit-grid {
        grid-template-columns: 1fr;
      }

      .price-side {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.08);
      }

      .faq-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 580px) {
      .hero h1 {
        font-size: 2.75rem;
      }

      .h2 {
        font-size: 2rem;
      }

      .s {
        padding: 4rem 1.25rem;
      }

      .call-list,
      .price-main,
      .price-side {
        padding: 1.5rem;
      }

      .price {
        font-size: 3.75rem;
      }
    }/* End custom CSS */