/* ============================================
   Custom Font Faces
   ============================================ */

   @font-face {
    font-family:  'CooperMdBT-Regular';
    src: url('../fonts/CooperMdBT-Regular.woff2') format('woff2'),
         url('../fonts/CooperMdBT-Regular.woff')  format('woff');
    font-weight:  400;
    font-style:   normal;
    font-display: swap;
}

@font-face {
    font-family:  'CooperLtBT-Bold';
    src: url('../fonts/CooperLtBT-Bold.woff2') format('woff2'),
         url('../fonts/CooperLtBT-Bold.woff')  format('woff');
    font-weight:  400;
    font-style:   normal;
    font-display: swap;
}



/* ============================================
   CSS Custom Properties
   ============================================ */

:root {
    --font-primary:             'Lexend', sans-serif;

    --font-size-xs:             12px;
    --font-size-sm:             14px;
    --font-size-base:           16px;
    --font-size-md:             18px;
    --font-size-lg:             20px;
    --font-size-xl:             24px;
    --font-size-2xl:            32px;
    --font-size-3xl:            40px;
    --font-size-4xl:            48px;

    --font-weight-light:        300;
    --font-weight-regular:      400;
    --font-weight-medium:       500;
    --font-weight-semibold:     600;
    --font-weight-bold:         700;

    --line-height-tight:        1;
    --line-height-snug:         1.25;
    --line-height-normal:       1.5;
    --line-height-relaxed:      1.75;

    --letter-spacing-tight:     -0.01em;
    --letter-spacing-normal:    0em;
    --letter-spacing-wide:      0.05em;
    --letter-spacing-wider:     0.08em;
    --letter-spacing-widest:    0.12em;

    --font-nav-family:          var(--font-primary);
    --font-nav-size:            var(--font-size-base);
    --font-nav-weight:          var(--font-weight-regular);
    --font-nav-line-height:     var(--line-height-tight);
    --font-nav-letter-spacing:  var(--letter-spacing-normal);

    --font-btn-family:          var(--font-primary);
    --font-btn-size:            var(--font-size-base);
    --font-btn-weight:          var(--font-weight-bold);
    --font-btn-letter-spacing:  var(--letter-spacing-wider);

    --font-eyebrow-family:          'Lexend Exa', var(--font-primary);
    --font-eyebrow-size:            15px;
    --font-eyebrow-weight:          700;
    --font-eyebrow-line-height:     16px;
    --font-eyebrow-letter-spacing:  0px;

    --font-hero-h1-family:          'CooperMdBT-Regular', Georgia, 'Times New Roman', serif;
    --font-hero-h1-accent-family:   'CooperLtBT-Bold', Georgia, 'Times New Roman', serif;
    --font-hero-h1-size:            58px;
    --font-hero-h1-weight:          400;
    --font-hero-h1-line-height:     70px;
    --font-hero-h1-letter-spacing:  0px;

    --font-hero-list-family:        'Nexa Bold', var(--font-primary);
    --font-hero-list-size:          22px;
    --font-hero-list-weight:        700;
    --font-hero-list-line-height:   26px;
    --font-hero-list-letter-spacing: 0.03em;
    --font-hero-list-color:         #0F4031;

    --color-primary:            #1B3022;
    --color-primary-hover:      #253d2c;
    --color-hero-green:         #1B3022;
    --color-hero-green-hover:   #0a2f24;
    --color-text:               #000000;
    --color-white:              #ffffff;
    --color-border:             #e5e7eb;
    --color-btn-secondary-bg:   #E6E9E7;
    --color-btn-secondary-text: #1a1a1a;

    --header-shadow:            none;

    --hero-padding-y:           80px;
    --hero-img-radius:          20px;

    --font-mobile-eyebrow-family:        'Lexend Deca', var(--font-primary);
    --font-mobile-eyebrow-size:          18px;
    --font-mobile-eyebrow-weight:        400;
    --font-mobile-eyebrow-line-height:   16px;
    --font-mobile-eyebrow-letter-spacing: 0px;

    --font-mobile-hero-h1-size:         32px;
    --font-mobile-hero-h1-line-height:  48px;

    --font-mobile-list-family:          'Nexa Text Demo', 'Nexa Bold', var(--font-primary);
    --font-mobile-list-size:            16px;
    --font-mobile-list-weight:          700;
    --font-mobile-list-line-height:     26px;
    --font-mobile-list-letter-spacing:  0.03em;

    --font-mobile-btn-family:           'Nexa Bold', var(--font-primary);
    --font-mobile-btn-size:             13px;
    --font-mobile-btn-line-height:      1;
    --font-mobile-btn-letter-spacing:   0.05em;
}


