* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.home-showcase-page {
    margin: 0;
    min-height: 100vh;
    color: #ffffff;
    font-family: "Tajawal", "Segoe UI", Tahoma, sans-serif;
    background: #1f84e8;
}

body.home-showcase-page a {
    color: inherit;
    text-decoration: none;
}

body.home-static-page .home-stage {
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.14), transparent 32%),
        url("img/homepage/waves-1.webp") top center / 100% auto no-repeat,
        url("img/homepage/waves-2.webp") bottom center / 100% auto no-repeat,
        linear-gradient(180deg, rgba(16, 132, 241, 0.97) 0%, rgba(22, 128, 233, 0.99) 100%);
}

.home-stage {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        url("img/homepage/img-header.png") center 150px / 100% auto no-repeat,
        url("img/homepage/waves-1.webp") top center / 100% auto no-repeat,
        url("img/homepage/waves-2.webp") bottom center / 100% auto no-repeat,
        linear-gradient(180deg, rgba(16, 132, 241, 0.96) 0%, rgba(22, 128, 233, 0.98) 100%);
}

.home-container {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.home-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 22px 0 8px;
}

.home-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.home-brand-logo,
.home-brand-badge {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    flex: 0 0 54px;
}

.home-brand-logo {
    object-fit: cover;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 24px rgba(0, 46, 100, 0.16);
}

.home-brand-badge {
    display: inline-grid;
    place-items: center;
    color: #1b75d4;
    background: #ffffff;
    font-size: 1.12rem;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(0, 46, 100, 0.16);
}

.home-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-brand-copy strong {
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1;
}

.home-brand-copy span {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.home-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.home-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.97rem;
    font-weight: 700;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.home-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.home-topbar-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.home-topbar-btn {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 800;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-topbar-btn:hover {
    transform: translateY(-1px);
}

.home-topbar-btn-primary {
    color: #ffffff;
    background: linear-gradient(180deg, #47da00 0%, #35c600 100%);
    box-shadow: 0 14px 28px rgba(50, 198, 0, 0.2);
}

.home-topbar-btn-ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.05);
}

.home-main {
    position: relative;
    z-index: 1;
}

.home-hero-section {
    min-height: calc(100vh - 84px);
    padding: 24px 0 94px;
    display: flex;
    align-items: center;
}

.home-hero-layout {
    display: flex;
    width: 100%;
    min-height: inherit;
    align-items: center;
    justify-content: center;
}

.home-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    direction: rtl;
    text-align: center;
    width: min(100%, 760px);
    max-width: 760px;
    margin-inline: auto;
    transform: translateY(-72px);
}

.home-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 1.22rem;
    font-weight: 800;
}

.home-hero-title {
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 1.12;
    font-weight: 800;
}

.home-hero-title span {
    color: #ffffff;
}

.home-hero-text {
    margin: 18px auto 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
    line-height: 1.95;
}

.home-hero-stats {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.home-hero-stats span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
}

