/* Theme Header Info */
/* Theme Name: Hello Elementor */


      :root {
        --navy-950: #050821;
        --navy-900: #070b2b;
        --navy-850: #0b123b;
        --navy-800: #111a48;
        --blue: #0878ff;
        --blue-strong: #0068ed;
        --blue-soft: #9cc7ff;
        --white: #f5f7fb;
        --paper: #f4f6fb;
        --ink: #0b123b;
        --muted: #5d6780;
        --line-dark: rgba(122, 173, 255, 0.2);
        --line-light: #dce3f0;
        --orange: #ff4b0b;
        --violet: #8f68e8;
        --content: 1320px;
        --header: 94px;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        background: var(--paper);
        color: var(--ink);
        font-family: "Manrope", Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
      }

      body.menu-open {
        overflow: hidden;
      }

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

      a {
        color: inherit;
      }

      button,
      input,
      select,
      textarea {
        font: inherit;
      }

      button,
      a {
        -webkit-tap-highlight-color: transparent;
      }

      :focus-visible {
        outline: 3px solid var(--blue-soft);
        outline-offset: 4px;
      }

      .skip-link {
        position: fixed;
        z-index: 2000;
        top: 12px;
        left: 12px;
        transform: translateY(-140%);
        background: #fff;
        color: var(--ink);
        padding: 10px 16px;
        border-radius: 8px;
        font-weight: 700;
      }

      .skip-link:focus {
        transform: translateY(0);
      }

      .container {
        width: min(calc(100% - 64px), var(--content));
        margin-inline: auto;
      }

      .site-header {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1000;
        height: var(--header);
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        background: rgba(5, 8, 33, 0.88);
        backdrop-filter: blur(18px);
        transition:
          background 0.25s ease,
          box-shadow 0.25s ease;
      }

      .site-header.scrolled {
        background: rgba(5, 8, 33, 0.96);
        box-shadow: 0 18px 44px rgba(1, 4, 21, 0.25);
      }

      .nav-wrap {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 36px;
      }

      .brand {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
      }

      .brand img {
        width: 194px;
        height: auto;
      }

      .nav-main {
        display: flex;
        align-items: center;
        gap: 42px;
      }

      .nav-main a {
        position: relative;
        color: rgba(255, 255, 255, 0.82);
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s ease;
      }

      .nav-main a::after {
        content: "";
        position: absolute;
        height: 2px;
        width: 100%;
        left: 0;
        bottom: -10px;
        background: var(--blue);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.22s ease;
      }

      .nav-main a:hover,
      .nav-main a.active {
        color: #fff;
      }

      .nav-main a:hover::after,
      .nav-main a.active::after {
        transform: scaleX(1);
        transform-origin: left;
      }

      .header-cta,
      .btn {
        min-height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border-radius: 4px;
        border: 1px solid var(--blue);
        padding: 0 26px;
        font-weight: 700;
        text-decoration: none;
        cursor: pointer;
        transition:
          transform 0.2s ease,
          background 0.2s ease,
          color 0.2s ease,
          border-color 0.2s ease;
      }

      .header-cta {
        color: #fff;
        font-size: 14px;
        white-space: nowrap;
      }

      .header-cta:hover {
        color: var(--navy-950);
        background: #fff;
        border-color: #fff;
        transform: translateY(-2px);
      }

      .menu-toggle {
        display: none;
        width: 48px;
        height: 48px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        background: transparent;
        color: #fff;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 24px;
      }

      .hero {
        position: relative;
        min-height: 900px;
        overflow: hidden;
        background: var(--navy-950);
        color: var(--white);
        padding: calc(var(--header) + 30px) 0 34px;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: var(--header) 0 auto;
        height: 1px;
        background: rgba(255, 255, 255, 0.05);
      }

      .hero-grid {
        position: relative;
        z-index: 3;
        min-height: 570px;
        display: grid;
        grid-template-columns: minmax(0, 1.16fr) minmax(450px, 0.84fr);
        align-items: center;
        gap: 24px;
      }

      .hero-copy {
        position: relative;
        z-index: 5;
        padding: 18px 0 40px;
      }

      .eyebrow {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 30px;
        color: #c6d1e4;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.28em;
        text-transform: uppercase;
      }

      .eyebrow .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--blue);
        box-shadow: 0 0 16px var(--blue);
      }

      h1,
      h2,
      h3 {
        font-family: "Sora", "Manrope", Arial, sans-serif;
      }

      .hero h1 {
        max-width: 780px;
        margin: 0 0 24px;
        font-family: "Manrope", Arial, sans-serif;
        font-size: clamp(46px, 4.55vw, 68px);
        line-height: 1.03;
        letter-spacing: -0.047em;
        font-weight: 700;
        text-wrap: balance;
      }

      .hero-lead {
        max-width: 670px;
        margin: 0 0 30px;
        color: #cbd3e2;
        font-size: clamp(17px, 1.45vw, 20px);
        line-height: 1.7;
        text-wrap: pretty;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 24px;
      }

      .btn-primary {
        min-width: 240px;
        background: var(--blue);
        color: #fff;
        border-color: var(--blue);
      }

      .btn-primary:hover {
        background: #fff;
        border-color: #fff;
        color: var(--navy-950);
        transform: translateY(-3px);
      }

      .btn-secondary {
        min-width: 210px;
        background: transparent;
        color: #fff;
        border-color: rgba(118, 173, 255, 0.65);
      }

      .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: #fff;
        transform: translateY(-3px);
      }

      .hero-microcopy {
        margin: 0;
        color: #8f9ab0;
        font-size: 14px;
      }

      .hero-visual {
        position: absolute;
        z-index: 2;
        top: var(--header);
        bottom: 0;
        right: 0;
        width: 57%;
        pointer-events: none;
      }

      .hero-monogram {
        position: absolute;
        inset: 12px 0 0 auto;
        width: 92%;
        height: 82%;
        object-fit: cover;
        object-position: center;
        opacity: 0.74;
      }

      .hero-person {
        position: absolute;
        z-index: 2;
        right: clamp(8px, 3vw, 58px);
        bottom: 136px;
        width: min(47vw, 680px);
        max-height: 650px;
        object-fit: cover;
        object-position: center 17%;
        filter: saturate(0.92) contrast(1.05);
        clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
      }

      .hero-visual::after {
        content: "";
        position: absolute;
        z-index: 3;
        right: 2.3%;
        bottom: 134px;
        width: min(47vw, 680px);
        height: 1px;
        background: var(--blue);
        box-shadow: 0 0 14px var(--blue);
      }

      .hero-proof {
        position: relative;
        z-index: 8;
        min-height: 110px;
        display: grid;
        grid-template-columns: 0.9fr 1.15fr 1fr 2.15fr;
        border: 1px solid rgba(112, 168, 255, 0.38);
        border-radius: 26px;
        background: rgba(5, 8, 33, 0.88);
        overflow: hidden;
      }

      .proof-stat,
      .proof-companies {
        display: flex;
        align-items: center;
        min-width: 0;
        padding: 24px 28px;
      }

      .proof-stat + .proof-stat,
      .proof-companies {
        border-left: 1px solid rgba(112, 168, 255, 0.25);
      }

      .proof-stat i {
        margin-right: 16px;
        color: var(--blue);
        font-size: 30px;
      }

      .proof-stat strong {
        display: block;
        color: #fff;
        font-size: 23px;
        line-height: 1.08;
      }

      .proof-stat span {
        display: block;
        margin-top: 4px;
        color: #aeb8ca;
        font-size: 12px;
      }

      .proof-companies {
        justify-content: space-around;
        gap: 24px;
      }

      .proof-companies img {
        max-width: 120px;
        max-height: 42px;
        object-fit: contain;
      }

      .trusted {
        padding: 36px 0;
        background: #fff;
        border-bottom: 1px solid var(--line-light);
      }

      .trusted-wrap {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 46px;
      }

      .trusted-label {
        color: #7c879e;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.17em;
        text-transform: uppercase;
      }

      .client-names {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        align-items: center;
        gap: 20px;
      }

      .client-names span {
        color: #29334d;
        text-align: center;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.03em;
      }

      .section {
        padding: 126px 0;
      }

      .section-kicker {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 22px;
        color: var(--blue-strong);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.15em;
        text-transform: uppercase;
      }

      .section-kicker::before {
        content: "";
        width: 28px;
        height: 2px;
        background: var(--blue);
      }

      .section-title {
        margin: 0;
        color: var(--ink);
        font-size: clamp(36px, 4.8vw, 64px);
        line-height: 1.08;
        letter-spacing: -0.045em;
        text-wrap: balance;
      }

      .section-lead {
        max-width: 720px;
        margin: 24px 0 0;
        color: var(--muted);
        font-size: 18px;
        line-height: 1.75;
        text-wrap: pretty;
      }

      .story {
        background: var(--paper);
      }

      .story-intro {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 100px;
        align-items: end;
        margin-bottom: 82px;
      }

      .story-quote {
        margin: 0;
        padding: 0 0 8px 30px;
        border-left: 2px solid var(--blue);
        color: #3d4863;
        font-size: 19px;
        line-height: 1.75;
      }

      .timeline {
        position: relative;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
      }

      .timeline::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 27px;
        height: 1px;
        background: #c9d4e6;
      }

      .milestone {
        position: relative;
        padding-top: 62px;
      }

      .milestone::before {
        content: "";
        position: absolute;
        top: 18px;
        left: 0;
        width: 18px;
        height: 18px;
        border: 6px solid var(--paper);
        border-radius: 50%;
        background: var(--blue);
        box-shadow: 0 0 0 1px var(--blue);
      }

      .milestone time {
        color: var(--blue-strong);
        font-family: "Sora", sans-serif;
        font-size: 30px;
        font-weight: 700;
      }

      .milestone h3 {
        margin: 15px 0 10px;
        color: var(--ink);
        font-size: 18px;
      }

      .milestone p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.7;
      }

      .ecosystem {
        background: #fff;
      }

      .ecosystem-head {
        display: grid;
        grid-template-columns: 1fr 0.78fr;
        gap: 80px;
        align-items: end;
        margin-bottom: 66px;
      }

      .ecosystem-summary {
        margin: 0 0 4px;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.75;
      }

      .company-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
      }

      .company-card {
        position: relative;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border: 1px solid var(--line-light);
        border-top: 4px solid var(--brand-color);
        border-radius: 22px;
        background: #fff;
        padding: 42px 36px 36px;
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease;
      }

      .company-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 28px 70px -38px rgba(13, 29, 71, 0.32);
      }

      .company-logo {
        height: 54px;
        display: flex;
        align-items: center;
        margin-bottom: 34px;
      }

      .company-logo img {
        max-width: 185px;
        max-height: 46px;
        object-fit: contain;
        object-position: left center;
      }

      .company-tag {
        margin-bottom: 14px;
        color: var(--brand-color);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.15em;
        text-transform: uppercase;
      }

      .company-card h3 {
        margin: 0 0 16px;
        color: var(--ink);
        font-size: 25px;
        line-height: 1.25;
      }

      .company-card > p {
        margin: 0 0 24px;
        color: var(--muted);
        font-size: 15px;
        line-height: 1.7;
      }

      .service-list {
        display: grid;
        gap: 11px;
        margin: 0 0 30px;
        padding: 0;
        list-style: none;
      }

      .service-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #3f4c67;
        font-size: 13px;
        line-height: 1.5;
      }

      .service-list i {
        flex: 0 0 auto;
        margin-top: 2px;
        color: var(--brand-color);
        font-size: 17px;
      }

      .company-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: auto;
        color: var(--brand-color);
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
      }

      .company-link:hover {
        gap: 13px;
      }

      .integration {
        position: relative;
        overflow: hidden;
        background: var(--navy-900);
        color: #fff;
      }

      .integration-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 100px;
        align-items: center;
      }

      .integration .section-kicker {
        color: var(--blue-soft);
      }

      .integration .section-title {
        color: #fff;
      }

      .integration .section-lead {
        color: #b8c2d6;
      }

      .integration-steps {
        display: grid;
        gap: 0;
        border: 1px solid rgba(127, 178, 255, 0.24);
        border-radius: 24px;
        overflow: hidden;
      }

      .integration-step {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 20px;
        padding: 29px 32px;
        background: rgba(255, 255, 255, 0.03);
      }

      .integration-step + .integration-step {
        border-top: 1px solid rgba(127, 178, 255, 0.18);
      }

      .step-number {
        color: var(--blue);
        font-family: "Sora", sans-serif;
        font-size: 29px;
        font-weight: 700;
      }

      .integration-step h3 {
        margin: 0 0 7px;
        color: #fff;
        font-size: 18px;
      }

      .integration-step p {
        margin: 0;
        color: #aeb9ce;
        font-size: 14px;
        line-height: 1.65;
      }

      .testimonials {
        background: var(--paper);
      }

      .testimonials-head {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 32px;
        margin-bottom: 58px;
      }

      .carousel-controls {
        display: flex;
        gap: 10px;
      }

      .carousel-btn {
        width: 52px;
        height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #cbd6e8;
        border-radius: 50%;
        background: transparent;
        color: var(--ink);
        cursor: pointer;
        transition:
          background 0.2s ease,
          color 0.2s ease;
      }

      .carousel-btn:hover {
        background: var(--ink);
        color: #fff;
      }

      .testimonial-stage {
        position: relative;
        min-height: 370px;
      }

      .testimonial-slide {
        display: none;
        grid-template-columns: 1.25fr 0.75fr;
        overflow: hidden;
        border: 1px solid var(--line-light);
        border-radius: 24px;
        background: #fff;
      }

      .testimonial-slide.active {
        display: grid;
        animation: slideIn 0.42s ease both;
      }

      .quote-copy {
        padding: 54px 58px;
      }

      .quote-copy i {
        color: var(--blue);
        font-size: 42px;
      }

      .quote-copy blockquote {
        margin: 26px 0 34px;
        color: #18223f;
        font-family: "Sora", sans-serif;
        font-size: clamp(22px, 2.5vw, 34px);
        line-height: 1.42;
        letter-spacing: -0.025em;
      }

      .quote-copy .summary-note {
        color: #8a94a9;
        font-size: 11px;
      }

      .quote-person {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 54px 44px;
        background: var(--navy-850);
        color: #fff;
      }

      .quote-person strong {
        font-family: "Sora", sans-serif;
        font-size: 18px;
      }

      .quote-person span {
        margin-top: 8px;
        color: #aebad0;
        font-size: 14px;
        line-height: 1.5;
      }

      .quote-person .client-mark {
        margin-bottom: auto;
        color: #fff;
        font-family: "Sora", sans-serif;
        font-size: 42px;
        font-weight: 700;
        letter-spacing: -0.05em;
      }

      .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 28px;
      }

      .carousel-dot {
        width: 9px;
        height: 9px;
        border: 0;
        border-radius: 50%;
        background: #c1cadb;
        cursor: pointer;
      }

      .carousel-dot.active {
        background: var(--blue);
        box-shadow: 0 0 0 5px rgba(8, 120, 255, 0.12);
      }

      .founder {
        background: #fff;
      }

      .founder-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 92px;
        align-items: center;
      }

      .founder-photo {
        position: relative;
        overflow: hidden;
        border-radius: 28px 28px 28px 4px;
        background: var(--navy-850);
      }

      .founder-photo img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
      }

      .founder-photo::after {
        content: "DESDE 1995";
        position: absolute;
        right: 20px;
        bottom: 20px;
        padding: 11px 15px;
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 4px;
        background: rgba(5, 8, 33, 0.82);
        color: #fff;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.18em;
      }

      .founder-copy .role {
        margin: 18px 0 26px;
        color: var(--blue-strong);
        font-weight: 800;
      }

      .founder-copy p {
        margin: 0 0 19px;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.78;
      }

      .founder-credentials {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 30px;
      }

      .founder-credentials span {
        padding: 10px 13px;
        border: 1px solid #d3deee;
        border-radius: 99px;
        color: #44516d;
        font-size: 12px;
        font-weight: 700;
      }

      .purpose {
        padding: 112px 0;
        background: var(--navy-900);
        color: #fff;
        text-align: center;
      }

      .purpose-inner {
        max-width: 990px;
      }

      .purpose .section-kicker {
        color: var(--blue-soft);
      }

      .purpose h2 {
        margin: 0;
        color: #fff;
        font-size: clamp(34px, 4.3vw, 58px);
        line-height: 1.18;
        letter-spacing: -0.04em;
        text-wrap: balance;
      }

      .purpose h2 span {
        color: var(--blue-soft);
      }

      .purpose p {
        max-width: 730px;
        margin: 28px auto 0;
        color: #b9c4d8;
        font-size: 18px;
        line-height: 1.75;
      }

      .contact {
        background: var(--paper);
      }

      .contact-grid {
        display: grid;
        grid-template-columns: 0.88fr 1.12fr;
        gap: 90px;
        align-items: start;
      }

      .contact-copy {
        position: sticky;
        top: calc(var(--header) + 44px);
      }

      .contact-list {
        display: grid;
        gap: 16px;
        margin-top: 38px;
      }

      .contact-item {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 18px 0;
        border-bottom: 1px solid #dce4f0;
        text-decoration: none;
      }

      .contact-item i {
        color: var(--blue);
        font-size: 27px;
      }

      .contact-item small {
        display: block;
        margin-bottom: 4px;
        color: #8490a7;
      }

      .contact-item strong {
        color: var(--ink);
        font-size: 15px;
      }

      .contact-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 42px;
        border: 1px solid var(--line-light);
        border-radius: 24px;
        background: #fff;
      }

      .field {
        display: grid;
        gap: 8px;
      }

      .field.full {
        grid-column: 1 / -1;
      }

      .field label {
        color: #4e5b76;
        font-size: 12px;
        font-weight: 800;
      }

      .field input,
      .field select,
      .field textarea {
        width: 100%;
        border: 1px solid #ccd7e8;
        border-radius: 8px;
        background: #fff;
        color: var(--ink);
        padding: 14px 15px;
        transition:
          border-color 0.2s ease,
          box-shadow 0.2s ease;
      }

      .field textarea {
        min-height: 126px;
        resize: vertical;
      }

      .field input:focus,
      .field select:focus,
      .field textarea:focus {
        outline: 0;
        border-color: var(--blue);
        box-shadow: 0 0 0 4px rgba(8, 120, 255, 0.11);
      }

      .consent {
        grid-column: 1 / -1;
        display: flex;
        align-items: flex-start;
        gap: 11px;
        color: #66718a;
        font-size: 12px;
        line-height: 1.55;
      }

      .consent input {
        width: 18px;
        height: 18px;
        margin-top: 1px;
        accent-color: var(--blue);
      }

      .submit-row {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        gap: 18px;
      }

      .submit-row .btn {
        border: 0;
      }

      .form-status {
        margin: 0;
        color: #12723f;
        font-size: 13px;
        font-weight: 700;
      }

      .site-footer {
        padding: 72px 0 30px;
        background: var(--navy-950);
        color: #a9b4c9;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 0.9fr 0.9fr 1fr;
        gap: 54px;
        padding-bottom: 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .footer-brand img {
        width: 190px;
        margin-bottom: 22px;
      }

      .footer-brand p {
        max-width: 350px;
        margin: 0;
        font-size: 14px;
        line-height: 1.75;
      }

      .footer-col h3 {
        margin: 0 0 19px;
        color: #fff;
        font-family: "Manrope", sans-serif;
        font-size: 13px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .footer-col a,
      .footer-col span {
        display: block;
        margin: 0 0 12px;
        color: #a9b4c9;
        font-size: 13px;
        line-height: 1.5;
        text-decoration: none;
      }

      .footer-col a:hover {
        color: #fff;
      }

      .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 18px;
        padding-top: 26px;
        font-size: 12px;
      }

      .social-links {
        display: flex;
        gap: 10px;
        margin-top: 22px;
      }

      .social-links a {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 50%;
        color: #fff;
        font-size: 19px;
      }

      .social-links a:hover {
        background: var(--blue);
        border-color: var(--blue);
      }

      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.68s ease,
          transform 0.68s ease;
      }

      .reveal.visible {
        opacity: 1;
        transform: none;
      }

      @keyframes slideIn {
        from {
          opacity: 0;
          transform: translateX(18px);
        }
        to {
          opacity: 1;
          transform: none;
        }
      }

      @media (max-width: 1180px) {
        .nav-main {
          gap: 24px;
        }

        .hero-grid {
          grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
        }

        .hero-person {
          right: -42px;
          width: 54vw;
        }

        .proof-stat,
        .proof-companies {
          padding: 22px 20px;
        }

        .proof-companies {
          gap: 14px;
        }

        .company-card {
          padding: 34px 28px 30px;
        }
      }

      @media (max-width: 980px) {
        :root {
          --header: 78px;
        }

        .container {
          width: min(calc(100% - 40px), var(--content));
        }

        .brand img {
          width: 160px;
        }

        .menu-toggle {
          display: inline-flex;
        }

        .header-cta {
          display: none;
        }

        .nav-main {
          position: fixed;
          inset: var(--header) 0 auto;
          min-height: calc(100vh - var(--header));
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: flex-start;
          gap: 0;
          padding: 34px 24px;
          background: rgba(5, 8, 33, 0.99);
          transform: translateX(100%);
          transition: transform 0.28s ease;
        }

        .nav-main.open {
          transform: translateX(0);
        }

        .nav-main a {
          width: 100%;
          padding: 20px 0;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
          font-size: 20px;
        }

        .hero {
          min-height: auto;
          padding-top: calc(var(--header) + 40px);
        }

        .hero-grid {
          min-height: 820px;
          grid-template-columns: 1fr;
          align-items: start;
        }

        .hero-copy {
          padding-top: 30px;
        }

        .hero h1 {
          max-width: 650px;
          font-size: clamp(46px, 8.2vw, 66px);
        }

        .hero-lead {
          max-width: 600px;
        }

        .hero-visual {
          top: 420px;
          width: 100%;
          height: 510px;
        }

        .hero-monogram {
          width: 85%;
          height: 100%;
          opacity: 0.58;
        }

        .hero-person {
          right: -30px;
          bottom: 0;
          width: 62vw;
          max-height: 520px;
        }

        .hero-visual::after {
          bottom: 0;
          width: 62vw;
        }

        .hero-proof {
          grid-template-columns: repeat(3, 1fr);
          margin-top: 16px;
        }

        .proof-companies {
          grid-column: 1 / -1;
          border-top: 1px solid rgba(112, 168, 255, 0.25);
          border-left: 0;
        }

        .trusted-wrap {
          grid-template-columns: 1fr;
          gap: 24px;
        }

        .client-names {
          grid-template-columns: repeat(3, 1fr);
          row-gap: 28px;
        }

        .story-intro,
        .ecosystem-head,
        .integration-grid,
        .founder-grid,
        .contact-grid {
          grid-template-columns: 1fr;
          gap: 48px;
        }

        .timeline {
          grid-template-columns: repeat(2, 1fr);
          row-gap: 48px;
        }

        .timeline::before {
          display: none;
        }

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

        .company-card {
          min-height: auto;
        }

        .contact-copy {
          position: static;
        }

        .footer-grid {
          grid-template-columns: 1.4fr 1fr 1fr;
        }

        .footer-brand {
          grid-column: 1 / -1;
        }
      }

      @media (max-width: 680px) {
        .container {
          width: min(calc(100% - 32px), var(--content));
        }

        .section {
          padding: 88px 0;
        }

        .hero {
          padding-bottom: 24px;
        }

        .hero-grid {
          min-height: 790px;
        }

        .eyebrow {
          margin-bottom: 22px;
          font-size: 10px;
          letter-spacing: 0.2em;
        }

        .hero h1 {
          font-size: clamp(39px, 12vw, 56px);
        }

        .hero-lead {
          font-size: 16px;
          line-height: 1.65;
        }

        .hero-actions {
          display: grid;
          grid-template-columns: 1fr;
        }

        .btn {
          width: 100%;
          min-width: 0;
        }

        .hero-visual {
          top: 480px;
          height: 450px;
        }

        .hero-person {
          right: -82px;
          width: 92vw;
          max-height: 470px;
        }

        .hero-monogram {
          width: 100%;
          opacity: 0.5;
        }

        .hero-proof {
          grid-template-columns: 1fr;
          border-radius: 18px;
        }

        .proof-stat,
        .proof-companies {
          min-height: 84px;
          border-left: 0 !important;
        }

        .proof-stat + .proof-stat,
        .proof-companies {
          border-top: 1px solid rgba(112, 168, 255, 0.25);
        }

        .proof-companies {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          padding-inline: 16px;
        }

        .proof-companies img {
          max-width: 86px;
          max-height: 32px;
        }

        .client-names {
          grid-template-columns: repeat(2, 1fr);
        }

        .story-intro {
          margin-bottom: 54px;
        }

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

        .milestone {
          padding: 0 0 0 42px;
        }

        .milestone::before {
          top: 8px;
          left: 0;
          border-color: var(--paper);
        }

        .company-card {
          padding: 32px 24px;
        }

        .integration-step {
          grid-template-columns: 46px 1fr;
          padding: 24px 20px;
        }

        .testimonials-head {
          align-items: flex-start;
          flex-direction: column;
        }

        .testimonial-stage {
          min-height: 580px;
        }

        .testimonial-slide,
        .testimonial-slide.active {
          grid-template-columns: 1fr;
        }

        .quote-copy {
          padding: 34px 26px;
        }

        .quote-copy blockquote {
          font-size: 23px;
        }

        .quote-person {
          min-height: 190px;
          padding: 28px 26px;
        }

        .quote-person .client-mark {
          margin-bottom: 46px;
          font-size: 34px;
        }

        .founder-grid {
          gap: 38px;
        }

        .contact-form {
          grid-template-columns: 1fr;
          padding: 28px 20px;
        }

        .field.full,
        .consent,
        .submit-row {
          grid-column: auto;
        }

        .submit-row {
          align-items: flex-start;
          flex-direction: column;
        }

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

        .footer-brand {
          grid-column: 1 / -1;
        }

        .footer-bottom {
          flex-direction: column;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }

        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
        }

        .reveal {
          opacity: 1;
          transform: none;
        }
      }
    

/* ==========================================================================
   HIGH SPECIFICITY OVERRIDES FOR ELEMENTOR THEME BUILDER HEADER & FOOTER
   ========================================================================== */

/* Resets for Elementor Location Containers */
.elementor-location-header,
.elementor-location-header > .elementor,
.elementor-location-header .e-con,
.elementor-location-header .elementor-element,
.elementor-location-header .elementor-widget-html {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: none !important;
    overflow: visible !important;
    transform: none !important;
    contain: none !important;
    --content-width: 100% !important;
    --container-max-width: none !important;
}

.elementor-location-footer,
.elementor-location-footer > .elementor,
.elementor-location-footer .e-con,
.elementor-location-footer .elementor-element,
.elementor-location-footer .elementor-widget-html {
    background: #050821 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: none !important;
}

/* Force .site-header full viewport width */
.site-header {
    width: 100vw !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

/* Force .site-footer full viewport width */
.site-footer {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

/* Elementor widget container resets */
.elementor-widget-html .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
    overflow: visible !important;
}