/* ============================================
   Base
   ============================================ */

/*html {*/
/*    overflow-x: hidden;*/
/*}*/
.site-wrapper {
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color:       var(--color-text);
    max-width:   100%;
}

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



/* ============================================
   Header / Navbar
   ============================================ */

.site-header {
    box-shadow: var(--header-shadow);
}


.site-header .nav-link {
    font-family:    var(--font-nav-family);
    font-size:      var(--font-nav-size);
    font-weight:    var(--font-nav-weight);
    line-height:    var(--font-nav-line-height);
    letter-spacing: var(--font-nav-letter-spacing);
    color:          var(--color-text);
    padding:        0.25rem 0;
    transition:     color 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
    color: var(--color-primary);
}

.btn-demo {
    font-family:      var(--font-btn-family) !important;
    font-size:        var(--font-btn-size) !important;
    font-weight:      var(--font-btn-weight) !important;
    letter-spacing:   var(--font-btn-letter-spacing);
    text-transform:   uppercase;
    color:            var(--color-white) !important;
    background-color: var(--color-primary) !important;
    padding:          0.9375rem 2.25rem !important;
    border-radius:    4px;
    text-decoration:  none;
    display:          inline-block;
    box-shadow:       0 0 14px 0 rgba(0, 0, 0, 0.25);
    transition:       background-color 0.2s ease, color 0.2s ease;
    white-space:      normal;
    max-width:        100%;
}

.btn-demo:hover,
.btn-demo:focus {
    background-color: var(--color-primary-hover);
    border-color:     var(--color-primary-hover);
    color:            var(--color-white);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.toggler-close {
    display: none;
    width: 22px;
    height: 22px;
    position: relative;
}

.toggler-close::before,
.toggler-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
}

.toggler-close::before { transform: translateY(-50%) rotate(45deg); }
.toggler-close::after  { transform: translateY(-50%) rotate(-45deg); }

.navbar-toggler[aria-expanded="true"] .toggler-hamburger { display: none; }
.navbar-toggler[aria-expanded="true"] .toggler-close     { display: block; }

.btn-demo-nav {
    font-size:      13px !important;
    letter-spacing: 0.06em !important;
    padding:        0.75rem 1.5rem !important;
    border-radius:  4px !important;
    box-shadow:     none !important;
    margin-right:   0.625rem !important;
}


/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    padding-top: 50px;
    padding-bottom: var(--hero-padding-y);
}

.hero-eyebrow {
    font-family:    var(--font-eyebrow-family);
    font-size:      var(--font-eyebrow-size);
    font-weight:    var(--font-eyebrow-weight);
    line-height:    var(--font-eyebrow-line-height);
    letter-spacing: var(--font-eyebrow-letter-spacing);
    text-transform: uppercase;
    color:          var(--color-text);
    margin-bottom:  1rem;
}

.hero-eyebrow::after {
    content:          '';
    display:          block;
    width:            38px;
    height:           2px;
    background-color: var(--color-hero-green);
    margin-top:       10px;
}

.hero-heading {
    font-family:    var(--font-hero-h1-family);
    font-size:      var(--font-hero-h1-size);
    font-weight:    var(--font-hero-h1-weight);
    line-height:    var(--font-hero-h1-line-height);
    letter-spacing: var(--font-hero-h1-letter-spacing);
    color:          var(--color-text);
    margin-bottom:  1.75rem;
}

.hero-heading-accent {
    font-family: var(--font-hero-h1-accent-family);
    color:       var(--color-hero-green);
}

.hero-list-item {
    font-family:    var(--font-hero-list-family);
    font-size:      var(--font-hero-list-size);
    line-height:    var(--font-hero-list-line-height);
    letter-spacing: var(--font-hero-list-letter-spacing);
    color:          var(--font-hero-list-color);
}