.home-hero-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.home-btn {
    min-width: 132px;
    min-height: 56px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 1.02rem;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.home-btn:hover {
    transform: translateY(-1px);
}

.home-btn-primary {
    color: #ffffff;
    background: linear-gradient(180deg, #47da00 0%, #35c600 100%);
    box-shadow: 0 18px 30px rgba(50, 198, 0, 0.24);
}

.home-btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.home-services-section {
    margin-top: -112px;
    padding: 8px 0 72px;
    background: url("img/homepage/waves-2.webp") bottom center / 100% auto no-repeat;
}

.home-section-heading {
    text-align: center;
    margin-bottom: 34px;
}

.home-section-kicker {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.home-section-title {
    margin: 14px 0 0;
    font-size: 1.14rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
}

.home-section-line {
    display: inline-block;
    width: 58px;
    height: 2px;
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.86);
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-service-card {
    min-height: 140px;
    padding: 28px 26px;
    border-radius: 20px;
    background: #ffffff;
    color: #152238;
    box-shadow: 0 18px 34px rgba(3, 47, 99, 0.14);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 36px rgba(3, 47, 99, 0.18);
}

.home-service-card h3 {
    margin: 0 0 14px;
    font-size: 1.18rem;
    font-weight: 800;
}

.home-service-card p {
    margin: 0;
    color: #2b3951;
    font-size: 0.98rem;
    line-height: 1.8;
}

.home-service-card-featured {
    background: linear-gradient(180deg, #20a7ef 0%, #20b7ec 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.home-service-card-featured p {
    color: rgba(255, 255, 255, 0.92);
}

.home-service-card:nth-child(4) {
    grid-column: 1;
}

.home-service-card:nth-child(5) {
    grid-column: 2;
}

.home-pricing-section {
    padding: 26px 0 84px;
    background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
    color: #122743;
}

.home-pricing-heading .home-section-kicker {
    color: #1b4e93;
}

.home-pricing-heading .home-section-title {
    color: #526b88;
}

.home-pricing-heading .home-section-line {
    background: linear-gradient(90deg, #20a7ef 0%, #4f82ff 100%);
}

.home-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.home-pricing-controls {
    display: flex;
    justify-content: center;
    margin: 0 0 28px;
}

.home-pricing-toggle {
    padding: 8px;
    display: inline-grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border-radius: 999px;
    background: rgba(27, 78, 147, 0.08);
    border: 1px solid rgba(27, 78, 147, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.home-pricing-toggle-btn {
    min-height: 46px;
    min-width: 136px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    color: #4c6481;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
    font: inherit;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.home-pricing-toggle-btn.has-note {
    min-height: 58px;
    padding: 10px 18px;
    gap: 2px;
}

.home-pricing-toggle-btn-label {
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.2;
}

.home-pricing-toggle-btn-note {
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f7f4b;
    margin-top: 2px;
}

.home-pricing-toggle-btn:hover {
    color: #163861;
    background: rgba(255, 255, 255, 0.64);
}

.home-pricing-toggle-btn.is-active {
    color: #ffffff;
    background: linear-gradient(180deg, #20a7ef 0%, #1d8df1 100%);
    box-shadow: 0 12px 22px rgba(29, 141, 241, 0.24);
}

.home-pricing-toggle-btn.is-active .home-pricing-toggle-btn-note {
    color: rgba(255, 255, 255, 0.92);
}

.home-pricing-card {
    min-height: 100%;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(27, 78, 147, 0.08);
    box-shadow: 0 20px 38px rgba(12, 52, 104, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 42px rgba(12, 52, 104, 0.16);
    border-color: rgba(32, 167, 239, 0.18);
}

.home-pricing-card.is-featured {
    color: #ffffff;
    background: linear-gradient(180deg, #1e88f4 0%, #12b6df 100%);
    border-color: transparent;
    box-shadow: 0 28px 50px rgba(23, 116, 207, 0.26);
    transform: translateY(-10px);
}

.home-pricing-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.home-pricing-badge,
.home-pricing-spotlight {
    min-height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
}

.home-pricing-badge {
    color: #1b4e93;
    background: rgba(32, 167, 239, 0.12);
}

.home-pricing-spotlight {
    color: #ffffff;
    background: rgba(18, 39, 67, 0.12);
}

.home-pricing-card.is-featured .home-pricing-badge {
    color: #0f2e56;
    background: rgba(255, 255, 255, 0.86);
}

.home-pricing-card.is-featured .home-pricing-spotlight {
    background: rgba(255, 255, 255, 0.18);
}

.home-pricing-copy h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
}

.home-pricing-copy p {
    margin: 10px 0 0;
    color: #536c88;
    font-size: 0.98rem;
    line-height: 1.9;
    text-align: center;
}

.home-pricing-card.is-featured .home-pricing-copy p {
    color: rgba(255, 255, 255, 0.92);
}

.home-pricing-price-display {
    padding: 18px 16px 16px;
    display: grid;
    gap: 8px;
    justify-items: center;
    text-align: center;
    border-radius: 20px;
    background: #f4f8fd;
    border: 1px solid rgba(27, 78, 147, 0.08);
}

.home-pricing-price-display strong {
    color: #11233d;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    width: 100%;
    text-align: center;
}

.home-pricing-price-display [data-home-plan-period] {
    color: #4f6782;
    font-size: 0.98rem;
    font-weight: 800;
    width: 100%;
    text-align: center;
}

.home-pricing-discount {
    min-height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #0f6b44;
    background: rgba(36, 181, 106, 0.14);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
}

.home-pricing-discount.is-hidden {
    display: none;
}

.home-pricing-card.is-featured .home-pricing-price-display {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.14);
}

.home-pricing-card.is-featured .home-pricing-price-display strong,
.home-pricing-card.is-featured .home-pricing-price-display [data-home-plan-period] {
    color: #ffffff;
}

.home-pricing-card.is-featured .home-pricing-discount {
    color: #0f2e56;
    background: rgba(255, 255, 255, 0.88);
}

.home-pricing-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.home-pricing-features li {
    position: relative;
    padding-inline-start: 24px;
    color: #263a57;
    font-size: 0.96rem;
    line-height: 1.75;
}

.home-pricing-features li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    inset-inline-start: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #20a7ef 0%, #4f82ff 100%);
    transform: translateY(-50%);
}

.home-pricing-card.is-featured .home-pricing-features li {
    color: rgba(255, 255, 255, 0.96);
}

.home-pricing-card.is-featured .home-pricing-features li::before {
    background: #ffffff;
}

.home-pricing-btn {
    margin-top: auto;
    min-height: 52px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(180deg, #20a7ef 0%, #1d8df1 100%);
    box-shadow: 0 14px 24px rgba(29, 141, 241, 0.18);
    font-size: 0.98rem;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.home-pricing-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 28px rgba(29, 141, 241, 0.24);
}

.home-pricing-card.is-featured .home-pricing-btn {
    color: #1362ab;
    background: #ffffff;
    box-shadow: 0 18px 30px rgba(7, 53, 112, 0.18);
}

.home-gateways-section {
    margin-top: 0px;
    padding: 78px 0 0px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: #122743;
}

.home-gateways-heading {
    text-align: center;
    margin-bottom: 36px;
}

.home-gateways-kicker {
    margin: 0;
    color: #122743;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
}

.home-gateways-title {
    margin: 16px 0 0;
    color: #2f4663;
    font-size: 1.12rem;
    font-weight: 600;
}

.home-gateways-copy {
    margin: 10px 0 0;
    color: #5f738e;
    font-size: 0.98rem;
    line-height: 1.9;
}

.home-gateways-alert {
    max-width: 620px;
    margin: 0 auto 24px;
    padding: 14px 18px;
    border-radius: 16px;
    text-align: center;
    font-size: 0.98rem;
    font-weight: 700;
}

.home-gateways-alert.is-success {
    color: #0f6c34;
    background: #ecfdf3;
    border: 1px solid #b7ebc6;
}

.home-gateways-alert.is-error {
    color: #b42318;
    background: #fff1f2;
    border: 1px solid #fecdd3;
}

.home-gateways-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
}

.home-gateway-request-card {
    min-height: 238px;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 22px;
    background: #ffffff;
    border: 2px dashed #f5bc00;
    box-shadow: 0 20px 40px rgba(15, 40, 78, 0.08);
}

.home-gateway-request-plus {
    display: inline-block;
    margin-bottom: 0px;
    color: #f5bc00;
    font-size: 38px;
    font-weight: 300;
    line-height: 1;
}

.home-gateway-request-card h3 {
    margin: 0;
    color: #101f37;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.home-gateway-request-form {
    width: 100%;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.home-gateway-request-input {
    width: 100%;
    height: 52px;
    border: 1px solid #d6dee8;
    border-radius: 14px;
    background: #ffffff;
    color: #122743;
    text-align: center;
    font: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-gateway-request-input::placeholder {
    color: #7c8fa8;
    font-weight: 600;
}

.home-gateway-request-input:focus {
    border-color: #f5bc00;
    box-shadow: 0 0 0 4px rgba(245, 188, 0, 0.16);
}

.home-gateway-request-btn {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffc700 0%, #f5bc00 100%);
    color: #101f37;
    cursor: pointer;
    font: inherit;
    font-size: 1rem;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    box-shadow: 0 14px 28px rgba(245, 188, 0, 0.2);
}

.home-gateway-request-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.01);
}

.home-gateway-card {
    min-height: 238px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #ebf1f7;
    box-shadow: 0 20px 40px rgba(15, 40, 78, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-gateway-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 48px rgba(15, 40, 78, 0.12);
}

.home-gateway-logo-shell {
    width: 104px;
    height: 104px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
    box-shadow: inset 0 0 0 1px #ecf2f8;
}

.home-gateway-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.home-gateway-logo-fallback {
    color: #196ed6;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.home-gateway-card h3 {
    margin: 0;
    color: #101f37;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.35;
}

.home-gateway-card p {
    margin: 14px 0 0;
    color: #4f637d;
    font-size: 1rem;
    font-weight: 600;
}

.home-rates-section {
    padding: 15px 0 15px;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    color: #122743;
}

.home-affiliate-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0 94px;
background: linear-gradient(180deg, rgb(32 143 246 / 17%) 0%, rgb(22 128 233 / 8%) 100%), url("img/homepage/waves-1.webp") top center / 100% auto no-repeat, url("img/homepage/waves-2.webp") bottom center / 100% auto no-repeat;
    color: #ffffff;
}

.home-affiliate-layout {
    display: grid;
    grid-template-columns: minmax(420px, 0.98fr) minmax(0, 0.84fr);
    align-items: center;
    gap: 56px;
    direction: ltr;
}

.home-affiliate-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-affiliate-visual-frame {
    width: min(100%, 620px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-affiliate-image {
    width: 100%;
    max-width: 620px;
    height: auto;
    display: block;
    object-fit: contain;
}

.home-affiliate-copy {
    direction: rtl;
    text-align: right;
}

.home-affiliate-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    font-weight: 700;
}

.home-affiliate-title {
    margin: 0;
    font-size: clamp(2.5rem, 4.8vw, 4rem);
    font-weight: 800;
    line-height: 1.12;
}

.home-affiliate-text {
    margin: 18px 0 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.18rem;
    line-height: 1.95;
}

.home-affiliate-actions {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
}

.home-api-modules-section {
    padding: 88px 0 96px;
    background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.home-api-modules-shell {
    position: relative;
    overflow: hidden;
    padding: 38px;
    display: grid;
    grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
    gap: 26px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(36, 191, 190, 0.22), transparent 30%),
        radial-gradient(circle at bottom left, rgba(73, 113, 255, 0.2), transparent 32%),
        linear-gradient(135deg, #0f2d54 0%, #103f7c 56%, #0b5aa2 100%);
    box-shadow: 0 34px 72px rgba(8, 45, 94, 0.22);
}

.home-api-modules-intro {
    position: relative;
    z-index: 1;
    padding: 6px 0;
    color: #ffffff;
}

.home-api-modules-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-api-modules-title {
    margin: 14px 0 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
}

.home-api-modules-copy {
    margin: 18px 0 0;
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.02rem;
    line-height: 1.95;
}

.home-api-modules-pills {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-api-modules-pill {
    min-height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.84rem;
    font-weight: 700;
}

.home-api-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.home-api-module-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-radius: 30px;
    color: #122743;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 22px 42px rgba(4, 28, 61, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-api-module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(4, 28, 61, 0.18);
}

.home-api-module-card.is-whmcs {
    transform: translateY(22px);
}

.home-api-module-card.is-whmcs:hover {
    transform: translateY(16px);
}

.home-api-module-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #24bfbe 0%, #4a7fff 100%);
}

.home-api-module-card.is-whmcs::before {
    background: linear-gradient(90deg, #f26f33 0%, #ffb35c 100%);
}

.home-api-module-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-api-module-arrow {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #1b4e93;
    background: rgba(27, 78, 147, 0.08);
    font-size: 1.2rem;
    font-weight: 700;
}

.home-api-module-brand {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
}

.home-api-module-logo-shell {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 16px 28px rgba(18, 67, 126, 0.12);
}

.home-api-module-logo {
    max-width: 58px;
    max-height: 58px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.home-api-module-copy {
    min-width: 0;
}

.home-api-module-badge {
    min-height: 30px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #0f5cb8;
    background: rgba(22, 121, 232, 0.1);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-api-module-copy h3 {
    margin: 0;
    color: #122743;
    font-size: 1.38rem;
    font-weight: 800;
}

.home-api-module-copy p {
    margin: 10px 0 0;
    color: #536983;
    font-size: 0.94rem;
    line-height: 1.85;
}

.home-api-module-footer {
    width: 100%;
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(27, 78, 147, 0.1);
}

.home-api-module-footer strong {
    color: #12376b;
    font-size: 0.92rem;
    font-weight: 800;
}

.home-api-module-footer span {
    color: #1679e8;
    font-size: 0.88rem;
    font-weight: 800;
}

.home-api-modules-actions {
    margin-top: 28px;
    display: flex;
    justify-content: flex-start;
}

.home-contact-section {
    padding: 28px 0 88px;
}

.home-contact-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    gap: 28px;
    align-items: start;
}

.home-contact-intro {
    color: #ffffff;
    padding-top: 18px;
}

.home-contact-text {
    margin: 22px 0 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.06rem;
    line-height: 1.95;
}

.home-contact-points {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.home-contact-point {
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-contact-point strong {
    display: block;
    font-size: 1.02rem;
    font-weight: 800;
}

.home-contact-point span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.8;
}

.home-contact-account-card {
    margin-top: 24px;
    padding: 20px 22px;
    display: grid;
    gap: 6px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.home-contact-account-kicker {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
}

.home-contact-account-card strong {
    font-size: 1.1rem;
    font-weight: 800;
}

.home-contact-account-card span:last-child {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.94rem;
}

.home-contact-form-card {
    padding: 34px 32px 30px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 250, 255, 0.98) 100%);
    border: 1px solid rgba(155, 191, 228, 0.4);
    box-shadow: 0 30px 64px rgba(10, 53, 111, 0.18);
    color: #122743;
}

.home-contact-form-card h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
}

.home-contact-form-copy {
    margin: 12px 0 0;
    color: #607490;
    font-size: 1rem;
    line-height: 1.9;
}

.home-contact-form {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.home-contact-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-contact-field-grid > .home-contact-field:only-child {
    grid-column: 1 / -1;
}

.home-contact-field {
    display: grid;
    gap: 8px;
}

.home-contact-field span {
    color: #173456;
    font-size: 0.95rem;
    font-weight: 800;
}

.home-contact-field input,
.home-contact-field textarea {
    width: 100%;
    border: 1px solid #d4deea;
    border-radius: 18px;
    background: #ffffff;
    color: #122743;
    font: inherit;
    font-size: 0.98rem;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.home-contact-field input {
    height: 56px;
    padding: 0 16px;
}

.home-contact-field textarea {
    min-height: 180px;
    padding: 14px 16px;
    resize: vertical;
}

.home-contact-field input::placeholder,
.home-contact-field textarea::placeholder {
    color: #8799b0;
}

.home-contact-field input:focus,
.home-contact-field textarea:focus {
    border-color: #20a7ef;
    box-shadow: 0 0 0 4px rgba(32, 167, 239, 0.14);
}

.home-contact-submit {
    width: 100%;
}

.home-faq-section {
    padding: 88px 0 96px;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef4fb 100%);
    color: #122743;
}

.home-faq-heading {
    text-align: center;
    margin-bottom: 34px;
}

.home-faq-kicker {
    margin: 0;
    color: #1679e8;
    font-size: 1.08rem;
    font-weight: 800;
}

.home-faq-title {
    margin: 14px 0 0;
    color: #122743;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
}

.home-faq-copy {
    margin: 14px auto 0;
    max-width: 42rem;
    color: #5f738e;
    font-size: 1.02rem;
    line-height: 1.9;
}

.home-faq-list {
    display: grid;
    gap: 16px;
}

.home-faq-item {
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e5edf6;
    box-shadow: 0 18px 34px rgba(15, 40, 78, 0.06);
    overflow: hidden;
}

.home-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #122743;
    font-size: 1.08rem;
    font-weight: 800;
}

.home-faq-item summary::-webkit-details-marker {
    display: none;
}

.home-faq-item summary::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 999px;
    color: #1679e8;
    background: rgba(22, 121, 232, 0.08);
    font-size: 1.45rem;
    font-weight: 500;
}

.home-faq-item[open] summary::before {
    content: "−";
}

.home-faq-answer {
    padding: 0 28px 24px;
}

.home-faq-answer p {
    margin: 0;
    color: #536983;
    font-size: 0.99rem;
    line-height: 1.95;
}

.home-static-main {
    padding-top: 8px;
}

.home-legal-section {
    padding: 12px 0 84px;
}

.home-legal-hero {
    width: min(100%, 860px);
    margin: 0 auto 28px;
    text-align: center;
}

.home-legal-hero .home-section-kicker,
.home-legal-hero .home-section-title {
    color: #ffffff;
}

.home-legal-hero-text {
    margin: 18px auto 0;
    max-width: 45rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.9;
}

.home-legal-card {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: 38px 38px 34px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 250, 255, 0.98) 100%);
    border: 1px solid rgba(154, 189, 226, 0.42);
    box-shadow: 0 30px 70px rgba(10, 53, 111, 0.18);
}

.home-legal-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.home-legal-badge {
    min-height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eef6ff;
    color: #1e5ca8;
    font-size: 0.9rem;
    font-weight: 800;
}

.home-legal-copy {
    color: #28405d;
}

.home-legal-copy p {
    margin: 0;
    font-size: 1rem;
    line-height: 2;
}

.home-legal-copy p + p {
    margin-top: 14px;
}

.home-legal-block {
    margin-top: 18px;
    padding: 20px 22px;
    border-radius: 24px;
    background: #f7fbff;
    border: 1px solid rgba(164, 194, 228, 0.34);
}

.home-legal-block h2 {
    margin: 0 0 12px;
    color: #0f2744;
    font-size: 1.2rem;
    font-weight: 800;
}

.home-legal-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-legal-list li {
    position: relative;
    padding-right: 18px;
    color: #36506f;
    font-size: 1rem;
    line-height: 1.95;
}

.home-legal-list li::before {
    content: "";
    position: absolute;
    top: 0.78rem;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #1a7fe6;
}

.home-legal-copy strong {
    color: #0f2744;
}

.home-footer {
    padding: 42px 0 30px;
    background: #10233f2e;
    color: #ffffff;
}

.home-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.home-footer-brand-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-footer-brand-logo,
.home-footer-brand-badge {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    flex: 0 0 56px;
}

.home-footer-brand-logo {
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
}

.home-footer-brand-badge {
    display: inline-grid;
    place-items: center;
    background: #ffffff;
    color: #1679e8;
    font-size: 1.08rem;
    font-weight: 800;
}

.home-footer-brand strong {
    display: block;
    font-size: 1.16rem;
    font-weight: 800;
}

.home-footer-brand span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-footer-brand p {
    margin: 18px 0 0;
    max-width: 28rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.98rem;
    line-height: 1.95;
}

.home-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-footer-links h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 800;
}

.home-footer-links a,
.home-footer-links span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.96rem;
    font-weight: 600;
}

.home-footer-links a:hover {
    color: #ffffff;
}

.home-footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    font-weight: 600;
}

.home-rates-heading {
    text-align: center;
    margin-bottom: 26px;
}

.home-rates-kicker {
    margin: 0;
    color: #122743;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    font-weight: 800;
    line-height: 1.2;
}

.home-rates-copy {
    margin: 10px 0 0;
    color: #5f738e;
    font-size: 1rem;
    line-height: 1.9;
}

.home-rates-marquee {
    direction: ltr;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.home-rates-marquee-inner {
    display: flex;
    align-items: stretch;
    min-width: max-content;
    animation: homeRatesTicker 34s linear infinite;
    will-change: transform;
}

.home-rates-track {
    display: flex;
    align-items: stretch;
    gap: 16px;
    flex-shrink: 0;
}

.home-rates-marquee:hover .home-rates-marquee-inner {
    animation-play-state: paused;
}

.home-rate-card {
    flex: 0 0 286px;
    min-height: 96px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #ebf1f7;
 }

.home-rate-flag-shell {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
    box-shadow: inset 0 0 0 1px #ecf2f8;
}

.home-rate-flag {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.home-rate-flag-fallback {
    color: #196ed6;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.home-rate-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.home-rate-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.home-rate-header strong {
    color: #122743;
    font-size: 1.02rem;
    font-weight: 800;
}

.home-rate-header span {
    color: #7a8ca3;
    font-size: 0.92rem;
    font-weight: 700;
}

.home-rate-value-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-rate-value-row span {
    color: #6a7e99;
    font-size: 0.98rem;
    font-weight: 700;
}

.home-rate-value-row strong {
    color: #101f37;
    font-size: 1.4rem;
    font-weight: 800;
    direction: ltr;
}

@keyframes homeRatesTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 980px) {
    .home-topbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .home-nav {
        order: 3;
        width: 100%;
    }

    .home-topbar-actions {
        justify-content: center;
    }

    .home-hero-copy {
        max-width: 100%;
        transform: translateY(-42px);
    }

    .home-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-pricing-toggle-btn {
        min-width: 108px;
    }

    .home-services-section {
        margin-top: -64px;
    }

    .home-gateways-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-gateway-request-card,
    .home-gateway-card {
        min-height: 220px;
    }

    .home-rate-card {
        flex-basis: 250px;
    }

    .home-affiliate-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-legal-card {
        padding: 34px 28px 30px;
    }

    .home-legal-hero {
        margin-bottom: 22px;
    }

    .home-legal-hero-text {
        font-size: 1rem;
    }

    .home-affiliate-copy {
        text-align: center;
    }

    .home-affiliate-text {
        max-width: 100%;
    }

    .home-affiliate-actions {
        justify-content: center;
    }

    .home-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-service-card:nth-child(4),
    .home-service-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .home-stage {
        background-size: 190% auto, 190% auto, 190% auto, cover;
    }

    .home-container {
        width: min(100%, calc(100% - 28px));
    }

    .home-topbar {
        padding-top: 18px;
        gap: 14px;
    }

    .home-nav {
        gap: 8px;
    }

    .home-nav a,
    .home-topbar-btn {
        min-height: 42px;
        padding-inline: 14px;
        font-size: 0.9rem;
    }

    .home-brand-logo,
    .home-brand-badge {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        flex-basis: 46px;
    }

    .home-hero-section {
        padding: 12px 0 64px;
    }

    .home-services-section {
        margin-top: -24px;
        background-size: 190% auto;
    }

    .home-pricing-section {
        padding: 20px 0 64px;
    }

    .home-gateways-section {
        margin-top: 28px;
        padding: 56px 0 72px;
    }

    .home-rates-section {
        padding: 15 0 15px;
    }

    .home-affiliate-section {
        padding: 64px 0 72px;
        background-size: cover, 190% auto, 190% auto;
    }

    .home-api-modules-section {
        padding: 64px 0 72px;
    }

    .home-api-modules-shell {
        padding: 24px;
        grid-template-columns: 1fr;
        gap: 18px;
        border-radius: 28px;
    }

    .home-contact-section {
        padding: 18px 0 64px;
    }

    .home-contact-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-faq-section {
        padding: 64px 0 72px;
    }

    .home-static-main {
        padding-top: 10px;
    }

    .home-legal-section {
        padding: 10px 0 64px;
    }

    .home-legal-hero {
        margin-bottom: 18px;
    }

    .home-legal-hero-text {
        margin-top: 14px;
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .home-hero-layout {
        min-height: auto;
    }

    .home-hero-copy {
        transform: translateY(0);
    }

    .home-kicker {
        font-size: 1.02rem;
    }

    .home-hero-title {
        font-size: clamp(2.05rem, 8vw, 2.9rem);
    }

    .home-hero-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .home-hero-actions {
        flex-direction: column;
    }

    .home-btn {
        width: 100%;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-pricing-grid {
        grid-template-columns: 1fr;
    }

    .home-pricing-controls {
        margin-bottom: 22px;
    }

    .home-pricing-toggle {
        width: 100%;
        max-width: 100%;
    }

    .home-pricing-toggle-btn {
        min-width: 0;
        padding-inline: 10px;
        font-size: 0.88rem;
    }

    .home-gateways-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .home-rates-marquee {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .home-rates-track {
        gap: 12px;
    }

    .home-rates-marquee-inner {
        animation-duration: 26s;
    }

    .home-gateway-request-card,
    .home-service-card {
        min-height: auto;
    }

    .home-pricing-card,
    .home-pricing-card.is-featured {
        transform: none;
    }

    .home-pricing-card {
        padding: 22px 18px 18px;
        border-radius: 22px;
    }

    .home-pricing-copy h3 {
        font-size: 1.3rem;
    }

    .home-pricing-copy p,
    .home-pricing-features li {
        font-size: 0.92rem;
    }

    .home-pricing-price-display {
        padding: 16px 14px 14px;
    }

    .home-pricing-price-display strong {
        font-size: 1.8rem;
    }

    .home-pricing-btn {
        width: 100%;
    }

    .home-gateway-request-card,
    .home-gateway-card {
        min-height: 176px;
        padding: 18px 12px;
    }

    .home-gateway-request-card h3 {
        font-size: 1.1rem;
    }

    .home-gateway-request-plus {
        margin-bottom: 10px;
        font-size: 2rem;
    }

    .home-gateway-request-form {
        margin-top: 14px;
        gap: 10px;
    }

    .home-gateway-request-input,
    .home-gateway-request-btn {
        height: 44px;
        font-size: 0.9rem;
    }

    .home-gateway-logo-shell {
        width: 66px;
        height: 66px;
        margin-bottom: 12px;
        border-radius: 18px;
    }

    .home-gateway-logo {
        width: 46px;
        height: 46px;
    }

    .home-gateway-card h3 {
        font-size: 0.92rem;
        line-height: 1.35;
    }

    .home-gateway-card p {
        margin-top: 8px;
        font-size: 0.8rem;
    }

    .home-rate-card {
        flex-basis: 214px;
        min-height: 82px;
        padding: 14px 14px;
        gap: 12px;
        border-radius: 16px;
    }

    .home-rate-flag-shell {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        border-radius: 14px;
    }

    .home-rate-flag {
        width: 30px;
        height: 30px;
    }

    .home-rate-header strong {
        font-size: 0.88rem;
    }

    .home-rate-header span,
    .home-rate-value-row span {
        font-size: 0.76rem;
    }

    .home-rate-value-row strong {
        font-size: 1.1rem;
    }

    .home-affiliate-layout {
        gap: 20px;
    }

    .home-affiliate-kicker {
        font-size: 0.94rem;
    }

    .home-affiliate-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .home-affiliate-text {
        font-size: 1rem;
        line-height: 1.85;
    }

    .home-api-modules-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-api-module-card {
        padding: 20px 18px;
        border-radius: 22px;
        gap: 16px;
    }

    .home-api-module-card.is-whmcs,
    .home-api-module-card.is-whmcs:hover {
        transform: none;
    }

    .home-api-module-logo-shell {
        width: 76px;
        height: 76px;
        flex-basis: 76px;
        border-radius: 20px;
    }

    .home-api-module-logo {
        max-width: 52px;
        max-height: 52px;
    }

    .home-api-module-copy h3 {
        font-size: 1.2rem;
    }

    .home-api-module-copy p {
        font-size: 0.92rem;
        line-height: 1.8;
    }

    .home-api-module-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-contact-text {
        font-size: 0.98rem;
    }

    .home-contact-point {
        padding: 16px 16px 14px;
        border-radius: 18px;
    }

    .home-contact-form-card {
        padding: 24px 18px 20px;
        border-radius: 26px;
    }

    .home-contact-form-card h2 {
        font-size: 1.6rem;
    }

    .home-contact-field-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-contact-field input {
        height: 52px;
    }

    .home-contact-field textarea {
        min-height: 160px;
    }

    .home-legal-card {
        padding: 28px 20px 24px;
        border-radius: 28px;
    }

    .home-legal-meta {
        gap: 8px;
        margin-bottom: 18px;
    }

    .home-legal-badge {
        min-height: 34px;
        padding-inline: 14px;
        font-size: 0.82rem;
    }

    .home-legal-copy p {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .home-legal-block {
        padding: 16px 16px;
        border-radius: 20px;
    }

    .home-legal-block h2 {
        font-size: 1.06rem;
    }

    .home-legal-list li {
        font-size: 0.94rem;
    }

    .home-faq-item summary {
        padding: 18px 18px;
        font-size: 0.98rem;
    }

    .home-faq-answer {
        padding: 0 18px 18px;
    }

    .home-footer {
        padding: 34px 0 24px;
    }

    .home-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 16px;
    }

    .home-footer-brand {
        grid-column: 1 / -1;
    }

    .home-footer-links {
        min-width: 0;
    }

    .home-footer-bottom {
        grid-column: 1 / -1;
        justify-content: center;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-rates-marquee {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .home-rates-marquee-inner {
        animation: none;
    }

}
