@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

:root {
    --text: #0a0a1a;
    --muted: #505057;
    --primary: #2656d8;
    --purple: #7f43d9;
    --text-size-heading-5: 16px;
    --page-bg: #f7f7fb;
    --soft-purple: #f2ebff;
    --soft-blue: #eaf6ff;
    --card-bg: #ffffff;
    --line: #d8d8df;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--text);
    background: #fff;
}

.arf-home-page,
.arf-home-page * {
    font-family: 'Poppins', Arial, sans-serif;
}

.arf-home-page h1,
.arf-home-page h2,
.arf-home-page h3,
.arf-home-page h4,
.arf-home-page h5,
.arf-home-page h6 {
    font-family: 'Red Hat Display', Sans-serif;
}

.arf-home-page p {
    font-family: Tahoma, Sans-serif;
}

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

.arf-wrap {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.arf-header {
    background: #fff;
    border-bottom: 1px solid #ececf4;
    position: relative;
}

.arf-header-inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.arf-logo {
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.arf-logo-main {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.arf-logo-sub {
    color: #7d4ed8;
    font-size: 18px;
    font-weight: 500;
    margin-top: 4px;
}

.arf-logo-img {
    width: 115px;
    max-width: 100%;
    height: auto;
    display: block;
}

.arf-nav {
    display: flex;
    align-items: center;
    gap: 0;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato', Sans-serif;
}

.arf-nav a {
    color: #000000;
    font-family: 'Lato', Sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0 20px;
    padding: 13px 0;
    line-height: 1;
}

.arf-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.arf-nav-toggle {
    display: none;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 6px;
    background: #ffffff;
    padding: 6px 5px;
    cursor: pointer;
    box-shadow: none;
}

/* Hard-hide hamburger above phone widths. */
@media (min-width: 769px) {
    .arf-header .arf-nav-toggle {
        display: none !important;
    }
}

.arf-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #111111;
    border-radius: 2px;
}

.arf-nav-toggle span + span {
    margin-top: 4px;
}

.arf-nav-toggle:hover,
.arf-nav-toggle:focus-visible {
    background: #ffffff;
    outline: none;
}

/* Navbar-only hamburger button style (phone only). */
@media (max-width: 768px) {
    .elementor-kit-69 .arf-header .arf-nav-toggle,
    .arf-header .arf-nav-toggle {
        background: #f5f5f5;
        border: none;
        border-radius: 12px;
        width: 50px;
        height: 50px;
        padding: 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: none;
    }

    .elementor-kit-69 .arf-header .arf-nav-toggle span,
    .arf-header .arf-nav-toggle span {
        display: none;
    }

    .elementor-kit-69 .arf-header .arf-nav-toggle::before,
    .arf-header .arf-nav-toggle::before {
        content: "";
        width: 22px;
        height: 2px;
        background: #333;
        display: block;
        position: relative;
        box-shadow: 0 -6px 0 #333, 0 6px 0 #333;
    }
}

.arf-mobile-overlay {
    display: none;
}

.arf-mobile-menu {
    display: none;
}

.arf-lang-dropdown {
    position: relative;
    margin-right: 4px;
}

.arf-lang-dropdown-summary {
    list-style: none;
    border: 1px solid #164083;
    border-radius: 999px;
    height: 38px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: #0e2f66;
    background: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.arf-lang-dropdown-summary::-webkit-details-marker {
    display: none;
}

.arf-lang-flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid #d5d9e6;
}

.arf-lang-caret {
    margin-bottom: 11px;
    font-size: 16px;
    line-height: 1;
}

.arf-lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 114px;
    border: 1px solid #dfe4f2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 22px rgba(22, 64, 131, 0.14);
    padding: 6px;
    z-index: 20;
    display: none;
}

.arf-lang-dropdown[open] .arf-lang-dropdown-menu {
    display: block;
}

.arf-lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0e2f66;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 10px;
}

.arf-lang-dropdown-menu a:hover,
.arf-lang-dropdown-menu a.is-active {
    background: #eef3ff;
}

.arf-btn {
    border-radius: 999px;
    border: 1px solid #164083;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.arf-btn-outline {
    color: #0e2f66;
    background: #fff;
}

.arf-btn-primary {
    border: 0;
    color: #fff;
    background: linear-gradient(90deg, #1a63d8 0%, #7d25c5 100%);
    box-shadow: 0 6px 14px rgba(32, 72, 184, 0.24);
}

.arf-header .arf-btn-primary,
.arf-header .arf-btn-primary:visited,
.arf-header .arf-btn-primary:hover,
.arf-header .arf-btn-primary:focus {
    color: #ffffff !important;
}

.arf-hero {
    background: linear-gradient(90deg, var(--soft-purple) 0%, var(--soft-blue) 100%);
    border-top: 1px solid #ece2ff;
    border-bottom: 1px solid #ece2ff;
    padding: 54px 0 46px;
}

.arf-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .95fr;
    gap: 40px;
    align-items: center;
}

.arf-hero h1 {
    font-size: 56px;
    line-height: 1.2;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #000000;
    max-width: 590px;
}

.arf-hero p {
    margin: 0 0 10px;
    color: #222222eb;
    font-size: 16px;
    line-height: 1.32;
    max-width: 590px;
    font-weight: 400;
}

.arf-hero strong {
    display: block;
    margin: 12px 0 24px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #222222eb;
}

.arf-regular-text {
    font-family: Tahoma, Sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: var(--text-size-heading-5);
    line-height: 140%;
    letter-spacing: 0;                                                                          
}                                                                                                        
                                                                                              
.arf-bold-regular {
    font-family: Tahoma, Sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: var(--text-size-heading-5);
    line-height: 140%;
    letter-spacing: 0;
}
                                                            
.arf-hero-avatars {
    width: 280px;
    max-width: 100%;
    border-radius: 999px;
}
                                                                                 
.arf-signup-card {
    background: var(--card-bg);
    border: 1px solid #ececf4;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 16px 36px rgba(11, 24, 43, 0.08);
}
                                                                                    
.arf-signup-card h2 {
    margin: 0 0 24px;
    text-align: center;
    color: #1f4fc7;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
}