.btn-hero-primary,
.btn-hero-secondary {
    font-family:     var(--font-primary);
    font-size:       var(--font-size-sm);
    font-weight:     var(--font-weight-semibold);
    letter-spacing:  var(--letter-spacing-wider);
    text-transform:  uppercase;
    text-decoration: none;
    display:         inline-block;
    padding:         1rem 2.75rem;
    border-radius:   4px;
    box-shadow:      0 0 14px 0 rgba(0, 0, 0, 0.25);
    transition:      background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space:     normal;
    max-width:       100%;
}

.btn-hero-primary {
    background-color: var(--color-hero-green);
    color:            var(--color-white);
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
    background-color: var(--color-hero-green-hover);
    border-color:     var(--color-hero-green-hover);
    color:            var(--color-white);
}

.btn-hero-secondary {
    background-color: var(--color-btn-secondary-bg);
    color:            var(--color-btn-secondary-text);
    box-shadow:       none;
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    background-color: #d9d5cf;
    border-color:     #d9d5cf;
    color:            var(--color-text);
}

.hero-img {
    border-radius: var(--hero-img-radius);
    object-fit:    cover;
}


/* ============================================
   Banner CTA Section
   ============================================ */

.banner-cta-section {
    padding-top:         90px;
    padding-bottom:      90px;
    background-image:    url('../image/light_green_bg.png');
    background-size:     cover;
    background-position: center;
    background-color:    #4A7B5A;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 60px;
}

.banner-cta-eyebrow {
    font-family:    'Lexend Deca', sans-serif;
    font-weight:    400;
    font-size:      24px;
    line-height:    16px;
    letter-spacing: 0px;
    color:          #ffffff;
    display:        inline-block;
    margin-bottom:  1.75rem;
    padding-bottom: 12px;
    border-bottom:  2px solid #ffffff;
}

.banner-cta-heading {
    font-family:    'Montserrat', sans-serif;
    font-weight:    700;
    font-size:      62px;
    line-height:    82px;
    letter-spacing: -4px;
    color:          #ffffff;
    margin-bottom:  2.5rem;
}

.banner-cta-list-text {
    font-family:    'Nexa Bold', var(--font-primary);
    font-weight:    700;
    font-size:      16px;
    line-height:    1;
    color:          #ffffff;
}

.btn-banner-primary,
.btn-banner-secondary {
    font-family:     'Nexa Bold', var(--font-primary);
    font-size:       13px;
    font-weight:     700;
    line-height:     1;
    letter-spacing:  0.05em;
    text-transform:  uppercase;
    text-decoration: none;
    display:         inline-block;
    padding:         0.875rem 1.75rem;
    border-radius:   3px;
    transition:      background-color 0.2s ease, border-color 0.2s ease;
    white-space:     normal;
    max-width:       100%;
}

.btn-banner-primary {
    background-color: #1B2D20;
    color:            #ffffff;
    border:           2px solid #1B2D20;
    box-shadow:       0 0 14px 0 rgba(0, 0, 0, 0.25);
}

.btn-banner-primary:hover,
.btn-banner-primary:focus {
    background-color: #0a1f15;
    border-color:     #0a1f15;
    color:            #ffffff;
}

.btn-banner-secondary {
    background-color: #E6E9E7;
    color:            #061B0E;
    border:           2px solid #E6E9E7;
    box-shadow:       none;
}

.btn-banner-secondary:hover,
.btn-banner-secondary:focus {
    background-color: #d5d8d5;
    border-color:     #d5d8d5;
    color:            #061B0E;
}


/* ============================================
   Empathy Section
   ============================================ */

.empathy-section {
    padding-top:      100px;
    padding-bottom:   100px;
    background-color: #F8FAF8;
}

.empathy-heading {
    font-family: 'CooperMdBT-Regular', Georgia, serif;
    font-weight: 400;
    font-size:   42px;
    line-height: 58px;
    color:       #061B0E;
}

.empathy-bold-text {
    font-weight: 700;
    font-size:   18px;
    line-height: 38px;
    color:       #0F4031;
}

.empathy-divider {
    width:            50px;
    height:           2px;
    background-color: #061B0E;
}

