/* ============================================
   CSS Variables - Design Tokens from Figma
   ============================================ */
:root {
    /* Colors */
    --primary: #4a6117;
    --primary-100: #edefe8;
    --secondary: #c84c09;
    --secondary-300: #f4f6b9;
    --black: #121212;
    --white: #ffffff;
    --neutral-800: #5f5c64;
    --yellow: #e8ec67;
    --border: #e3e3e3;

    /* Typography */
    --font-family-body: 'Inter', sans-serif;
    --font-family-heading: 'Inter', sans-serif;

    /* Font Sizes - Desktop */
    --font-size-display: 48px;
    --font-size-h1: 34px;
    --font-size-h2: 28px;
    --font-size-h4: 18px;
    --font-size-h5: 16px;
    --font-size-h6: 14px;
    --font-size-body-xlarge: 18px;
    --font-size-body-large: 16px;
    --font-size-body-medium: 16px;
    --font-size-body-sm: 12px;
    --font-size-button: clamp(1rem, -0.375rem + 2vw, 1.2rem);
    --font-size-input: 13px;
    --font-size-helper: 12px;

    /* Font Sizes - Mobile */
    --font-size-display-mobile: 32px;
    --font-size-h1-mobile: 26px;
    --font-size-h2-mobile: 22px;
    --font-size-h4-mobile: 16px;
    --font-size-h5-mobile: 15px;
    --font-size-h6-mobile: 13px;
    --font-size-body-xlarge-mobile: 16px;
    --font-size-body-large-mobile: 15px;
    --font-size-body-medium-mobile: 14px;
    --font-size-button-mobile: clamp(1rem, -0.125rem + 2vw, 1.5rem);

    /* Line Heights */
    --line-height-display: 56px;
    --line-height-h1: 40px;
    --line-height-h2: 36px;
    --line-height-h4: 24px;
    --line-height-h5: 22px;
    --line-height-h6: 20px;
    --line-height-body-xlarge: 24px;
    --line-height-body-large: 24px;
    --line-height-body-medium: 20px;
    --line-height-body-sm: 18px;
    --line-height-button: 20px;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    --spacing-3xl: 48px;
    --spacing-4xl: 64px;
    --spacing-5xl: 96px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    /* Shadows */
    --shadow-sm: 0px 0px 24px 0px rgba(20, 20, 20, 0.1);
    --shadow-md: 0px 4px 64px 4px rgba(73, 96, 23, 0.25);
    --shadow-lg: 0px 0px 16px 24px rgba(255, 255, 255, 0.75);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-body);
    font-weight: 400;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-heading);
    font-weight: 600;
    color: var(--black);
}

.work {
    font-size: 26px;
    font-weight: 600;
    color: var(--black);
}

@media (max-width: 393px) {
    .work {
        font-size: 18px;
    }
}

.section-title {
    font-size: var(--font-size-h2);
    font-weight: 600;
    line-height: var(--line-height-h2);
    letter-spacing: -0.5px;
    margin-bottom: 1px;
}

.section-title.white {
    color: var(--white);
}

.section-title.center {
    text-align: center;
}

.section-description {
    /* font-size: var(--font-size-body-xlarge); */
    font-size: var(--Size-Body-XLarge, 17px);
    line-height: var(--line-height-body-xlarge);
    color: #000000;
    margin-bottom: 4px;
}

.section-description2 {
    /* font-size: var(--font-size-body-xlarge); */
    font-size: var(--Size-Body-XLarge, 14px);
    line-height: 17px;
    color: #000000;
    margin-bottom: 4px;
}

.section-description.white {
    color: var(--white);
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--primary);
    color: var(--white) !important;
    font-size: var(--font-size-body-large);
    font-weight: 300;
    line-height: var(--line-height-button);
    border-radius: 6px;
    transition: opacity 0.2s;
    border: none;
    cursor: pointer;
    pointer-events: auto;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: transparent;
    color: var(--black);
    font-size: var(--font-size-body-large);
    font-weight: 500;
    line-height: var(--line-height-button);
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    pointer-events: auto;
}

.btn-outline:hover {
    opacity: 0.7;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: var(--white);
    color: var(--primary);
    font-size: var(--font-size-button);
    font-weight: 500;
    line-height: var(--line-height-button);
    border-radius: var(--radius-sm);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--white);
    font-size: var(--font-size-button);
    font-weight: 500;
    line-height: var(--line-height-button);
    border: 1px solid var(--white);
    border-radius: var(--radius-sm);
    min-width: 120px;
}


/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(to bottom, rgba(237, 239, 232, 0) 18.692%, var(--primary-100) 100%);
    padding: 96px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: -64px;
}