.arf-input {
    width: 100%;
    border: 1px solid #d9dbe8;
    border-radius: 2px;
    background: #fff;
    height: 48px;
    padding: 8px 16px;
    font-size: 16px;
    margin-bottom: 12px;
    outline: none;
}

.arf-signup-card .arf-input {
    background: #ffffff;
    margin: 12px 0;
    font-size: 16px;
    border: 1px solid #a6afb2;
    outline: none;
    border-radius: 3px;
    padding: 8px 16px;
}
                                        
.arf-input:focus {
    border-color: #7f43d9;
    box-shadow: 0 0 0 3px rgba(127, 67, 217, 0.15);
}

.arf-signup-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 14px 0 14px;
}

.arf-signup-submit {
    background-color: transparent;
    background-image: linear-gradient(131.69deg, #1e6be8 5.15%, #730093 100%);
    border: 1px solid #fff;
    border-radius: 15px;
    color: #fff;
    text-transform: none;
    font-weight: 700;
    font-size: 16px;
    padding: 0 20px;
    height: 56px;
    min-width: 170px;
    font-family: 'Red Hat Display', Sans-serif;
    line-height: 1;
    box-shadow: none;
}

.arf-switch-dot {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.arf-disclaimer {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #222222;
}

.arf-disclaimer a {
    text-decoration: underline;
}

.arf-section {
    padding: 72px 0;
}

.arf-section-light {
    background: #fff;
}

.arf-section-blue {
    background: #dff0fe;
    padding: 80px 0;
}

.arf-title {
    margin: 0 auto 22px;
    text-align: center;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 1300px;
    color: #000000;
    font-weight: 700;
}

.arf-copy {
    margin: 0 auto;
    max-width: 1280px;
    text-align: center;
    color: #000000;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
}

.arf-features {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
                                                       
.arf-feature {
    text-align: center;
}

.arf-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    color: #8f57dc;
}

.arf-feature h3 {
    margin: 8px 0 25px;
    font-size: 32px;
    line-height: 1.1;
    color: #000000;
    font-weight: 700;
}

.arf-feature p {
    margin: 0;
    color: #000000;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
}

.arf-impact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    width: min(1300px, calc(100% - 200px));
    margin: 0 auto;
}

.arf-impact-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.arf-impact-content {
    padding: 60px 54px;
}

.arf-impact h3 {
    margin: 8px 0 16px;
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #000000;
    font-weight: 500;
    max-width: 600px;
}

.arf-impact p {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.45;
    color: #000000;
    font-weight: 400;
    max-width: 600px;
}

.arf-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.arf-stat-number {
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: #000000;
}

.arf-stat-label {
    font-size: 20px;
    color: #000000;
    line-height: 1.3;
    font-weight: 500;
    max-width: 260px;
}

.arf-rewards-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.arf-reward-image {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    object-fit: cover;
    display: block;
}

.arf-cta-wrap {
    background: var(--soft-purple);
    border-radius: 24px;
    padding: 50px 60px 30px;
    text-align: center;
}

.arf-cta-wrap h3 {
    margin: 0 0 12px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #0d1c47;
}

.arf-cta-wrap p {
    margin: 0 0 30px;
    font-size: 18px;
    color: #0d1c47;
    font-weight: 500;
}

.arf-cta-form {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
}

.arf-cta-form .arf-input {
    margin: 0;
    border-radius: 999px;
    height: 44.8px;
    padding: 12px;
}

.arf-btn-cta {
    border-radius: 999px;
    min-width: 170px;
    border: 1px solid #2850be;
    background: #f6f9ff;
    color: #2552cb;
    font-weight: 600;
    font-size: 16px;
    height: 44.8px;
    font-weight: 600;
}

.arf-terms {
    margin-top: 30px;
    font-size: 12px;
    color: #0d1c47;
}

.arf-terms a {
    text-decoration: underline;
}

.arf-footer {
    padding: 28px 0 24px;
}

.arf-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.arf-footer-nav {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.arf-footer-nav a {
    padding: 0 15px;
    color: #000000 !important;
}

.arf-social {
    display: flex;
    gap: 10px;
}

.arf-social a {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
}

.arf-social a svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
}

.arf-footer-bottom {
    margin-top: 18px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    color: #1f1f2a;
}

.arf-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.arf-footer-links a {
    text-decoration: underline;
    color: #000000 !important;
}

.arf-footer a:visited,
.arf-footer a:hover,
.arf-footer a:active {
    color: #000000 !important;
}

.arf-auth-header {
    background: #fff;
}

.arf-auth-header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.arf-auth-login-wrap {
    font-size: 18px;
    color: #222;
}

.arf-auth-login-wrap a {
    text-decoration: underline;
    color: #000;
    font-weight: 600;
}

.arf-auth-header-line {
    height: 3px;
    background: #7d4ed8;
}

.arf-thankyou-wrap {
    background: #f3f3f3;
    padding: 40px 0 48px;
}

.arf-thankyou-content {
    max-width: 760px;
    text-align: center;
}

.arf-thankyou-content h1 {
    font-size: 48px;
    margin: 10px 0 12px;
    color: #262626;
}

.arf-thankyou-lead {
    font-size: 24px;
    margin: 0 0 16px;
    color: #2b2b2b;
}

.arf-thankyou-sub {
    font-size: 22px;
    margin: 0 0 26px;
    color: #2b2b2b;
}

.arf-otp-block {
    display: flex;
    justify-content: center;
}

.arf-thankyou-help {
    margin-top: 24px;
    color: #333;
    font-size: 14px;
}

.arf-thankyou-help a {
    text-decoration: underline;
}

.arf-member-login-section {
    min-height: 100vh;
    background: #f3f3f3;
}

.arf-member-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.arf-member-login-left {
    padding: 18px 64px 40px;
    display: flex;
    flex-direction: column;
}

.arf-member-login-logo {
    align-self: flex-start;
}

.arf-member-login-form-wrap {
    margin: auto 0;
    width: min(430px, 100%);
}

.arf-member-login-form-wrap form {
    width: 100%;
}

.arf-member-login-intro {
    text-align: center;
    margin-bottom: 22px;
}

.arf-member-login-intro h1 {
    color: #111111;
    font-family: 'Red Hat Display', Sans-serif;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
    margin: 0 0 20px;
}

.arf-member-login-intro p {
    margin: 0;
    font-family: Tahoma, Sans-serif;
    color: #222222;
}

.arf-member-login-form-wrap h1,
.arf-member-login-form-wrap h2,
.arf-member-login-form-wrap h3 {
    color: #111111;
    font-family: 'Red Hat Display', Sans-serif;
    font-size: 40px;
    line-height: 1.05;
    font-weight: 600;
    margin: 0 0 20px;
    text-align: center;
}

.arf-member-login-form-wrap p {
    font-family: Tahoma, Sans-serif;
    color: #222222;
}

.arf-member-login-form-wrap input[type="email"],
.arf-member-login-form-wrap input[type="text"],
.arf-member-login-form-wrap input[type="password"] {
    width: 100%;
    border: 1px solid #8f96a2;
    border-radius: 8px;
    background: #f3f3f3;
    height: 44px;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 1.3;
    color: #111111;
    margin-bottom: 14px;
}

.arf-member-login-form-wrap button,
.arf-member-login-form-wrap input[type="submit"] {
    width: 100%;
    border: 0;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(90deg, #1a63d8 0%, #7d25c5 100%);
    box-shadow: 0 6px 14px rgba(32, 72, 184, 0.24);
    min-height: 60px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    padding: 12px 24px;
}

.arf-member-login-form-wrap #loginBtn {
    display: block;
    width: 100%;
    border: 1px solid #e1e3e8;
    border-radius: 6px;
    min-height: 0;
    background-image: none !important;
    background-color: #f5f5f5 !important;
    color: #111111 !important;
    font-family: 'Red Hat Display', Sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    text-transform: capitalize;
    letter-spacing: 0;
    box-shadow: none;
    padding: 12px 24px;
}

.arf-member-login-form-wrap .klm-input-container {
    margin: 14px 0 28px;
}

.arf-member-login-form-links {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    text-align: center !important;
}

.arf-member-login-form-links p {
    margin: 0 0 14.4px;
    font-size: 14px;
    line-height: 1.5;
    color: #444444;
    font-family: Lato, Sans-serif;
    text-align: center !important;
}

.arf-member-login-form-links p:last-child {
    margin-bottom: 0;
}

.arf-member-login-form-links a {
    color: inherit;
    text-decoration: underline;
    text-align: center !important;
}

.arf-member-login-form-wrap a {
    text-decoration: underline;
}

.arf-member-login-right {
    background: linear-gradient(180deg, #f3ebff 0%, #f5f2ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.arf-member-login-image {
    width: min(560px, 100%);
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.arf-contact-new-section {
    background: #ffffff;
    padding: 48px 0 72px;
}

.arf-contact-new-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    gap: 40px;
    align-items: stretch;
}

.arf-contact-new-form {
    padding-top: 10px;
}

.arf-contact-new-kicker {
    margin: 0 0 10px;
    font-family: Tahoma, Sans-serif;
    font-size: 20px;
    line-height: 1.4;
    color: #111111;
}

.arf-contact-new-title {
    margin: 0 0 28px;
    font-family: 'Red Hat Display', Sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.05;
    color: #111111;
}

.arf-contact-new-form-wrap .wpcf7 {
    max-width: 100%;
}

.arf-contact-new-form-wrap .wpcf7 form p {
    margin: 0 0 16px;
}

.arf-contact-new-form-wrap .wpcf7 form p:last-child {
    margin-bottom: 0;
}

.arf-contact-new-form-wrap .wpcf7 label {
    display: block;
    margin-bottom: 6px;
    font-family: Tahoma, Sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #111111;
}

.arf-contact-new-form-wrap .wpcf7 label br {
    display: none;
}

/* CF7 can inject <br> between label and control; hide to avoid extra gap. */
.arf-contact-new-form-wrap .wpcf7 form p > br {
    display: none !important;
}

.arf-contact-new-form-wrap .wpcf7 input[type="text"],
.arf-contact-new-form-wrap .wpcf7 input[type="email"],
.arf-contact-new-form-wrap .wpcf7 input[type="tel"],
.arf-contact-new-form-wrap .wpcf7 select,
.arf-contact-new-form-wrap .wpcf7 textarea {
    width: 100%;
    border: 1px solid #7f8796;
    margin: 0px 0 10px 0;
    border-radius: 8px;
    background: #ffffff;
    padding: 10px 14px;
    font-family: Tahoma, Sans-serif;
    font-size: 16px;
    color: #111111;
    box-sizing: border-box;
}

.arf-contact-new-form-wrap .wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

.arf-contact-new-form-wrap .wpcf7 input[type="submit"] {
    border: 0;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(153deg, #1f6be8 25%, #6f0597 80%);
    font-family: 'Red Hat Display', Sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    padding: 12px 26px;
    min-width: 120px;
    cursor: pointer;
}

.arf-contact-new-media {
    overflow: hidden;
}

.arf-contact-new-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

/* Rewards new page (sync with hello-elementor-child arf-global.css) */
.arf-rewards-new-page .arf-nav a.is-active {
    color: #1b4fb9;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.rwd-main section {
    padding: 64px 0;
}

.rwd-hero {
    padding-top: 44px;
    padding-bottom: 32px;
}

.rwd-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 34px;
    align-items: center;
}

.rwd-hero-copy h1 {
    margin: 0 0 16px;
    font-size: 72px;
    line-height: 1.04;
    color: #090915;
}

.rwd-hero-copy p {
    margin: 0 0 20px;
    max-width: 760px;
    font-size: 34px;
    line-height: 1.45;
    color: #222230;
}

.rwd-hero-copy input.input,
.rwd-hero-copy input[type="email"] {
    border: 1px solid #aeb7c7 !important;
    background: #ffffff !important;
}

.rwd-hero-media img {
    width: min(560px, 100%);
    margin-left: auto;
    display: block;
}

.rwd-btn {
    border-radius: 999px;
    border: 0;
    color: #fff;
    background: linear-gradient(90deg, #1a63d8 0%, #7d25c5 100%);
    padding: 10px 24px;
    font-size: 20px;
    font-weight: 600;
}

.rwd-cards-section {
    background: #dff0fe;
}

.rwd-cards-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.rwd-cards-head h2 {
    margin: 0 0 10px;
    font-size: 56px;
}

.rwd-cards-head p {
    margin: 0;
    font-size: 28px;
}

.rwd-view-all {
    border: 1px solid #164083;
    border-radius: 14px;
    padding: 11px 24px;
    color: #113969;
}

.rwd-cards-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.rwd-card img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.rwd-card h3 {
    margin: 12px 0 6px;
    font-size: 30px;
    line-height: 1.3;
}

.rwd-card p {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.rwd-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.rwd-why h2 {
    margin: 0;
    font-size: 68px;
    line-height: 1.1;
}

.rwd-why p {
    margin: 0 0 22px;
    font-size: 35px;
    line-height: 1.45;
}

.rwd-icons {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.rwd-icons h3 {
    margin: 0 0 8px;
    font-size: 38px;
}

.rwd-icons p {
    margin: 0;
    font-size: 28px;
}

.rwd-faq-wrap {
    background: #f1ecf6;
}

.rwd-faq-wrap h2 {
    margin: 0;
    text-align: center;
    font-size: 62px;
}

.rwd-faq-sub {
    text-align: center;
    font-size: 30px;
    margin: 10px 0 30px;
}

.rwd-faq .faq-item {
    border: 1px solid #aeb2b9;
    margin-bottom: 16px;
    background: #fff;
}

.rwd-faq .faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 34px;
    font-weight: 500;
    background: #fff;
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.rwd-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all .3s ease;
}

.rwd-faq .faq-answer p {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.6;
}

/* Keep FAQ text black regardless of global button/link overrides. */
.rwd-faq-wrap h2,
.rwd-faq-wrap .rwd-faq-sub,
.rwd-faq .faq-question,
.rwd-faq .faq-question .icon,
.rwd-faq .faq-answer,
.rwd-faq .faq-answer p {
    color: #000000 !important;
}

.rwd-faq .faq-item.active .faq-answer {
    max-height: 340px;
    padding-top: 6px;
}

.rwd-faq .icon {
    transition: transform .3s ease;
}

.rwd-faq .faq-item.active .icon {
    transform: rotate(45deg);
}

.rwd-still {
    text-align: center;
    margin-top: 48px;
}

.rwd-still h3 {
    margin: 0 0 16px;
    font-size: 52px;
}

.rwd-contact-btn {
    display: inline-flex;
    padding: 12px 28px;
    border: 1px solid #164083;
    border-radius: 14px;
    color: #164083;
}

@media (max-width: 1200px) {
    .rwd-hero-copy h1 { font-size: 50px; }
    .rwd-hero-copy p, .rwd-cards-head p, .rwd-why p { font-size: 22px; }
    .rwd-cards-head h2, .rwd-why h2, .rwd-faq-wrap h2 { font-size: 42px; }
    .rwd-card h3, .rwd-icons h3, .rwd-faq .faq-question { font-size: 24px; }
    .rwd-card p, .rwd-icons p, .rwd-faq .faq-answer p, .rwd-faq-sub { font-size: 18px; }
}

@media (max-width: 900px) {
    .rwd-hero-grid, .rwd-why-grid, .rwd-icons { grid-template-columns: 1fr; }
    .rwd-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.arf-reset-password-section {
    background: linear-gradient(180deg, #dff6ff 0%, #f0f7ff 40%, #ffffff 100%);
    padding: 56px 0 80px;
    min-height: calc(100vh - 200px);
}

.arf-reset-password-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.arf-reset-password-title {
    margin: 0 0 16px;
    font-family: 'Red Hat Display', Sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: #111111;
}

.arf-reset-password-lead {
    margin: 0 auto;
    max-width: 560px;
    font-family: Tahoma, Sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #222222;
}

.arf-reset-password-form-wrap {
    margin-top: 28px;
    text-align: center;
}

/* "Check your mail" step ([klm_reset_password] success without Elementor go()) */
.klm-reset-mail-sent {
    max-width: 560px;
    margin: 0 auto;
    padding: 8px 0 24px;
    text-align: center;
}

.klm-reset-mail-sent__art {
    margin: 0 auto 20px;
    max-width: 300px;
}

.klm-reset-mail-sent__svg {
    width: 100%;
    height: auto;
    display: block;
}

.klm-reset-mail-sent__title {
    margin: 0 0 16px;
    font-family: 'Red Hat Display', Sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #111111;
}

.klm-reset-mail-sent__text {
    margin: 0 0 10px;
    font-family: Tahoma, Sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #222222;
}

.klm-reset-mail-sent__help {
    margin: 28px 0 0;
    font-family: Tahoma, Sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #444444;
}

.klm-reset-mail-sent__help .klm-reset-contact-link {
    color: #0242b9;
    text-decoration: underline;
    font-weight: 600;
}

.klm-reset-mail-sent__help .klm-reset-contact-link:hover {
    color: #730093;
}

.arf-reset-password-form-wrap .klm .flex.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 16px;
    max-width: 640px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.arf-reset-password-form-wrap .klm input[type="email"] {
    flex: 1 1 220px;
    min-width: 180px;
    height: 48px;
    border: 1px solid #b8c9e8;
    border-radius: 999px;
    padding: 0 20px;
    font-size: 16px;
    background: #ffffff;
    box-sizing: border-box;
}

.arf-reset-password-form-wrap .klm button[type="submit"] {
    flex: 0 0 auto;
    height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid #0242b9;
    background: transparent;
    color: #0242b9;
    font-family: 'Red Hat Display', Sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.arf-reset-password-form-wrap--token {
    text-align: left;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.arf-reset-password-form-wrap--token form .password-field input[type="password"] {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .arf-nav {
        display: none;
    }

    .arf-nav-toggle {
        display: inline-block;
    }

    .arf-actions .arf-btn-outline {
        display: none;
    }

    .arf-actions .arf-lang-dropdown {
        margin-right: 0;
    }
}

@media (max-width: 1080px) {
    .arf-section-blue {
        padding: 64px 0;
    }

    .arf-impact {
        grid-template-columns: 1fr;
        width: min(1300px, calc(100% - 64px));
    }

    .arf-impact-media img {
        min-height: 360px;
    }
}

@media (max-width: 860px) {
    .arf-wrap {
        width: min(1200px, calc(100% - 28px));
    }

    .arf-section-blue {
        padding: 48px 0;
    }

    .arf-hero-grid,
    .arf-features,
    .arf-rewards-grid {
        grid-template-columns: 1fr;
    }

    .arf-feature h3 {
        font-size: 28px;
    }

    .arf-feature p,
    .arf-impact p,
    .arf-stat-label,
    .arf-copy {
        font-size: 16px;
    }

    .arf-signup-card h2 {
        font-size: 52px;
    }

    .arf-impact-content {
        padding: 40px 22px;
    }

    .arf-stats {
        grid-template-columns: 1fr;
    }

    .arf-cta-wrap {
        padding: 36px 22px;
    }

    .arf-cta-form {
        grid-template-columns: 1fr;
    }

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

    .arf-header-inner {
        padding: 12px 0;
        min-height: 0;
    }

    .arf-actions {
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .arf-lang-dropdown {
        margin-right: 0;
    }

    .arf-auth-header-inner {
        min-height: 72px;
    }

    .arf-auth-login-wrap {
        font-size: 15px;
    }

    .arf-thankyou-content h1 {
        font-size: 36px;
    }

    .arf-thankyou-lead,
    .arf-thankyou-sub {
        font-size: 18px;
    }

    .arf-member-login-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .arf-member-login-left {
        padding: 16px 20px 28px;
    }

    .arf-member-login-form-wrap {
        margin: 26px auto 0;
        width: 100%;
    }

    .arf-member-login-form-wrap h1,
    .arf-member-login-form-wrap h2,
    .arf-member-login-form-wrap h3 {
        font-size: 52px;
    }

    .arf-member-login-intro h1 {
        font-size: 52px;
    }

    .arf-member-login-right {
        padding: 16px 20px 28px;
    }

    .arf-contact-new-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .arf-contact-new-title {
        font-size: 52px;
    }

    .arf-contact-new-image {
        min-height: 320px;
    }

    .arf-reset-password-title {
        font-size: 36px;
    }

    .klm-reset-mail-sent__title {
        font-size: 32px;
    }

    .arf-reset-password-form-wrap .klm .flex.flex-row {
        flex-direction: column;
        align-items: stretch;
    }

    .arf-reset-password-form-wrap .klm input[type="email"],
    .arf-reset-password-form-wrap .klm button[type="submit"] {
        width: 100%;
        flex: 1 1 auto;
    }
}

@media (max-width: 768px) {
    .arf-mobile-menu-open {
        overflow: hidden;
    }

    .arf-header .arf-mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(10, 12, 22, 0.45);
        z-index: 98;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .arf-header .arf-mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: min(88vw, 360px);
        height: 100vh;
        background: #ffffff;
        border-left: 1px solid #d7dced;
        z-index: 99;
        transform: translateX(101%);
        transition: transform 0.24s ease;
        padding: 18px;
        overflow-y: auto;
    }

    .arf-header.is-mobile-open .arf-mobile-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .arf-header.is-mobile-open .arf-mobile-menu {
        transform: translateX(0);
    }

    .arf-mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
        font-size: 20px;
    }

    .arf-mobile-close {
        border: 0;
        background: transparent;
        font-size: 32px;
        line-height: 1;
        color: #1a1a2a;
        cursor: pointer;
    }

    .arf-mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-top: 6px;
    }

    .arf-mobile-nav a {
        display: block;
        padding: 12px 8px;
        border-bottom: 1px solid #eceff8;
        color: #111224;
        font-size: 16px;
        font-weight: 500;
    }

    .arf-mobile-nav a.is-active {
        color: #1b4fb9;
    }

    .arf-mobile-lang {
        margin-top: 16px;
        display: flex;
        gap: 10px;
    }

    .arf-mobile-lang a {
        min-width: 52px;
        text-align: center;
        border: 1px solid #ccd5ea;
        border-radius: 999px;
        padding: 7px 14px;
        font-size: 14px;
        font-weight: 700;
    }

    .arf-mobile-lang a.is-active {
        border-color: #164083;
        color: #164083;
        background: #f1f5ff;
    }

    .arf-mobile-actions {
        margin-top: 18px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .arf-mobile-actions .arf-btn {
        width: 100%;
        justify-content: center;
        min-height: 46px;
    }
}

@media (max-width: 640px) {
    .arf-header-inner {
        min-height: 78px;
        gap: 12px;
        padding: 12px 0;
        flex-wrap: nowrap;
    }

    .arf-actions {
        width: auto;
        margin-left: auto;
        gap: 8px;
        align-items: center;
        flex-wrap: nowrap;
    }

    .arf-actions .arf-lang-dropdown,
    .arf-actions .arf-btn-outline {
        display: none;
    }

    .arf-actions .arf-btn-primary {
        padding: 9px 18px;
        min-height: 40px;
        font-size: 16px;
        font-weight: 700;
    }

    .arf-home-page h1,
    .arf-about-new-page h1,
    .arf-contact-new-page h1,
    .arf-member-login-new-page h1 {
        font-size: 34px !important;
        line-height: 1.15 !important;
    }

    .arf-home-page h2,
    .arf-about-new-page h2,
    .arf-contact-new-page h2,
    .arf-member-login-new-page h2 {
        font-size: 30px !important;
        line-height: 1.18 !important;
    }

    .arf-home-page h3,
    .arf-about-new-page h3,
    .arf-contact-new-page h3,
    .arf-member-login-new-page h3 {
        font-size: 24px !important;
        line-height: 1.22 !important;
    }

    .arf-home-page p,
    .arf-about-new-page p,
    .arf-contact-new-page p,
    .arf-member-login-new-page p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    .arf-hero,
    .arf-section,
    .arf-about-new-hero,
    .arf-about-new-impact,
    .arf-about-new-voice,
    .arf-about-new-testimonials,
    .arf-faq-new-page .arf-faq-shell,
    .arf-contact-new-shell,
    .arf-member-login-new-shell,
    .arf-reset-password-section,
    .arf-thankyou-shell,
    .arf-verify-2fa-shell {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .arf-signup-card,
    .arf-cta-wrap,
    .arf-impact-content,
    .arf-contact-new-card,
    .arf-member-login-form-wrap {
        padding: 20px !important;
    }

    .arf-footer-row {
        gap: 18px;
    }

    .arf-footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 16px;
    }

    .arf-footer-bottom {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .arf-footer-links {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    /* Home blue impact section: prevent right-shift and center content on phones. */
    .arf-section-blue .arf-impact {
        width: calc(100% - 24px) !important;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: 1fr;
        overflow: hidden;
    }

    .arf-section-blue .arf-impact-media,
    .arf-section-blue .arf-impact-content {
        width: 100%;
        max-width: 100%;
    }

    .arf-section-blue .arf-impact-media img {
        min-height: 0;
        height: auto;
    }

    .arf-section-blue .arf-impact-content {
        padding: 20px 16px !important;
    }

    .arf-section-blue .arf-impact h3,
    .arf-section-blue .arf-impact p,
    .arf-section-blue .arf-impact .arf-stat-label {
        max-width: none;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* FAQ NEW PAGE (sync with hello-elementor-child arf-global.css) */
.arf-faq-new-page .arf-nav a.is-active {
    color: #1b4fb9;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.arf-faq-new-page .arf-faq-shell {
    padding: 48px 0 70px;
    background: #fff;
}

.arf-faq-new-page .arf-faq-page-title {
    margin: 0 0 90px;
    text-align: center;
    font-size: 48px;
    line-height: 1.1;
    color: #05050f;
}

.arf-faq-new-page .arf-faq-section-title {
    margin: 30px 0 30px;
    font-size: 32px;
    line-height: 1.2;
    color: #0e0e19;
}

.arf-faq-new-page .faq-container {
    width: 100%;
    margin: 0 auto 32px;
    font-family: Arial, sans-serif;
}

.arf-faq-new-page .faq-item {
    border: 1px solid #b7b7bf;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.arf-faq-new-page .faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 500;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #12121d;
    box-shadow: none;
    border-radius: 0;
}

.arf-faq-new-page .faq-question:hover {
    background: #f1f1f1;
}

.arf-faq-new-page .faq-question:focus,
.arf-faq-new-page .faq-question:focus-visible,
.arf-faq-new-page .faq-question:active {
    outline: none;
    box-shadow: none;
    border: none;
}

.arf-faq-new-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    transition: all 0.3s ease;
}

.arf-faq-new-page .faq-answer p {
    margin: 15px 0;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.arf-faq-new-page .faq-item.active .faq-answer {
    max-height: 420px;
    padding: 15px 20px;
}

.arf-faq-new-page .faq-item.active .icon {
    transform: rotate(45deg);
}

.arf-faq-new-page .icon {
    font-size: 22px;
    transition: transform 0.3s ease;
    flex: 0 0 auto;
    margin-left: 16px;
    color: #111;
}

@media (max-width: 1200px) {
    .arf-faq-new-page .arf-faq-page-title {
        font-size: 44px;
    }

    .arf-faq-new-page .arf-faq-section-title {
        font-size: 34px;
    }

    .arf-faq-new-page .faq-question {
        font-size: 24px;
    }

    .arf-faq-new-page .faq-answer p {
        font-size: 18px;
    }
}

@media (max-width: 900px) {
    .arf-faq-new-page .arf-faq-page-title {
        font-size: 34px;
    }

    .arf-faq-new-page .arf-faq-section-title {
        font-size: 28px;
    }

    .arf-faq-new-page .faq-question {
        padding: 15px;
        font-size: 18px;
    }

    .arf-faq-new-page .faq-answer {
        padding: 0 15px;
    }

    .arf-faq-new-page .faq-answer p {
        font-size: 15px;
    }

    .arf-faq-new-page .faq-item.active .faq-answer {
        max-height: 560px;
        padding: 12px 15px;
    }
}

/* About us new page (sync with hello-elementor-child arf-global.css) */
.arf-about-new-page .arf-nav a.is-active {
    color: #1b4fb9;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.arf-about-new-hero {
    padding: 62px 0 52px;
    background: #fff;
}

.arf-about-new-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.arf-about-new-hero h1 {
    margin: 0;
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0a0a1a;
}

.arf-about-new-hero p {
    margin: 6px 0 24px;
    font-size: 19px;
    line-height: 1.65;
    color: #141420;
    font-family: Tahoma, sans-serif;
}

.arf-about-new-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid #164083;
    border-radius: 14px;
    color: #0f356f;
    font-size: 27px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
}

.arf-about-new-impact {
    background: #d8eef9;
    padding: 64px 0;
}

.arf-about-new-impact-grid {
    display: grid;
    grid-template-columns: 1.2fr .95fr;
    gap: 46px;
    align-items: stretch;
}

.arf-about-new-impact-copy h2 {
    margin: 0 0 22px;
    font-size: 57px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #0a0a1a;
}

.arf-about-new-impact-copy p {
    margin: 0 0 18px;
    color: #1a1a2a;
    font-size: 18px;
    line-height: 1.5;
    font-family: Tahoma, sans-serif;
}

.arf-about-new-stats {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 40px;
}

.arf-about-new-stat-number {
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
    color: #02020f;
}

.arf-about-new-stat-label {
    margin-top: 8px;
    color: #242433;
    font-size: 20px;
    line-height: 1.4;
    font-family: Tahoma, sans-serif;
}

.arf-about-new-impact-media img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

.arf-about-new-impact-media {
    height: auto;
    overflow: visible;
}

.arf-about-new-voice {
    padding: 72px 0;
    text-align: center;
    background: #fff;
}

.arf-about-new-voice h2 {
    margin: 0 0 20px;
    font-size: 76px;
    line-height: 1.05;
    color: #02020f;
}

.arf-about-new-voice p {
    max-width: 980px;
    margin: 0 auto 20px;
    font-size: 18px;
    line-height: 1.5;
    color: #111122;
    font-family: Tahoma, sans-serif;
}

.arf-about-new-testimonials {
    background: #f2ebf8;
    padding: 72px 0 60px;
    margin-bottom: 48px;
}

.arf-about-new-testimonials h2 {
    margin: 0 0 34px;
    font-size: 48px;
    line-height: 1.1;
    color: #060612;
}

.arf-about-new-testimonial-slider {
    overflow: hidden;
}

.arf-about-new-testimonial-track {
    display: flex;
    gap: 44px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.arf-about-new-testimonial {
    flex: 0 0 calc((100% - 44px) / 2);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.arf-about-new-stars {
    font-size: 32px;
    line-height: 1;
    letter-spacing: 3px;
}

.arf-about-new-testimonial p {
    margin: 0;
    font-size: 20px;
    line-height: 1.52;
    color: #202030;
    font-family: Tahoma, sans-serif;
}

.arf-about-new-author {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.arf-about-new-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.arf-about-new-author strong {
    display: block;
    font-size: 30px;
    line-height: 1.2;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

.arf-about-new-author span {
    display: block;
    margin-top: 3px;
    font-size: 27px;
    line-height: 1.2;
    color: #333342;
    font-family: Tahoma, sans-serif;
}

.arf-about-new-carousel-ui {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arf-about-new-dots {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.arf-about-new-dots span,
.arf-about-new-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b3b3bb;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.arf-about-new-dots span.is-active,
.arf-about-new-dot.is-active {
    background: #111;
}

.arf-about-new-arrows {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.arf-about-new-arrow-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid #090916;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.arf-about-new-arrow-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.arf-about-new-page .arf-section.arf-section-light {
    background: #ffffff;
}

.arf-about-new-page .arf-cta-wrap {
    background: #dff0fe;
    border-radius: 0;
    padding: 60px 60px 42px;
}

.arf-about-new-page .arf-footer {
    background: #ffffff;
    margin-top: 0;
    border-top: 1px solid #d9dee6;
    padding-top: 30px;
}

@media (max-width: 1200px) {
    .arf-about-new-hero h1 {
        font-size: 48px;
    }

    .arf-about-new-impact-copy h2 {
        font-size: 42px;
    }

    .arf-about-new-impact-copy p {
        font-size: 21px;
    }

    .arf-about-new-stat-number {
        font-size: 42px;
    }

    .arf-about-new-stat-label {
        font-size: 17px;
    }

    .arf-about-new-voice h2 {
        font-size: 52px;
    }

    .arf-about-new-voice p {
        font-size: 22px;
    }

    .arf-about-new-testimonials h2 {
        font-size: 48px;
    }

    .arf-about-new-testimonial p {
        font-size: 24px;
    }

    .arf-about-new-author strong {
        font-size: 22px;
    }

    .arf-about-new-author span {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .arf-about-new-hero-grid,
    .arf-about-new-impact-grid {
        grid-template-columns: 1fr;
    }

    .arf-about-new-hero {
        padding: 46px 0 38px;
    }

    .arf-about-new-hero h1 {
        font-size: 38px;
    }

    .arf-about-new-hero p {
        font-size: 17px;
    }

    .arf-about-new-hero-btn {
        font-size: 20px;
        padding: 12px 20px;
    }

    .arf-about-new-impact-copy h2 {
        font-size: 34px;
    }

    .arf-about-new-impact-copy p {
        font-size: 17px;
    }

    .arf-about-new-voice h2 {
        font-size: 36px;
    }

    .arf-about-new-voice p {
        font-size: 18px;
    }

    .arf-about-new-testimonials h2 {
        font-size: 36px;
    }

    .arf-about-new-testimonial p {
        font-size: 17px;
    }

    .arf-about-new-testimonial {
        flex-basis: 100%;
    }

    .arf-about-new-page .arf-cta-wrap {
        padding: 38px 20px 28px;
    }
}

/* Signup flow hardening (KLM [klm_signup_new] uses a uniqid() form id, not #signupForm / klm_ prefix). */
.arf-signup-page #signupForm input[type="text"],
.arf-signup-page #signupForm input[type="email"],
.arf-signup-page #signupForm input[type="tel"],
.arf-signup-page #signupForm input[type="password"],
.arf-signup-page .klm-signup-form input[type="text"],
.arf-signup-page .klm-signup-form input[type="email"],
.arf-signup-page .klm-signup-form input[type="tel"],
.arf-signup-page .klm-signup-form input[type="password"] {
    width: 100%;
    min-height: 48px;
    border: 1px solid #c9cfdb !important;
    border-radius: 15px !important;
    padding: 11px 14px !important;
    background: #fff;
    box-sizing: border-box;
}

.arf-signup-page #signupForm .vt-select,
.arf-signup-page .klm-signup-form .vt-select {
    min-height: 48px;
    border: 1px solid #c9cfdb !important;
    border-radius: 15px !important;
    background: #fff;
    box-sizing: border-box;
}

.arf-signup-page #signupForm .vt-select select,
.arf-signup-page .klm-signup-form .vt-select select {
    width: 100%;
    height: 46px;
    border: 0 !important;
    border-radius: 15px !important;
    padding: 0 12px !important;
    background: transparent !important;
    box-sizing: border-box;
}

.arf-signup-page #signupForm .password-field,
.arf-signup-page .klm-signup-form .password-field {
    position: relative;
}

.arf-signup-page #signupForm .password-field .toggle-password,
.arf-signup-page .klm-signup-form .password-field .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    cursor: pointer;
}

.arf-signup-page #signupForm .password-field input[type="password"],
.arf-signup-page .klm-signup-form .password-field input[type="password"] {
    padding-right: 44px !important;
}

/* Step 1 two-column fields: static fallback if Tailwind runtime is slow or classes are not generated. */
.arf-signup-page .klm-signup-form [data-fields="true"] .grid.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(12px, 3vw, 48px);
    row-gap: 12px;
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .arf-signup-page .klm-signup-form [data-fields="true"] .grid.grid-cols-2 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ARF Brand Sheet Compliance Layer
   Source: ARF - Brand sheet.pdf
   ========================================================= */

:root {
    /* Exact brand palette */
    --arf-white: #ffffff;
    --arf-neutral-lightest: #eeeeee;
    --arf-neutral-lighter: #cccccc;
    --arf-neutral: #666666;
    --arf-neutral-darker: #222222;
    --arf-neutral-darkest: #000000;
    --arf-primary-purple: #730093;
    --arf-accent-purple: #8660e7;
    --arf-neutral-blue: #1e6be8;
    --arf-light-blue: #d3efff;
    --arf-light-purple: #f6ecff;
}

/* Typography: heading = Red Hat Display, body = Tahoma */
html,
body,
.arf-home-page,
.arf-home-page *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
    font-family: Tahoma, Arial, sans-serif !important;
}

.arf-home-page h1,
.arf-home-page h2,
.arf-home-page h3,
.arf-home-page h4,
.arf-home-page h5,
.arf-home-page h6,
.arf-about-new-page h1,
.arf-about-new-page h2,
.arf-about-new-page h3,
.arf-about-new-page h4,
.arf-about-new-page h5,
.arf-about-new-page h6,
.arf-faq-new-page h1,
.arf-faq-new-page h2,
.arf-faq-new-page h3,
.arf-faq-new-page h4,
.arf-faq-new-page h5,
.arf-faq-new-page h6,
.arf-contact-new-page h1,
.arf-contact-new-page h2,
.arf-contact-new-page h3,
.arf-contact-new-page h4,
.arf-contact-new-page h5,
.arf-contact-new-page h6,
.arf-member-login-new-page h1,
.arf-member-login-new-page h2,
.arf-member-login-new-page h3,
.arf-member-login-new-page h4,
.arf-member-login-new-page h5,
.arf-member-login-new-page h6,
.arf-signup-page h1,
.arf-signup-page h2,
.arf-signup-page h3,
.arf-signup-page h4,
.arf-signup-page h5,
.arf-signup-page h6 {
    font-family: 'Red Hat Display', Arial, sans-serif !important;
}

/* Brand type scale - desktop */
.arf-home-page h1,
.arf-about-new-page h1,
.arf-contact-new-page h1,
.arf-member-login-new-page h1,
.arf-signup-page h1 {
    font-size: 56px !important;
    line-height: 1.2 !important;
}

.arf-home-page h2,
.arf-about-new-page h2,
.arf-contact-new-page h2,
.arf-member-login-new-page h2,
.arf-signup-page h2 {
    font-size: 48px !important;
    line-height: 1.2 !important;
}

.arf-home-page h3,
.arf-about-new-page h3,
.arf-contact-new-page h3,
.arf-member-login-new-page h3,
.arf-signup-page h3 {
    font-size: 40px !important;
    line-height: 1.2 !important;
}

.arf-home-page h4,
.arf-about-new-page h4,
.arf-contact-new-page h4,
.arf-member-login-new-page h4,
.arf-signup-page h4 {
    font-size: 32px !important;
    line-height: 1.3 !important;
}

.arf-home-page h5,
.arf-about-new-page h5,
.arf-contact-new-page h5,
.arf-member-login-new-page h5,
.arf-signup-page h5 {
    font-size: 24px !important;
    line-height: 1.4 !important;
}

.arf-home-page h6,
.arf-about-new-page h6,
.arf-contact-new-page h6,
.arf-member-login-new-page h6,
.arf-signup-page h6 {
    font-size: 20px !important;
    line-height: 1.4 !important;
}

.arf-home-page p,
.arf-about-new-page p,
.arf-contact-new-page p,
.arf-member-login-new-page p,
.arf-signup-page p {
    font-size: 16px;
    line-height: 1.5;
}

/* Brand type scale - mobile */
@media (max-width: 768px) {
    .arf-home-page h1,
    .arf-about-new-page h1,
    .arf-contact-new-page h1,
    .arf-member-login-new-page h1,
    .arf-signup-page h1 {
        font-size: 40px !important;
        line-height: 1.2 !important;
    }

    .arf-home-page h2,
    .arf-about-new-page h2,
    .arf-contact-new-page h2,
    .arf-member-login-new-page h2,
    .arf-signup-page h2 {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }

    .arf-home-page h3,
    .arf-about-new-page h3,
    .arf-contact-new-page h3,
    .arf-member-login-new-page h3,
    .arf-signup-page h3 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .arf-home-page h4,
    .arf-about-new-page h4,
    .arf-contact-new-page h4,
    .arf-member-login-new-page h4,
    .arf-signup-page h4 {
        font-size: 24px !important;
        line-height: 1.4 !important;
    }

    .arf-home-page h5,
    .arf-about-new-page h5,
    .arf-contact-new-page h5,
    .arf-member-login-new-page h5,
    .arf-signup-page h5 {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }

    .arf-home-page h6,
    .arf-about-new-page h6,
    .arf-contact-new-page h6,
    .arf-member-login-new-page h6,
    .arf-signup-page h6 {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }
}

/* Core color normalization */
.arf-header,
.arf-footer,
.arf-section-light {
    background: var(--arf-white);
}

.arf-nav a,
.arf-footer-nav a,
.arf-footer-links a,
.arf-copy,
.arf-impact p,
.arf-feature p {
    color: var(--arf-neutral-darker) !important;
}

/* Brand surfaces */
.arf-hero {
    background: linear-gradient(90deg, var(--arf-light-purple) 0%, var(--arf-light-blue) 100%) !important;
}

.arf-section-blue,
.arf-about-new-impact {
    background: var(--arf-light-blue) !important;
}

.arf-cta-wrap,
.arf-about-new-testimonials {
    background: var(--arf-light-purple) !important;
}

/* Buttons: consistent primary/secondary tokens */
.arf-btn-primary,
.arf-signup-submit,
.arf-member-login-form-wrap button,
.arf-member-login-form-wrap input[type="submit"] {
    color: var(--arf-white) !important;
    background: linear-gradient(90deg, var(--arf-neutral-blue) 0%, var(--arf-primary-purple) 100%) !important;
    border: none !important;
    border-radius: 15px !important;
}

.arf-btn-outline,
.arf-about-new-hero-btn,
.rwd-contact-btn {
    border: 1px solid var(--arf-neutral-blue) !important;
    color: var(--arf-neutral-blue) !important;
    background: var(--arf-white) !important;
}

/* Form controls */
.arf-input,
.arf-member-login-form-wrap input[type="email"],
.arf-member-login-form-wrap input[type="text"],
.arf-member-login-form-wrap input[type="password"] {
    border: 1px solid var(--arf-neutral-lighter) !important;
    background: var(--arf-white) !important;
    color: var(--arf-neutral-darker) !important;
}

/* Footer row (direct child: Step / Cancel / Next): align with the field grid width. */
.arf-signup-page .klm-signup-form > .flex.max-w-md {
    max-width: 720px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 4px;
    box-sizing: border-box;
}