.empathy-body-text {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    font-size:   18px;
    line-height: 29.25px;
    color:       #434843;
}

.btn-book-demo {
    font-weight:      700;
    font-size:        13px;
    line-height:      1;
    letter-spacing:   0.05em;
    text-transform:   uppercase;
    text-decoration:  none;
    display:          inline-block;
    background-color: #1B3022;
    color:            #ffffff;
    padding:          1rem 2.25rem;
    border-radius:    4px;
    box-shadow:       0 0 14px 0 rgba(0, 0, 0, 0.25);
    transition:       background-color 0.2s ease;
}

.btn-book-demo:hover,
.btn-book-demo:focus {
    background-color: #0a2f24;
    color:            #ffffff;
}


/* ============================================
   RAi Edge Section
   ============================================ */

.rai-edge-section {
    padding-top:    100px;
    padding-bottom: 100px;
}

.rai-edge-title {
    font-family: 'CooperMdBT-Regular', Georgia, serif;
    font-weight: 400;
    font-size:   48px;
    line-height: 1;
    color:       #181717;
}

.rai-logo-inline {
    height: 1.2em;
    margin-left: 5px;
}

.rai-edge-subtitle {
    font-family: 'CooperMdBT-Regular', Georgia, serif;
    font-weight: 400;
    font-size:   48px;
    line-height: 1;
    color:       #0F4031;
}

.rai-edge-desc {
    font-weight: 300;
    font-size:   18px;
    line-height: 28px;
    color:       #000000;
    max-width:   680px;
}

.old-way-card {
    background-color: #F8FAF8;
    border-radius:    12px;
}

.old-way-title {
    font-family:    'CooperLtBT-Bold', Georgia, serif;
    font-weight:    400;
    font-size:      18px;
    line-height:    1;
    letter-spacing: 0.05em;
    color:          #676767;
}

.old-way-item {
    font-weight:    300;
    font-size:      16px;
    line-height:    1;
    letter-spacing: 0.02em;
    color:          #000000;
}

.transformation-card {
    background-color: #1B3022;
    border-radius:    12px;
}

.transformation-title {
    font-family:    'CooperMdBT-Regular', Georgia, serif;
    font-weight:    400;
    font-size:      18px;
    line-height:    1;
    letter-spacing: 0.05em;
    color:          #ffffff;
}

.transformation-item {
    font-weight:    300;
    font-size:      16px;
    line-height:    24px;
    letter-spacing: 0.02em;
    color:          #ffffff;
}

.pillars-heading {
    font-family:    'CooperLtBT-Bold', Georgia, serif;
    font-weight:    400;
    font-size:      32px;
    line-height:    1;
    letter-spacing: 0.02em;
    color:          #181717;
}

.pillar-card {
    border:        1px solid #859783;
    border-radius: 12px;
    box-shadow:    0 7px 4px 0 rgba(0, 0, 0, 0.25);
}

.pillar-icon-wrap {
    width:            52px;
    height:           52px;
    background-color: #0F4031;
    border-radius:    10px;
    flex-shrink:      0;
}

.pillar-title {
    font-weight:    600;
    font-size:      18px;
    line-height:    1;
    color:          #000000;
}

.pillar-text {
    font-weight: 300;
    font-size:   14px;
    line-height: 28px;
    color:       #000000;
}


/* ============================================
   Services Section
   ============================================ */

.services-section {
    padding-top:      100px;
    padding-bottom:   100px;
    background-color: #F2F0EB;
}

.services-heading {
    font-family: 'CooperMdBT-Regular', Georgia, serif;
    font-weight: 400;
    font-size:   48px;
    line-height: 1;
    color:       #000000;
}

.services-heading-accent {
    color: #0F4031;
}

.services-desc {
    font-weight: 300;
    font-size:   18px;
    line-height: 28px;
    color:       #000000;
    max-width:   760px;
}

.service-card {
    background-color: #ffffff;
    border-radius:    10px;
}

.service-icon {
    width:  80px;
    height: 80px;
}

.service-name {
    font-family: 'CooperLtBT-Bold', Georgia, serif;
    font-weight: 400;
    font-size:   18px;
    line-height: 1;
    color:       #0F4031;
}


/* ============================================
   How It Works Section
   ============================================ */