.hero-title {
    font-size: var(--font-size-display);
    font-weight: 700;
    line-height: var(--line-height-display);
    letter-spacing: -2px;
    color: var(--black);
}

.hero-subtitle {
    font-size: var(--font-size-body-xlarge);
    line-height: var(--line-height-body-xlarge);
    color: var(--black);
    width: 100%;
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-visual {
    height: 476px;
    width: 100vw;
    position: relative;
    margin-top: -100px;
    overflow: visible;
    margin-left: 20px;
    pointer-events: none;
}

.hero-icons {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-icons-mobile {
    display: none;
}

@media (max-width: 793px) {
    .hero-icons img {
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: contain;
        display: none !important;
    }

    .hero-icons-mobile {
        display: block;
    }
}

.hero-icons img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

/* ============================================
   Problem Section
   ============================================ */
.problem-section {
    padding: 44px 0;
    height: 430px;
}

.problem-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    /* align-items: center; */
    height: 400px !important;
}

.problem-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 24px 0;

}

.problem-image {
    flex: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.problem-image img {
    /* width: 750px; */
    height: 65%;
    object-fit: cover;
    border-radius: 10px !important;
    margin-left: 60px;
}


.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 100px;
}

.feature-item {
    display: flex;
    /* gap: 10px; */
    align-items: flex-start;
    padding: 0;
    border-radius: var(--radius-sm);
}

