
    :root {
      --color-black: #000000;
      --color-white: #ffffff;
      --color-blue: #0057ff;
      --color-grey-bg: #f5f5f5;
      --color-text: #333333;
      --color-text-light: #6f6f6f;
      --color-border: rgba(0,0,0,0.1);
      --color-border-light: #ddd;
      --font-main: 'Roboto', sans-serif;
      --container-width: 1200px;
    }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: var(--font-main); color: var(--color-text); background: var(--color-white); -webkit-font-smoothing: antialiased; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }
    .container { max-width: var(--container-width); margin: 0 auto; padding: 0 30px; position: relative; }

    /* Navbar */
    .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 15px 0; background: transparent; transition: background 0.3s; }
    .navbar.scrolled { background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); }
    .navbar.white-nav { background: var(--color-white); box-shadow: 0 1px 0 var(--color-border); }
    .navbar.white-nav .nav-link { color: var(--color-text); }
    .navbar.white-nav .nav-link.has-dropdown::after { border-color: var(--color-text); }
    .navbar.white-nav.scrolled { background: rgba(255,255,255,0.97); }
    .navbar .container { display: flex; align-items: center; justify-content: space-between; }
    .nav-logo img { height: 24px; width: auto; }
    .navbar.white-nav .nav-logo img { filter: none; }
    .nav-menu { display: flex; align-items: center; gap: 40px; }
    .nav-link { color: var(--color-white); font-size: 14px; font-weight: 400; transition: opacity 0.2s; cursor: pointer; position: relative; }
    .nav-link:hover { opacity: 0.7; }
    .nav-link.active { opacity: 0.7; }
    .nav-link.has-dropdown { display: flex; align-items: center; gap: 6px; }
    .nav-link.has-dropdown::after { content: ''; border: solid var(--color-white); border-width: 0 1.5px 1.5px 0; display: inline-block; padding: 2.5px; transform: rotate(45deg); margin-top: -3px; }
    .dropdown-menu { position: absolute; top: 100%; left: -20px; background: var(--color-white); border-radius: 8px; padding: 16px 0; min-width: 260px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.25s; }
    .nav-link.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown-menu .dropdown-header { padding: 8px 24px 12px; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-light); }
    .dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 24px; font-size: 14px; color: var(--color-text); transition: background 0.15s; }
    .dropdown-menu a:hover { background: var(--color-grey-bg); }
    .dropdown-menu a img { width: 20px; height: 20px; }

    /* Sections */
    .section-60 { padding: 80px 0; position: relative; }
    .section-60.grey { background: var(--color-grey-bg); }
    .section-60.top-line { border-top: 1px solid var(--color-border-light); }
    .section-60.bot-line { border-bottom: 1px solid var(--color-border-light); }
    .blue-upper-text { font-size: 14px; font-weight: 500; color: var(--color-blue); margin-bottom: 12px; }
    .h1-black { font-size: 56px; font-weight: 700; line-height: 1.1; color: var(--color-black); margin-bottom: 16px; }
    .h1-white { font-size: 64px; font-weight: 700; line-height: 1.1; color: var(--color-white); margin-bottom: 20px; }
    .h2 { font-size: 36px; font-weight: 700; line-height: 1.2; color: var(--color-black); margin-bottom: 12px; }
    .h2.dark { font-size: 28px; }
    .h3 { font-size: 20px; font-weight: 600; line-height: 1.3; color: var(--color-black); margin-bottom: 8px; }
    .paragraph-18 { font-size: 18px; line-height: 1.6; color: var(--color-text-light); max-width: 900px; }
    .paragraph-16 { font-size: 16px; line-height: 1.6; color: var(--color-text-light); }
    .left-text-block { max-width: 900px; margin-bottom: 50px; }

    /* Grid */
    .container-grid { max-width: var(--container-width); margin: 0 auto; padding: 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 60px; }
    .container-grid:last-child { margin-bottom: 0; }
    .grid-div-flexbox { display: flex; flex-direction: column; gap: 16px; }
    .grid-div-icon { width: 28px; height: 28px; }
    .edge-img-holder img { width: 100%; border-radius: 8px; }

    /* Buttons */
    .blue-button { display: inline-block; padding: 14px 28px; background: var(--color-blue); color: var(--color-white); border: none; border-radius: 6px; font-size: 14px; font-weight: 500; font-family: var(--font-main); cursor: pointer; transition: background 0.2s; white-space: nowrap; text-align: center; }
    .blue-button:hover { background: #004ae0; }
    .arrow-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--color-black); margin-top: 4px; transition: gap 0.2s; }
    .arrow-link:hover { gap: 10px; }
    .arrow-link::after { content: '›'; font-size: 18px; line-height: 1; }
    .button-wrapper { display: flex; flex-direction: column; gap: 8px; margin-top: 25px; }

    /* Forms */
    .text-field { flex: 1; padding: 14px 20px; border: 1px solid var(--color-border-light); border-radius: 6px; background: var(--color-white); color: var(--color-text); font-size: 14px; font-family: var(--font-main); outline: none; transition: border-color 0.2s; }
    .text-field.dark { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: var(--color-white); }
    .text-field.dark::placeholder { color: rgba(255,255,255,0.5); }
    .text-field::placeholder { color: #999; }
    .text-field:focus { border-color: var(--color-blue); }
    .form-horizontal { display: flex; gap: 10px; max-width: 530px; }
    textarea.text-field { min-height: 120px; resize: vertical; }

    /* Cards */
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
    .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
    .card { border: 1px solid var(--color-border-light); border-radius: 8px; padding: 24px; }

    /* Black CTA */
    .black-cta-section { background: var(--color-black); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
    .black-cta-section .h1-white { font-size: 42px; max-width: 700px; margin: 0 auto 40px; }
    .black-cta-section .form-horizontal { justify-content: center; max-width: 530px; margin: 0 auto; }

    /* Lines */
    .lines-holder { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: var(--container-width); height: 100%; display: flex; justify-content: space-between; pointer-events: none; z-index: 0; padding: 0 30px; }
    .line { width: 1px; height: 100%; background: var(--color-border); }
    .line.white { background: rgba(255,255,255,0.1); }

    /* Footer */
    .footer { background: var(--color-black); padding: 50px 0; }
    .footer .container { display: flex; align-items: center; justify-content: space-between; }
    .footer-logo img { height: 20px; filter: brightness(100); }
    .footer-links { display: flex; gap: 24px; }
    .footer-link { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
    .footer-link:hover { color: var(--color-white); }
    .copyright { font-size: 14px; color: rgba(255,255,255,0.4); }

    /* Page hero */
    .page-hero { padding: 140px 0 60px; }
    .page-hero.black { background: var(--color-black); }
    .page-hero .blue-upper-text { margin-bottom: 8px; }

    /* FAQ */
    .faq-item { border-bottom: 1px solid var(--color-border-light); padding: 20px 0; }
    .faq-question { font-size: 18px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
    .faq-question::after { content: '+'; font-size: 24px; color: var(--color-text-light); }
    .faq-answer { padding-top: 12px; font-size: 16px; line-height: 1.6; color: var(--color-text-light); display: none; }
    .faq-item.open .faq-answer { display: block; }
    .faq-item.open .faq-question::after { content: '−'; }

    /* Contact / Demo form */
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-grid .full-width { grid-column: 1 / -1; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label { font-size: 14px; font-weight: 500; color: var(--color-text); }

    /* Feature list */
    .feature-list { list-style: none; padding: 0; margin-top: 16px; }
    .feature-list li { padding: 8px 0; padding-left: 24px; position: relative; font-size: 16px; color: var(--color-text-light); }
    .feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--color-blue); font-weight: 700; }

    /* Responsive */
    @media (max-width: 991px) {
      .h1-white, .h1-black { font-size: 38px; }
      .h2 { font-size: 28px; }
      .container-grid, .grid-2 { grid-template-columns: 1fr; }
      .nav-menu { gap: 24px; }
      .grid-3 { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 767px) {
      .h1-white, .h1-black { font-size: 30px; }
      .form-horizontal { flex-direction: column; }
      .footer .container { flex-direction: column; gap: 16px; text-align: center; }
      .nav-menu { display: none; }
    }

    /* ========== Webflow Class Compatibility ========== */
    ._60-section { padding: 80px 0; position: relative; }
    ._60-section.grey { background: var(--color-grey-bg); }
    ._60-section.no-top-desk { padding-top: 40px; }
    ._60-section.bot-line { border-bottom: 1px solid var(--color-border-light); }
    ._60-section.top-line { border-top: 1px solid var(--color-border-light); }
    ._120-section { padding: 120px 0; background: var(--color-black); text-align: center; }
    ._120-section .h1-white, ._120-section h1 { font-size: 42px; color: var(--color-white); }
    ._120-section p, ._120-section .paragraph-16, ._120-section ._16-paragraph { color: rgba(255,255,255,0.7); }
    .black-cta-section._120 { padding: 120px 0; }

    .container { max-width: var(--container-width); margin: 0 auto; padding: 0 30px; position: relative; }
    .container.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 40px; }
    .container.foot { display: flex; align-items: center; justify-content: space-between; }
    .container.nav { display: flex; align-items: center; gap: 40px; }

    .heading-holder { max-width: 600px; margin-bottom: 40px; }
    .heading-holder._600-max { max-width: 600px; }
    .left-text-block._900 { max-width: 900px; margin-bottom: 50px; }
    .left-text-block._100 { max-width: 100%; }

    /* Typography classes */
    .h1 { font-size: 56px; font-weight: 700; line-height: 1.1; margin-bottom: 16px; }
    .h1.black { color: var(--color-black); }
    .h1.white { color: var(--color-white); }
    h1.h1-white, .h1-white { font-size: 56px; font-weight: 700; line-height: 1.1; color: var(--color-white); margin-bottom: 20px; }
    h2.h2, .h2 { font-size: 36px; font-weight: 700; line-height: 1.2; color: var(--color-black); margin-bottom: 12px; }
    .h2.dark { font-size: 28px; }
    h3.h3, .h3 { font-size: 20px; font-weight: 600; line-height: 1.3; color: var(--color-black); margin-bottom: 8px; }
    ._18-paragraph { font-size: 18px; line-height: 1.6; color: var(--color-text-light); }
    ._16-paragraph { font-size: 16px; line-height: 1.6; color: var(--color-text-light); }
    ._16-paragraph.white { color: rgba(255,255,255,0.8); }
    ._14-link { font-size: 14px; color: var(--color-text-light); display: block; margin-bottom: 4px; }
    .blue-upper-text { font-size: 14px; font-weight: 500; color: var(--color-blue); margin-bottom: 12px; }

    /* Grid and layout */
    .w-layout-grid { display: grid; gap: 24px; }
    .w-layout-grid.grid { grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
    .w-layout-grid.grid-2 { grid-template-columns: 1fr 1fr; gap: 30px; }
    .w-layout-grid.grid-3 { grid-template-columns: 1fr 1fr; gap: 30px; }
    .w-layout-grid.grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; }
    .w-layout-grid.grid-5 { grid-template-columns: 1fr 1fr; gap: 24px; }

    /* Form elements */
    .text-field.w-input, input.w-input { flex: 1; padding: 14px 20px; border: 1px solid var(--color-border-light); border-radius: 6px; background: var(--color-white); color: var(--color-text); font-size: 14px; font-family: var(--font-main); outline: none; width: 100%; }
    .text-field.dark.w-input { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: var(--color-white); }
    .blue-button.w-button, input.blue-button, a.blue-button { display: inline-block; padding: 14px 28px; background: var(--color-blue); color: var(--color-white); border: none; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; text-align: center; text-decoration: none; }
    .blue-button.w-button:hover { background: #004ae0; }
    .submit-button.w-button, .black-button.w-button { display: inline-block; padding: 14px 28px; background: var(--color-black); color: var(--color-white); border: none; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; }
    .submit-button.w-button:hover { background: #222; }
    .w-form { max-width: 100%; }
    .form { display: flex; flex-direction: column; gap: 12px; }
    .form.horizontal { flex-direction: row; gap: 10px; }
    .form-block { margin-top: 24px; }
    .form-block._530-max { max-width: 530px; }
    select.w-select { padding: 14px 20px; border: 1px solid var(--color-border-light); border-radius: 6px; font-size: 14px; font-family: var(--font-main); outline: none; width: 100%; appearance: none; background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 16px center; }
    textarea.w-input { min-height: 120px; resize: vertical; }

    /* Cards and divs */
    .white-grid-card { background: var(--color-white); border: 1px solid var(--color-border-light); border-radius: 8px; padding: 24px; position: relative; }
    .service-div { border: 1px solid var(--color-border-light); border-radius: 8px; overflow: hidden; padding-bottom: 24px; }
    .service-div.left { }
    .service-thumbnail { width: 100%; height: 180px; object-fit: cover; margin-bottom: 20px; }
    .service-thumbnail._100-height { height: 120px; }
    .service-div .h3, .service-div ._16-paragraph, .service-div p { padding: 0 24px; }
    .resource-div { border: 1px solid var(--color-border-light); border-radius: 8px; overflow: hidden; display: flex; align-items: center; gap: 20px; position: relative; cursor: pointer; }
    .resource-div:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

    /* Grid div flexbox for feature rows */
    .grid-div-flexbox { display: flex; flex-direction: column; gap: 12px; }
    .grid-div-icon { width: 28px; height: 28px; }
    .edge-img-holder { position: relative; }
    .edge-img-holder.right { }
    .edge-img-holder.top-margin-mob { }
    .edge-img-holder.relative { }
    ._100-img { width: 100%; border-radius: 8px; }

    /* Arrow links */
    .arrow-link.visible { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--color-black); }
    .arrow-link.visible::after { content: '›'; font-size: 18px; }
    .arrow-link.visible:hover { gap: 10px; }
    a.arrow-link.w-button { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--color-black); background: none; padding: 4px 0; }
    a.arrow-link.w-button::after { content: '›'; font-size: 18px; }

    /* Button wrapper */
    .button-wrapper { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
    .button-wrapper._25-top { margin-top: 25px; }
    .button-wrapper.vertical { flex-direction: column; }

    /* Misc */
    ._530-max { max-width: 530px; }
    ._2-rectangles-vector { width: 50px; margin-bottom: 16px; }
    ._2-rectangles-vector.centered { margin: 0 auto; }
    .white-logo { height: 24px; margin: 0 auto 30px; filter: brightness(100); }
    .div-block-5 { display: flex; gap: 24px; }
    .copyright { font-size: 14px; color: rgba(255,255,255,0.4); }

    /* FAQ accordion */
    .faq-wrapper { border-bottom: 1px solid var(--color-border-light); }
    .faq-question-bar { padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
    .faq-question-bar h3, .faq-question-bar .h3 { margin-bottom: 0; }
    .faq-answer-wrapper { overflow: hidden; max-height: 0; transition: max-height 0.3s; }
    .faq-answer-wrapper p { padding-bottom: 20px; }

    /* Hidden elements */
    .w-form-done, .w-form-fail { display: none; }
    .old-sections { display: none; }
    .sign-in-mob { display: none; }
    .back-button { display: none; }
    .mobile-brand-wrapper { display: none; }
    .w-dropdown-list { display: none; }
    [style*="opacity: 0"] { opacity: 1 !important; }

    /* Lottie placeholders - show nothing */
    [data-animation-type="lottie"] { display: none; }

    /* CTA section */
    .absolute-right-div { position: absolute; right: -50px; bottom: -50px; pointer-events: none; }
    .space-triangles { width: 400px; opacity: 0.3; }

    /* Contact/demo form layout */
    .form-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

    @media (max-width: 991px) {
      .h1, h1 { font-size: 38px !important; }
      .container.grid, .w-layout-grid.grid, .w-layout-grid.grid-2, .w-layout-grid.grid-4 { grid-template-columns: 1fr; }
      .form-wrapper { grid-template-columns: 1fr; }
    }
    @media (max-width: 767px) {
      .h1, h1 { font-size: 30px !important; }
      .form.horizontal { flex-direction: column; }
      .footer .container, .container.foot { flex-direction: column; gap: 16px; text-align: center; }
      .nav-menu { display: none; }
    }