.how-section {
    padding-top:      100px;
    padding-bottom:   100px;
    background-color: #022C22;
}

.how-heading {
    font-family:    'CooperMdBT-Regular', Georgia, serif;
    font-weight:    400;
    font-size:      48px;
    line-height:    48px;
    letter-spacing: -1.2px;
    color:          #ffffff;
}

.how-subtext {
    font-weight: 400;
    font-size:   16px;
    line-height: 28px;
    color:       #B9CCB7;
    max-width:   560px;
}

.how-icon {
    width:  64px;
    height: 64px;
}

.how-step-title {
    font-family: 'CooperLtBT-Bold', Georgia, serif;
    font-weight: 400;
    font-size:   22px;
    line-height: 28px;
    color:       #ffffff;
}

.how-step-text {
    font-weight: 300;
    font-size:   14px;
    line-height: 26px;
    color:       #B9CCB7;
}

.btn-how-demo {
    font-weight:      700;
    font-size:        13px;
    line-height:      1;
    letter-spacing:   0.05em;
    text-transform:   uppercase;
    text-decoration:  none;
    display:          inline-block;
    background-color: #735C00;
    color:            #ffffff;
    padding:          1rem 2.25rem;
    border-radius:    4px;
    box-shadow:       0 0 14px 0 rgba(0, 0, 0, 0.25);
    transition:       background-color 0.2s ease;
}

.btn-how-demo:hover,
.btn-how-demo:focus {
    background-color: #5e4a00;
    color:            #ffffff;
}


/* ============================================
   Streamline Section
   ============================================ */

.streamline-section {
    padding-top:    80px;
    padding-bottom: 80px;
}

.streamline-heading {
    font-family:    'CooperMdBT-Regular', Georgia, serif;
    font-weight:    400;
    font-size:      48px;
    line-height:    70px;
    letter-spacing: -0.9px;
    color:          #061B0E;
    max-width:      700px;
}

.streamline-heading-accent {
    color: #0F4031;
}

.streamline-desc {
    font-weight: 300;
    font-size:   16px;
    line-height: 28px;
    color:       #000000;
    max-width:   680px;
}

.streamline-card {
    background:    linear-gradient(180deg, #FFFFFF 0%, #F2F4F2 100%);
    border:        1px solid #735C00;
    border-radius: 20px;
}

.streamline-card-icon {
    width:  48px;
    height: 48px;
}

.streamline-card-title {
    font-weight: 700;
    font-size:   24px;
    line-height: 32px;
    color:       #061B0E;
}

.streamline-card-text {
    font-weight: 300;
    font-size:   16px;
    line-height: 26px;
    color:       #000000;
}


/* ============================================
   Elevating Section
   ============================================ */

.elevating-section {
    padding-top:      100px;
    padding-bottom:   100px;
    background-color: #F2F0EB;
}

.elevating-group-img {
    border-radius: 16px;
    object-fit:    cover;
    display:       block;
}

.elevating-heading {
    font-family: 'CooperMdBT-Regular', Georgia, serif;
    font-weight: 400;
    font-size:   46px;
    line-height: 70px;
    color:       #061B0E;
}

.elevating-body {
    font-weight: 300;
    font-size:   18px;
    line-height: 30.3px;
    color:       #000000;
}

.elevating-badge-text {
    font-weight:    600;
    font-size:      16px;
    line-height:    24px;
    letter-spacing: -0.4px;
    color:          #735C00;
}


/* ============================================
   Contact / Lead Form Section
   ============================================ */

.contact-section {
    padding: 100px 0;
}

.contact-heading {
    font-family: 'CooperMdBT-Regular', Georgia, serif;
    font-weight: 400;
    font-size:   48px;
    line-height: 62px;
    color:       #061B0E;
}

.contact-desc {
    font-weight: 400;
    font-size:   18px;
    line-height: 29px;
    color:       #000;
    max-width:   500px;
}

.contact-list span {
    font-family:    'Nexa Text Demo', 'Nexa Bold', sans-serif;
    font-weight:    700;
    font-size:      16px;
    line-height:    26px;
    letter-spacing: 0.03em;
    color:          #2A2525;
}

.contact-form-wrap {
    background:    #ffffff;
    border:        1.5px solid #0F4031;
    border-radius: 28px;
    padding:       32px;
}

.contact-form-wrap .form-label {
    font-size:     14px;
    font-weight:   400;
    margin-bottom: 6px;
    color:         #000;
}

.contact-form-wrap .form-control {
    border-color: #CFCFCF;
    border-radius: 8px;
    padding:       12px 14px;
    font-size:     14px;
    font-family:   var(--font-primary);
}

.contact-form-wrap textarea.form-control {
    resize: none;
}

.contact-form-wrap .form-control::placeholder {
    color: #9CA3AF;
}

.contact-submit-btn {
    background:     linear-gradient(90deg, #0F4031, #1B2D20);
    color:          #fff;
    border:         none;
    padding:        14px 60px;
    border-radius:  6px;
    font-family:    var(--font-primary);
    font-size:      13px;
    font-weight:    700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow:     0 0 14px 0 rgba(0, 0, 0, 0.25);
    transition:     0.2s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-1px);
}


/* ============================================
   Footer
   ============================================ */

.rai-footer {
    background: #022C22;
}

.footer-link {
    text-decoration: none;
    font-size:       12px;
    letter-spacing:  0.35px;
    color:           rgba(167, 243, 208, 0.7);
    transition:      opacity 0.3s ease;
}

.footer-link:hover {
    color:   rgba(167, 243, 208, 0.7);
    opacity: 0.85;
}

.footer-copy {
    font-size:      12px;
    letter-spacing: 0.35px;
    color:          rgba(167, 243, 208, 0.7);
}


/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1199.98px) {
    :root {
        --font-hero-h1-size:        48px;
        --font-hero-h1-line-height: 58px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --hero-padding-y:           60px;
        --font-hero-h1-size:        40px;
        --font-hero-h1-line-height: 50px;
    }
    .btn-demo.d-none-mobile{
        display:none;
    }
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start !important;
        width: 100%;
    }

    .btn-demo-nav {
        margin-left: 0 !important;
    }
}