.feature-item.white-bg {
    background-color: var(--white);
    padding: 0;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon.primary {
    background-color: var(--primary);
}

.feature-icon.yellow {
    background-color: var(--yellow);
}

.feature-icon img {
    width: 24px;
    height: 24px;
}

.feature-text {
    /* font-size: var(--font-size-h4); */
    margin-left: 5px;
    font-size: var(--Size-Display-H4, 14px);
    font-weight: 600;
    line-height: var(--line-height-h4);
    color: var(--black);
    flex: 1;
    width: 100%;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 20px;
}

.feature-title {
    font-size: var(--Size-Display-H4, 16px);
    font-weight: 600;
    line-height: var(--line-height-h4);
    color: var(--black);
}

.feature-desc {
    font-size: var(--Size-Body-Medium, 13px);
    line-height: 18px;
    color: #000000;
    width: 90%;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    background-color: var(--Primary-Primary100, #EDEFE8);
    background-image: url("./assets/Union.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    padding-bottom: 44px;
    position: relative;
}

.how-it-works-container {
    padding-top: 40px !important;
    width: 100%;
    height: 100%;
}

.how-it-works .section-title {
    text-align: center;
    margin-bottom: 32px;

}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.steps-row {
    display: flex;
    gap: 24px;
}

.step-card {
    flex: 1;
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--yellow);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-h4);
    font-weight: 600;
    color: #121113;
}

.step-title {
    font-size: var(--Size-Display-H4, 17px);
    font-weight: 600;
    line-height: var(--line-height-h4);
    color: var(--black);
}

.step-description {
    font-size: var(--Size-Body-Medium, 14px);
    line-height: var(--line-height-body-medium);
    color: var(--black);
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
}

.cta-text {
    font-size: var(--font-size-body-xlarge);
    line-height: var(--line-height-body-xlarge);
    color: var(--black);
    text-align: center;
}

/* ============================================
   Everything Section
   ============================================ */
.everything-section {
    padding: 64px 0;
}

.everything-content {
    display: flex;
    gap: 32px;
    /* align-items: center; */
    justify-content: center;
    flex-wrap: wrap;
}

.everything-image {
    width: 503px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.everything-image img {
    /* width: 550px; */
    height: 90%;
    object-fit: cover;
}

.everything-text {
    flex: 1;
    max-width: 710px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px 0;
}

/* ============================================
   NRS Integration Section
   ============================================ */
.nrs-section {
    background-color: var(--primary);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.nrs-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nrs-visual {
    flex: 0 0 618px;
    background-color: var(--primary-100);
    border-radius: var(--radius-sm);
    height: 200px;
    position: relative;
    z-index: 3;
    margin: 0 auto;
}

.nrs-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px 0;
    position: relative;
    z-index: 2;
}

/* ============================================
   Endorsement Section
   ============================================ */
.endorsement-section {
    padding: 64px 0;
}

.endorsement-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.testimonials {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.testimonial-card {
    flex: 1;
    max-width: 402px;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
}

.testimonial-content {
    background-color: var(--primary-100);
    padding: 0px;
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quote-icon {
    width: 32px;
    height: 24px;
    margin: 30px 30px 2px 30px;
}

.testimonial-text {
    font-size: 15px;
    line-height: var(--line-height-body-medium);
    color: var(--black);
    margin-left: 30px;
    width: 85%;
}

.testimonial-author {
    display: flex;
    align-items: start;
    gap: 8px;
    padding: 14px;
    background-color: var(--white);
    border-radius: 0 var(--radius-lg) 0 0;
    position: relative;
    width: 70%;
    height: 70px;
}

.author-image {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 2px solid var(--yellow);
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    line-height: var(--line-height-h6);
    color: var(--black);
}

.author-title {
    font-size: 10.7px;
    line-height: 16px;
    color: var(--neutral-800);
}

/* ============================================
   Built to Fit Section
   ============================================ */
.built-section {
    background-color: var(--primary-100);
    padding: 64px 0;
}

.built-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    /* align-items: flex-start; */
}

.built-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px 0;
}

.built-image {
    flex: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.built-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item-horizontal {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 64px 0;
    background-color: var(--white);
}

.cta-content {
    background-color: #3d5212;
    padding: 32px 0 32px 48px;
    border-radius: 16px;
    display: flex;
    align-items: stretch;
    /* justify-content: space-between; */
    gap: 0;
    position: relative;
    overflow: hidden;
    min-height: 290px;
}

.cta-text-block {
    flex: 1;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 2;
    justify-content: center;
}

.cta-title {
    font-size: clamp(24px, 4vw, 30px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.4px;
    color: var(--white);
    width: 100%;
    white-space: nowrap;
}

.cta-description {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    color: #e6edd8;
    margin-top: 10px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 28px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cta-btn--solid {
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    color: var(--color-dark-green) !important;
    background: #ffffff;
    width: 160px;
}

/* .cta-btn--solid:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
} */

.cta-btn--outline {
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    color: #ffffff !important;
    background: transparent;
}

.cta-btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.cta-image {
    position: absolute;
    right: -10px;
    bottom: -2px;
    width: 465px;
    height: auto;
    object-fit: contain;
    display: block;
    z-index: 1;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--primary-100);
    padding: 64px 0;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-logo-section {
    max-width: 332px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-logo img {
    height: 28px;
    width: auto;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 20px;
    line-height: 24px;
    color: var(--black);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    color: var(--black);
}

.contact-value {
    font-size: var(--font-size-body-sm);
    line-height: var(--line-height-body-sm);
    color: var(--neutral-800);
}

.social-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-link-group {
    width: 188px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link-title {
    font-size: var(--font-size-h5);
    font-weight: 600;
    line-height: var(--line-height-h5);
    color: var(--black);
    margin-bottom: 8px;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link-list li a {
    font-size: var(--font-size-body-large);
    line-height: var(--line-height-body-large);
    color: var(--black);
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-link-list li a:hover {
    opacity: 1;
}

.footer-divider {
    height: 1px;
    background-color: var(--neutral-800);
    border-bottom: 0.4px solid var(--neutral-800);
    margin: 32px 0;
}

.footer-newsletter {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 32px;
}

.newsletter-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-title {
    font-size: var(--font-size-h2);
    font-weight: 600;
    line-height: var(--line-height-h2);
    letter-spacing: -0.5px;
    color: var(--black);
}

.newsletter-description {
    font-size: var(--font-size-body-large);
    line-height: var(--line-height-body-large);
    color: var(--black);
}

.newsletter-form {
    flex: 1;
    display: flex;
    gap: 24px;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 12px 24px 12px 16px;
    border: 0.4px solid var(--black);
    border-radius: var(--radius-sm);
}

.email-icon {
    width: 16px;
    height: 16px;
}

.newsletter-input input {
    flex: 1;
    border: none;
    background: none;
    font-size: var(--font-size-body-sm);
    line-height: var(--line-height-body-sm);
    color: var(--neutral-800);
    outline: none;
}

.newsletter-input input::placeholder {
    color: var(--neutral-800);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: var(--font-size-body-sm);
    line-height: var(--line-height-body-sm);
    color: var(--neutral-800);
}

.footer-badges {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-badges img {
    height: 36px;
    width: auto;
}


/* ============================================
   Floating Chatbot
   ============================================ */
.floating-chatbot {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 64px;
    height: 64px;
    background-color: var(--yellow);
    border-radius: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 64px 4px rgba(73, 96, 23, 0.25);
    z-index: 999;
    cursor: pointer;
    visibility: visible !important;
    opacity: 1 !important;
}

.floating-chatbot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    display: block;
}

.chatbot-fallback {
    font-size: 32px;
    display: none;
    align-items: center;
    justify-content: center;
}

.floating-chatbot:has(img[style*="display: none"]) .chatbot-fallback {
    display: flex;
}

.ai {
    border-radius: 32px;
}

/* ============================================
   Tablet Responsive Styles (769px - 1024px)
   ============================================ */
@media (max-width: 1024px) and (min-width: 769px) {
    .cta-section {
        padding: 56px 0;
    }

    .cta-content {
        padding: 40px 32px;
        gap: 32px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-image {
        width: 160px;
        flex: 0 0 160px;
    }
}

/* ============================================
   Integration Section Styles
   ============================================ */

/* Variables based on previous context */
:root {
    --color-dark-green: #4F6F2F;
    --color-darker-green: #384e20;
    --color-bg-green: #566B38;
    /* Background of the section */
    --color-cream-card: #F9F9F4;
    --color-text-main: #111;
}

.integration-section {
    background: url("./assets/n-bg.png") no-repeat center center/cover;
    padding: 80px 0;
    color: #fff;
}

.integration-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.integration-visual {
    /* background-color: var(--color-cream-card); */
    border-radius: 16px;
    /* padding: 8px 56px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
    flex: 1.5;
    min-height: 320px;
    flex-direction: row;
    /* flex-wrap: nowrap; */
    width: 65%;
    margin-left: 30px;
}

.flow-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.flow-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.flow-arrow-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.flow-card {
    background: transparent;
    border-radius: 8px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: none;
    min-height: auto;
    min-width: auto;
}

.mcflow-card {
    min-width: auto;
}

.logo-img {
    max-width: 240px;
    max-height: 220px;
    object-fit: contain;
}

.mcflow-logo-img {
    max-width: 220px;
    max-height: 290px;
    object-fit: contain;
}

.flow-label {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
}

.flow-label-inline {
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
    flex-shrink: 0;
}

.flow-label-center {
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
    flex-shrink: 0;
}

.flow-middle-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    justify-content: center;
    flex-shrink: 0;
    min-height: 100%;
}

.flow-arrow-double {
    color: #333;
    font-size: 16px;
    font-weight: 300;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1;
}

.opacity-0 {
    opacity: 0;
}

.nrs-card {
    position: relative;
}

.flow-arrow {
    color: #333;
    font-size: 24px;
    font-weight: 300;
    flex-shrink: 0;
}

.check-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background-color: var(--color-dark-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid #fff;
}

.integration-content {
    flex: 1;
}

.integration-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.2;
}

.integration-content p {
    font-size: 16px;
    margin-bottom: 6px;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

.btn-light {
    background-color: #fff;
    color: #000000 !important;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
    margin-top: 30px;
}

.btn-light:hover {
    background-color: #f0f0f0;
}

@media (max-width: 992px) {
    .integration-container {
        flex-direction: column;
    }

    .integration-visual {
        width: 100%;
        overflow-x: auto;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .integration-section {
        background-position: center top;
    }

    .integration-visual {
        padding-bottom: 0px;
        margin-top: 0px;
        flex-direction: row !important;
        width: 100%;
        margin-left: 0;
    }

    .integration-container {
        gap: 32px;
    }

    .integration-visual img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .testimonial-author {

        align-items: start;
        /* gap: 8px;
    padding: 1px; */
        background-color: var(--white);
        border-radius: 0 var(--radius-lg) 0 0;
        width: 80% !important;
        height: 70px;
    }

    .author-name {
        font-size: 11px !important;
    }

    .cta-title {

        width: 100% !important;
    }
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Typography Mobile */
    .section-title {
        font-size: var(--font-size-h2-mobile);
        line-height: 28px;
    }

    .section-description {
        font-size: 16px;
        /* Reduced from 20px for better fit */
        line-height: 1.5;
    }

    .section-description2 {
        font-size: 14px;
        line-height: 1.6;
    }


    /* Hero Section Mobile */

    .mobile-menu-toggle {
        display: block;
        padding: 16px;
    }

    /* Navbar Mobile */
    /* .navbar {
        height: auto;
        min-height: 67px;
    }

    .navbar-container {
        padding: 12px 8px;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }


    .mobile-menu-toggle img {
        width: 24px;
        height: 24px;
    }

    .logo img {
        height: 24px; 
    }
*/
    /* Mobile Menu Styles */
    .mobile-menu-overlay {
        display: block;
    }

    .mobile-menu-drawer {
        width: 100%;
        max-width: 393px;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Typography Mobile */
    .section-title {
        font-size: var(--font-size-h2-mobile);
        line-height: 28px;
    }

    .section-description {
        font-size: 20px;
        line-height: 28px;
    }

    .hero-title {
        font-size: var(--font-size-display-mobile);
        line-height: normal;
        /* Fix: Overlapping text */
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 12.2px;
        line-height: 1.4;
        /* Fix: Overlapping text */
        width: 100%;
        font-weight: 500;
    }

    /* Buttons Mobile */

    .btn-outline,
    .btn-white,
    .btn-outline-white {
        padding: 12px 24px;
        font-size: var(--font-size-button-mobile);
        width: 100%;
    }

    .btn-primary {
        padding: 12px 24px;
        width: 45vh !important;
        font-size: 13px;
    }

    /* Hero Mobile */
    .hero {
        padding: 20px 0 20px;
        /* Reduced excessive bottom padding */
    }

    .hero-container {
        padding: 0 16px;
        gap: 30px;
    }

    .hero-content {
        padding: 24px;
        margin-bottom: -64px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .hero-visual {
        height: auto;
        min-height: 220px;
        margin-top: -20px;
        margin-left: 0;
        width: 100%;
        overflow: hidden;
    }

    .hero-icons {
        padding: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-icons img {
        height: auto;
        width: 160%;
        max-width: none;
    }

    /* Problem Section Mobile */
    .problem-section {
        padding: 32px 0;
        height: auto;
    }

    .problem-content {
        flex-direction: column;
        gap: 24px;
        height: auto !important;
    }

    .problem-text {
        padding: 16px 0;
    }

    .problem-image {
        height: auto;
        /* Fix: Remove fixed height */
        min-height: auto;
    }

    .problem-image img {
        width: 100%;
        height: auto;
        margin-left: 0;
        /* Fix: Centering image on mobile */
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        /* Increased gap for better touch targets */
        height: auto;
        /* Fix: Allow grid to grow with content */
    }

    .feature-item {
        gap: 0px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-icon img {
        width: 18px;
        height: 18px;
    }

    .feature-title {
        font-size: var(--font-size-h4-mobile);
        line-height: 22px;
    }

    .feature-desc {
        font-size: var(--font-size-body-medium-mobile);
    }

    /* How It Works Mobile */
    .how-it-works {
        padding: 8px 0;
        background-size: cover;
        /* Fix: Prevent background stretching */
    }

    .steps-container {
        gap: 16px;
    }

    .steps-row {
        flex-direction: column;
        gap: 16px;
    }

    .step-card {
        padding: 16px;
        gap: 12px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-h4-mobile);
    }

    .step-title {
        font-size: var(--font-size-h4-mobile);
        line-height: 22px;
    }

    .step-description {
        font-size: 12px;
    }

    .cta-container {
        padding-top: 12px;
        gap: 12px;
    }

    .cta-text {
        font-size: var(--font-size-body-xlarge-mobile);
        line-height: 22px;
    }

    /* Everything Section Mobile */
    .everything-section {
        padding: 32px 0;
    }

    .everything-content {
        flex-direction: column;
        gap: 24px;
    }

    .everything-image {
        width: 100%;
        height: auto;
    }

    .everything-image img {
        width: 100%;
        height: auto;
    }

    .everything-text {
        gap: 24px;
        padding: 16px 0;
    }

    /* NRS Section Mobile */
    .nrs-section {
        padding: 32px 0;
    }

    .nrs-content {
        flex-direction: column;
        gap: 32px;
    }

    .nrs-visual {
        width: 100%;
        height: auto;
        /* Fix: Allow content to dictate height */
        min-height: 180px;
    }

    .nrs-text {
        gap: 32px;
        padding: 0;
    }

    /* Endorsement Mobile */
    .endorsement-section {
        padding: 24px 0;
    }

    .endorsement-header {
        margin-bottom: 16px;
    }

    .testimonials {
        flex-direction: column;
        gap: 16px;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .testimonial-content {
        padding: 0 !important;
        border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
        display: flex;
        flex-direction: column;
    }

    .testimonial-text {
        font-size: 14px;
        margin-left: 24px;
        margin-right: 24px;
        margin-bottom: 24px;
        width: auto;
    }

    .quote-icon {
        margin: 24px 24px 8px 24px;
        width: 28px;
        height: auto;
    }

    .author-name {
        font-size: var(--font-size-h6-mobile);
        line-height: 18px;
    }

    .testimonial-author {
        width: 85%;
        height: auto;
        min-height: 54px;
        padding: 12px 16px;
        margin: 0 0 0 0 !important;
        border-radius: 0 var(--radius-lg) 0 0 !important;
        background-color: var(--white);
        align-self: flex-start;
    }

    /* Built Section Mobile */
    .built-section {
        padding: 32px 0;
    }

    .built-content {
        flex-direction: column;
        gap: 24px;
    }

    .built-text {
        gap: 32px;
        padding: 16px 0;
    }

    .built-image {
        height: auto;
        min-height: 240px;
    }

    .built-image img {
        width: 100%;
        height: auto;
    }

    .features-list {
        gap: 16px;
    }

    .feature-item-horizontal {
        gap: 12px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 40px 0;
    }

    .cta-content {
        padding: 1px 24px 0 24px;
        /* Space for image padding */
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        min-height: 520px;
        border-radius: var(--radius-2xl);
        /* 32px to match figma look */
        overflow: hidden;
    }

    .cta-text-block {
        gap: 6px;
        z-index: 2;
        width: 100%;
        margin-bottom: 164px;
    }

    .cta-title {
        font-size: 20px;
        /* line-height: 0.95; */
        white-space: normal;
        font-weight: 800;
        max-width: 100%;
    }

    .cta-description {
        font-size: 14px;
        line-height: 1.5;
        color: #e6edd8;
        margin-top: 4px;
    }

    .cta-actions {
        display: flex;
        flex-direction: row;
        gap: 12px;
        width: 100%;
        margin-top: 12px;
    }

    .cta-btn {
        flex: 1;
        padding: 8px 16px;
        font-size: 14px;
        text-align: center;
        justify-content: center;
        height: auto;
        min-width: unset;
    }

    .cta-image {
        width: 55vh;
        max-width: none;
        height: auto;
        margin-bottom: -1px;
        /* Avoid subpixel gap */
        align-self: flex-end;
        object-fit: cover;
        bottom: -35px;
        right: 0;
    }

    /* Footer Mobile */
    .footer {
        padding: 32px 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .footer-logo-section {
        max-width: 100%;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer-link-group {
        flex: 1 0 calc(50% - 12px);
        min-width: 0;
    }

    .footer-newsletter {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .newsletter-text {
        gap: 16px;
    }

    .newsletter-title {
        font-size: var(--font-size-h2-mobile);
        line-height: 28px;
    }

    .newsletter-description {
        font-size: var(--font-size-body-large-mobile);
        line-height: 22px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .nl-form {
        flex-direction: row;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .nl-form input {
        width: 100%;
        margin-bottom: 0;
        flex: 1;
        min-width: 0;
    }

    .newsletter-input {
        width: 100%;
        padding: 8px 16px 8px 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Floating Chatbot Mobile */
    .floating-chatbot {
        bottom: 80px;
        right: 24px;
        width: 64px;
        height: 64px;
        display: flex !important;
        visibility: visible !important;
    }
}

/* ============================================
   Additional Mobile Adjustments
   ============================================ */
@media (max-width: 393px) {
    .container {
        padding: 0 24px;
    }

    .hero-container {
        padding: 0 24px;
    }

    .section-description {
        font-size: 14px;
        line-height: 24px;
    }

    .problem-image img {
        /* width: 750px; */
        height: 33vh;
        object-fit: cover;

    }

    .cta-text {
        font-size: 15px;
        line-height: 22px;
        font-weight: 400;

    }

    .btn-primary {
        font-size: 11.9px;
        width: 90%;
    }

    .integration-content h2 {
        font-size: 18px;
        font-weight: 600;
    }

    .integration-visual {
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex: 1.5;
        height: auto;
        min-height: 80px;
        flex-direction: row !important;
        width: 100%;
        margin-left: 0px;
        padding-bottom: 0px;
        margin-top: 0px;
    }

    .integration-visual img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .integration-section {
        padding: 40px 0;
        background-position: center top;
    }

    .integration-container {
        padding: 0 24px;
        gap: 24px;
    }


}

/* Cookie Consent */
.consent-hidden {
    display: none !important;
}

.consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 2000;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    padding: 24px;
    width: min(540px, 94vw);
}

.consent-banner__content {
    display: flex;
    flex-direction: column;
}

.consent-banner__text h3 {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    color: #121212;
}

.consent-banner__text p {
    color: #444;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.consent-banner__text a {
    color: #4a6117 !important;
    text-decoration: underline !important;
    font-weight: 600;
    white-space: nowrap;
}

.consent-divider {
    border: none;
    border-top: 1px solid #eeeeee;
    margin: 0 -24px 20px -24px;
}

.consent-banner__actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.consent-btn {
    border-radius: 8px;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #4a6117;
    cursor: pointer;
    transition: all 0.2s;
    background: #ffffff;
    color: #4a6117;
    text-align: center;
}

.consent-btn--solid {
    background: #4a6117;
    color: #ffffff;
}

.consent-btn:hover {
    opacity: 0.9;
}

.consent-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.consent-modal {
    background: #ffffff;
    border-radius: 12px;
    width: min(720px, 95vw);
    max-height: 100vh;
    overflow: hidden;
    padding: 24px 0;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.consent-modal h2 {
    font-size: 20px;
    font-weight: 700;
    padding: 0 24px 16px;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 0;
}

.consent-intro {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    padding: 16px 24px;
    margin-bottom: 0;
}

.consent-show-more {
    color: #4a6117 !important;
    text-decoration: underline !important;
    font-weight: 400;
}

.consent-modal__body {
    overflow-y: auto;
    flex: 1;
}

.consent-close {
    position: absolute;
    top: 18px;
    right: 20px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 10;
}

.consent-list {
    display: flex;
    flex-direction: column;
}

.consent-item {
    border-top: 1px solid #eeeeee;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Top row: caret+title on left, toggle/chip on right — always one line */
.consent-item__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.consent-item__header {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

.consent-caret {
    font-size: 20px;
    color: #555;
    line-height: 1;
    transition: transform 0.2s ease;
    display: inline-block;
    flex-shrink: 0;
}

.consent-item.is-open>.consent-item__row .consent-caret {
    transform: rotate(90deg);
}

.consent-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #121212;
    margin: 0;
}

/* Description — always visible */
.consent-item__desc {
    color: #444;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    padding-left: 28px;
}

/* Details panel: hidden unless .is-open */
.consent-item__details {
    display: none;
    padding-left: 28px;
    margin-top: 4px;
}

.consent-item.is-open>.consent-item__details {
    display: block;
}

/* Cookie table */
.consent-cookie-table {
    width: 100%;
    border-collapse: collapse;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
    font-size: 13px;
}

.consent-cookie-table td {
    padding: 8px 12px;
    vertical-align: top;
    color: #333;
    border-bottom: 1px solid #e8e8e8;
}

.consent-cookie-table tr:last-child td {
    border-bottom: none;
}

.consent-cookie-table .cc-label {
    font-weight: 700;
    color: #121212;
    white-space: nowrap;
    width: 110px;
}

/* Empty state */
.consent-cookie-empty {
    background: #f5f5f5;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 13px;
    color: #666;
}

.consent-chip {
    background: #f1f4ec;
    color: #718151;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
}

.consent-toggle {
    position: relative;
    width: 46px;
    height: 26px;
}

.consent-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.consent-slider {
    position: absolute;
    inset: 0;
    background: #d0d0d0;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.consent-slider::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    top: 3px;
    left: 3px;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.consent-toggle input:checked+.consent-slider {
    background: #4a6117 !important;
}

.consent-toggle input:checked+.consent-slider::after {
    transform: translateX(20px);
}

.consent-modal__actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px 24px 24px;
    border-top: 1px solid #eeeeee;
    background: #ffffff;
}

.consent-modal__body::-webkit-scrollbar {
    width: 10px;
}

.consent-modal__body::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 999px;
}

.consent-modal__body::-webkit-scrollbar-thumb {
    background: #b7c3b0;
    border-radius: 999px;
    border: 2px solid #f0f0f0;
}

.consent-modal__body::-webkit-scrollbar-thumb:hover {
    background: #9eb095;
}

@media (max-width: 720px) {
    .consent-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .consent-banner__actions,
    .consent-modal__actions {
        width: 100%;
        justify-content: stretch;
    }

    .consent-btn {
        flex: 1 1 100%;
        text-align: center;
    }

    .consent-item {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Index Navbar Mega Menu (Desktop)
   ============================================ */
@media (min-width: 993px) {
    .navbar--index {
        height: 92px;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar--index .nav-wrapper {
        position: relative;
        gap: 0;
    }

    /* 
    .navbar--index .nav-menu {
        gap: 12px;
    } */

    .navbar--index .nav-link {
        font-size: 14px;
        color: #1c1c1c;
        height: 76px;
    }

    /* .navbar--index .nav-actions {
        gap: 12px;
    } */

    .navbar--index .btn-nav {
        padding: 14px 32px;
        border-radius: 6px;
    }

    .navbar--index .nav-item.has-dropdown {
        position: static;
    }

    .navbar--index .dropdown.mega-dropdown {
        left: 50%;
        top: 76px;
        transform: translate(-50%, 10px);
        min-width: 980px;
        padding: 18px 20px;
        border-radius: 16px;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
    }

    .navbar--index .nav-item:hover .dropdown.mega-dropdown,
    .navbar--index .nav-item:focus-within .dropdown.mega-dropdown {
        transform: translate(-50%, 0);
    }

    .mega-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 240px;
        gap: 18px 24px;
        align-items: start;
    }

    .mega-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mega-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 10px 12px;
        border-radius: 10px;
        transition: background 0.2s ease;
    }

    .mega-item:hover,
    .mega-item:focus {
        background: #f4f6e9;
    }

    .mega-item-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mega-icon {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        background: #e9ee9b;
        position: relative;
        flex-shrink: 0;
    }

    .mega-icon::after {
        /* content: ""; */
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #465b16;
        top: 9px;
        left: 9px;
    }

    .mega-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mega-title {
        font-size: 13px;
        font-weight: 600;
        color: #111;
    }

    .mega-subtitle {
        font-size: 11px;
        color: #6c6c6c;
    }

    .mega-arrow svg {
        width: 36px !important;
        height: 16px;
        color: green;
    }

    .mega-card {
        border: 1px solid #e0e0e0;
        border-radius: 14px;
        padding: 12px;
        background: #fff;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mega-card-visual {
        height: 120px;
        border-radius: 10px;
        background: url("./assets/yellow-style.png") no-repeat center center/cover;
        background-color: #e9ee9b;
    }

    .mega-card-title {
        font-size: 12px;
        font-weight: 600;
        color: #1a1a1a;
    }

    .mega-card-btn {
        display: block;
        text-align: center;
        background: #111;
        color: #fff !important;
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 600;
    }
}

/* ============================================
   Demo Modal
   ============================================ */
.demo-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(18, 18, 18, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(1px);
    animation: demoFadeIn 0.2s ease;
}

.demo-modal-overlay[aria-hidden="true"] {
    display: none;
}

.demo-modal-overlay[aria-hidden="false"] {
    display: flex;
}

@keyframes demoFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.demo-modal-box {
    background: #f6f6f3;
    border-radius: 18px;
    padding: 44px 48px 48px;
    width: 100%;
    max-width: 650px;
    position: relative;
    box-shadow: 0 28px 60px rgba(18, 18, 18, 0.18);
    animation: demoSlideUp 0.25s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes demoSlideUp {
    from {
        transform: translateY(24px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.demo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #696969;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.demo-modal-close:hover {
    background: #f2f2f2;
    color: #121212;
}

.demo-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #121212;
    margin-bottom: 30px;
    line-height: 1.3;
}

.demo-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.demo-input {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid #999999;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #121212;
    background: #f6f6f3;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-input::placeholder {
    color: #727272;
}

.demo-input:focus {
    border-color: #4a6117;
    box-shadow: 0 0 0 3px rgba(74, 97, 23, 0.1);
}

.demo-input-full {
    width: 100%;
}

.demo-select-wrapper {
    position: relative;
    width: 100%;
}

.demo-select {
    width: 100%;
    min-height: 52px;
    padding: 14px 48px 14px 16px;
    border: 1px solid #999999;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #727272;
    background: #f6f6f3;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-select:focus {
    border-color: #4a6117;
    box-shadow: 0 0 0 3px rgba(74, 97, 23, 0.1);
    color: #121212;
}

.demo-select option:not([disabled]) {
    color: #121212;
}

.demo-select-chevron {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    stroke: #2d2d2d;
    pointer-events: none;
}

.demo-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    margin-top: 8px;
}

.demo-checkbox {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 1px;
    accent-color: #4a6117;
    cursor: pointer;
    border-radius: 4px;
}

.demo-consent-text {
    font-size: 13px;
    line-height: 1.45;
    color: #2f2f2f;
}

.demo-privacy-link {
    color: #4a6117;
    font-weight: 600;
    text-decoration: underline;
    font-style: italic;
}

.demo-privacy-link:hover {
    opacity: 0.8;
}

.demo-submit-btn {
    width: 100%;
    padding: 15px 18px;
    background-color: #4a6117;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 6px;
}

.demo-submit-btn:hover {
    background-color: #3b4e12;
}

.demo-submit-btn:active {
    transform: scale(0.99);
}

@media (max-width: 540px) {
    .demo-modal-box {
        padding: 34px 20px 28px;
    }

    .demo-form-row {
        grid-template-columns: 1fr;
    }

    .demo-modal-title {
        font-size: 18px;
        padding-right: 32px;
    }
}

/* ============================================
   Built to Fit Section
   ============================================ */
.built-section {
    background-color: #f5f4ef;
    padding: 64px 0;
}

.built-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

.built-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 580px;
}

.built-text .section-title {
    font-size: 26px;
    font-weight: 700;
    color: #121212;
    line-height: 1.3;
    margin-bottom: 0;
}

.built-text .section-description {
    font-size: 16.5px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 8px;

}

/* 2×2 grid for the feature items */
.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    margin-top: 8px;
}

.feature-item-horizontal {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
}

.feature-item-horizontal .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 18px;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item-horizontal .feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 0;
}

.feature-item-horizontal .feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #121212;
    line-height: 1.4;
}

.feature-item-horizontal .feature-desc {
    font-size: 13px;
    color: #444;
    line-height: 1.55;
    width: 100%;
}

/* Right image column */
.built-image {
    /* flex: 0 0 auto; */
    width: 420px;
}

.built-image img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* .nl-header {
    font-size: 26px;
    font-weight: 700;
    color: #121212;
    line-height: 1.3;
    margin-bottom: 0;
} */

@media (max-width: 1024px) {
    .built-content {
        flex-direction: column;
    }

    .built-image {
        width: 100%;
    }

    .built-image img {
        height: 280px;
    }
}

@media (max-width: 600px) {
    .features-list {
        grid-template-columns: 1fr;
    }
}