@media (max-width: 767.98px) {
    :root {
        --hero-padding-y: 40px;
    }

    .hero-eyebrow {
        font-family:    var(--font-mobile-eyebrow-family);
        font-size:      var(--font-mobile-eyebrow-size);
        font-weight:    var(--font-mobile-eyebrow-weight);
        line-height:    var(--font-mobile-eyebrow-line-height);
        letter-spacing: var(--font-mobile-eyebrow-letter-spacing);
        text-transform: none;
        color:          #000000;
    }

    .hero-heading {
        font-size:   var(--font-mobile-hero-h1-size);
        line-height: var(--font-mobile-hero-h1-line-height);
        color:       #000000;
    }

    .hero-list-item {
        font-family:    var(--font-mobile-list-family);
        font-size:      var(--font-mobile-list-size);
        font-weight:    var(--font-mobile-list-weight);
        line-height:    var(--font-mobile-list-line-height);
        letter-spacing: var(--font-mobile-list-letter-spacing);
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        font-family:    var(--font-mobile-btn-family);
        font-size:      var(--font-size-sm);
        font-weight:    700;
        line-height:    var(--font-mobile-btn-line-height);
        letter-spacing: var(--font-mobile-btn-letter-spacing);
        padding:        15px 3px;
        flex:           1;
        text-align:     center;
        white-space:    normal;
    }

    .banner-cta-section     { padding-top: 60px; padding-bottom: 60px; margin-left: 12px; margin-right: 12px;}
    .banner-cta-eyebrow     { font-size: 18px; }
    .banner-cta-heading     { font-size: 32px; line-height: 44px; letter-spacing: -2px; }
    .banner-cta-list        { flex-direction: column; align-items: flex-start; gap: 16px !important; }
    .btn-banner-primary,
    .btn-banner-secondary   { width: 100%; text-align: center; }

    .empathy-section        { padding-top: 40px; padding-bottom: 40px; }
    .empathy-heading        { font-size: 28px; line-height: 58px; }
    .empathy-bold-text      { font-weight: 400; font-size: 15px; line-height: 24px; }
    .empathy-body-text      { font-size: 15px; line-height: 24px; }

    .rai-edge-section       { padding-top: 60px; padding-bottom: 60px; }
    .rai-edge-title         { font-size: 32px; }
    .rai-edge-subtitle      { font-size: 32px; }
    .rai-edge-desc          { font-size: 16px; }
    .pillars-heading        { font-size: 26px; }

    .services-section       { padding-top: 60px; padding-bottom: 60px; }
    .services-heading       { font-size: 28px; line-height: 1.15; }
    .services-desc          { font-size: 15px; line-height: 24px; }
    .service-icon           { width: 64px; height: 64px; }
    .service-name           { font-size: 14px; }

    .how-section            { padding-top: 60px; padding-bottom: 60px; }
    .how-heading            { font-size: 28px; line-height: 38px; }
    .how-subtext            { font-size: 14px; line-height: 21px; }
    .how-step-text          { line-height: 22px; }
    .how-section .col-lg-4  { text-align: center; }
    .how-section .how-icon  { margin-left: auto; margin-right: auto; }

    .elevating-section      { padding-top: 60px; padding-bottom: 60px; }
    .elevating-heading      { font-size: 24px; line-height: 70px; }
    .elevating-body         { font-size: 15px; line-height: 24px; }
    .elevating-badge-text   { font-size: 14px; }

    .streamline-section     { padding-top: 60px; padding-bottom: 60px; }
    .streamline-heading     { font-size: 28px; line-height: 40px; }
    .streamline-desc        { font-size: 14px; line-height: 22px; }
    .streamline-card-title  { font-size: 20px; }

    .contact-section        { padding: 60px 0; }
    .contact-heading        { font-size: 28px; line-height: 38px; }
    .contact-desc           { font-size: 15px; line-height: 24px; }
    .contact-form-wrap      { padding: 20px; border-radius: 24px; }
    .contact-submit-btn     { width: 100%; }

    /* Contact checklist — horizontal row on mobile */
    .contact-list {
        display:        flex;
        flex-wrap:      wrap;
        gap:            10px 16px;
        flex-direction: column;
    }
    .contact-list li {
        margin-bottom:  0 !important;
        gap:            8px !important;
    }
    .contact-list span {
        font-size:      13px;
        line-height:    1.2;
    }
    .contact-list img {
        width:          18px;
        height:         18px;
    }

    /* Footer — hide logo, center-stack links & copyright */
    .footer-logo {
        display: none;
    }
    .rai-footer .container {
        flex-direction: column;
        align-items:    center;
        text-align:     center;
    }
    .rai-footer ul {
        justify-content: center;
    }
    .navbar-brand img {
        width: 70px;
    }
    .hero-section {
        padding-top: 20px;
    }
}
/*cf7 css*/

.contact-form-wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 45px 47px;
    border: 1px solid #1f3d2b;
    border-radius: 30px;
    background: transparent; 
    box-shadow: 0 0 34px rgba(132, 132, 132, 0.25);
}

.cf7-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 15px;
}

.cf7-col.full {
    grid-column: span 2;
}

.cf7-grid label {
    display: block;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1; /* 100% */
    letter-spacing: 0;
    color: #000;
    margin-bottom: 8px;
}

.cf7-grid input,
.cf7-grid textarea {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #6B728066;
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    color: #000;
}

.cf7-grid textarea {
    height: 103px;
    padding: 12px 14px;
    resize: none;
}

.cf7-grid input::placeholder,
.cf7-grid textarea::placeholder {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
    color: #919191;
}


.cf7-grid input[type="submit"] {
    width: auto;
    height: 46px;
    padding: 0 70px;
    border-radius: 4px;
    border: none;
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.05em; 
    text-transform: uppercase;
    background: #1B3022 !important;
    color: #fff;

    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}


.text-center {
    text-align: center;
    margin-top: 8px;
}

.wpcf7 p {
    margin: 0;
}

.wpcf7-form-control-wrap {
    display: block;
}

.cf7-grid input:focus,
.cf7-grid textarea:focus {
    outline: none;
    border-color: #1f4d36;
    background: #fff;
}

@media (max-width: 768px) {
    .contact-form-wrap {
        padding: 32px 20px;
    }

    .cf7-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cf7-col.full {
        grid-column: span 1;
    }
}
.cky-btn-revisit-wrapper {
    background: #0f4031 !important;
}