/*
Theme Name: Aqarmap Register
Author: Aqarmap Team
Description: Saudi Arabia Partner Program Landing Page
Version: 3.0.1
License: GNU General Public License v2 or later
Text Domain: aqarmap-register
Tags: landing-page, partner, registration, real-estate
*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=Manrope:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap');

:root {
    --ink: #071b2b;
    --ink-soft: #173348;
    --blue: #007dbe;
    --blue-deep: #005d8e;
    --sky: #6dc5e5;
    --sand: #ead8b0;
    --gold: #d59a2a;
    --paper: #f7f8f5;
    --white: #ffffff;
    --mist: #e7edf0;
    --slate: #5f6e78;
    --danger: #bc2f3a;
    --success: #166534;
    --display: 'Sora', 'Segoe UI', sans-serif;
    --body: 'Manrope', 'Segoe UI', sans-serif;
    --utility: 'IBM Plex Mono', monospace;
    --shadow-form: 0 28px 80px rgba(2, 17, 28, 0.3);
    --shadow-menu: 0 18px 44px rgba(7, 27, 43, 0.2);
    --ease: 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    direction: ltr;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }

.aqar-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 76px;
    padding: 0 clamp(20px, 5vw, 72px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(247, 248, 245, 0.96);
    border-bottom: 1px solid rgba(7, 27, 43, 0.12);
    backdrop-filter: blur(14px);
}

.aqar-logo {
    display: inline-flex;
    align-items: center;
}

.aqar-logo img { width: auto; height: 38px; }

.aqar-logo-text {
    color: var(--blue);
    font-family: var(--display);
    font-size: 23px;
    font-weight: 700;
}

.aqar-header-cta {
    min-height: 42px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(7, 27, 43, 0.18);
    border-radius: 3px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.aqar-header-cta:hover,
.aqar-header-cta:focus-visible {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
    outline: none;
}

.aqar-hero {
    position: relative;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--ink);
}

.aqar-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background: url('assets/images/aqarmap-saudi-partner.jpg') center / cover no-repeat;
    transform: scale(1.015);
    animation: aqarHeroReveal 1.2s ease-out both;
}

.aqar-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 27, 43, 0.82) 0%, rgba(7, 27, 43, 0.55) 44%, rgba(7, 27, 43, 0.78) 72%, rgba(7, 27, 43, 0.96) 100%),
        linear-gradient(0deg, rgba(7, 27, 43, 0.7), transparent 54%);
}

.aqar-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.12;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.28) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 48%, #000 100%);
}

.aqar-hero-content {
    width: min(1320px, 100%);
    margin: 0 auto;
    padding: 72px clamp(20px, 4vw, 64px) 80px;
    display: grid;
    grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(56px, 7vw, 112px);
    align-items: center;
}

.aqar-form-side {
    position: relative;
    z-index: 5;
    animation: aqarFormIn 700ms var(--ease) both;
}

.aqar-form-card {
    position: relative;
    overflow: visible;
    padding: 0 34px 34px;
    background: var(--paper);
    border: 1px solid rgba(255,255,255,0.74);
    border-radius: 5px;
    box-shadow: var(--shadow-form);
}

.aqar-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9px;
    width: 1px;
    background: rgba(0, 125, 190, 0.22);
}

.aqar-form-index {
    margin: 0 -34px 28px;
    min-height: 38px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: var(--ink);
    border-radius: 4px 4px 0 0;
    color: var(--white);
    font-family: var(--utility);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.aqar-form-index span { color: var(--sky); }

.aqar-form-header {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 20px;
    align-items: start;
    text-align: left;
}

.aqar-form-kicker {
    margin-bottom: 9px;
    color: var(--blue-deep);
    font-family: var(--utility);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aqar-form-title {
    margin-bottom: 9px;
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(24px, 3vw, 31px);
    font-weight: 600;
    line-height: 1.13;
    letter-spacing: -0.04em;
}

.aqar-form-desc {
    color: var(--slate);
    font-size: 12.5px;
    line-height: 1.65;
}

.aqar-commission-seal {
    aspect-ratio: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: #fffaf0;
    color: var(--ink);
    text-align: center;
    transform: rotate(4deg);
    box-shadow: inset 0 0 0 4px #fffaf0, inset 0 0 0 5px rgba(213,154,42,0.4);
}

.aqar-commission-seal strong {
    color: var(--blue-deep);
    font-family: var(--display);
    font-size: 27px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.aqar-commission-seal span {
    max-width: 62px;
    margin-top: 4px;
    color: var(--slate);
    font-family: var(--utility);
    font-size: 7px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}

.aqar-form {
    display: grid;
    gap: 15px;
}

.aqar-field-label {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--ink-soft);
    font-family: var(--utility);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.aqar-field-label .required { color: var(--gold); font-size: 12px; }

.aqar-input-wrapper { position: relative; }

.aqar-input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 18px;
    color: #839099;
    font-size: 13px;
    text-align: center;
    pointer-events: none;
    transform: translateY(-50%);
    transition: color var(--ease);
}

.aqar-input,
.aqar-country-trigger {
    width: 100%;
    min-height: 46px;
    padding: 0 14px 0 44px;
    border: 1px solid #cfd8dc;
    border-radius: 3px;
    outline: none;
    background: var(--white);
    color: var(--ink);
    font-family: var(--body);
    font-size: 13px;
    font-weight: 600;
    transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.aqar-input::placeholder { color: #919da5; font-weight: 500; }

.aqar-input:hover,
.aqar-country-trigger:hover { border-color: #91a6b2; }

.aqar-input:focus,
.aqar-country-trigger.active {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,125,190,0.12);
}

.aqar-field:focus-within .aqar-input-icon { color: var(--blue); }

.aqar-input.error,
.aqar-country-trigger.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(188,47,58,0.1);
}

.aqar-field-error {
    display: none;
    margin-top: 5px;
    color: var(--danger);
    font-size: 11px;
    font-weight: 600;
}

.aqar-field-error.show { display: block; }

.aqar-country-wrapper { position: relative; }

.aqar-country-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    text-align: left;
}

.aqar-country-trigger::before {
    content: '\f57d';
    position: absolute;
    left: 15px;
    color: #839099;
    font-family: 'Font Awesome 6 Free';
    font-size: 13px;
    font-weight: 900;
}

.aqar-country-trigger .trigger-left {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.aqar-country-trigger .country-flag { font-size: 18px; line-height: 1; }
.aqar-country-trigger .placeholder-text { color: #919da5; font-weight: 500; }
.aqar-country-trigger .chevron { color: #839099; font-size: 11px; transition: transform var(--ease); }
.aqar-country-trigger.active .chevron { transform: rotate(180deg); }

.aqar-country-dropdown {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    z-index: 100;
    max-height: 290px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--ink-soft);
    border-radius: 3px;
    box-shadow: var(--shadow-menu);
}

.aqar-country-dropdown.open { display: flex; animation: aqarMenuIn 160ms ease-out both; }

.aqar-country-search {
    position: relative;
    padding: 10px;
    flex: 0 0 auto;
    background: var(--paper);
    border-bottom: 1px solid var(--mist);
}

.aqar-country-search .search-icon {
    position: absolute;
    top: 50%;
    left: 23px;
    color: #839099;
    font-size: 12px;
    pointer-events: none;
    transform: translateY(-50%);
}

.aqar-country-search input {
    width: 100%;
    min-height: 39px;
    padding: 0 12px 0 36px;
    border: 1px solid #cfd8dc;
    border-radius: 2px;
    outline: none;
    background: var(--white);
    color: var(--ink);
    font-family: var(--body);
    font-size: 12px;
}

.aqar-country-search input:focus { border-color: var(--blue); }

.aqar-country-list {
    overflow-y: auto;
    scrollbar-color: var(--blue) transparent;
    scrollbar-width: thin;
}

.aqar-country-option {
    width: 100%;
    min-height: 42px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 0;
    border-bottom: 1px solid #edf1f2;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    transition: background var(--ease), color var(--ease);
}

.aqar-country-option:hover,
.aqar-country-option:focus-visible,
.aqar-country-option.keyboard-active {
    background: #eaf6fb;
    color: var(--blue-deep);
    outline: none;
}

.aqar-country-option .flag { font-size: 17px; }
.aqar-country-option .name { flex: 1; }
.aqar-country-option .country-code { color: #96a2a9; font-family: var(--utility); font-size: 9px; }

.country-no-results {
    padding: 24px;
    color: var(--slate);
    font-size: 12px;
    text-align: center;
}

.aqar-terms {
    padding: 14px 15px;
    background: #eef3f4;
    border-left: 2px solid var(--blue);
}

.aqar-terms-title {
    margin-bottom: 9px;
    color: var(--ink);
    font-family: var(--utility);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.aqar-terms-title span { color: var(--gold); }

.aqar-terms-list {
    padding-left: 16px;
    color: #61717b;
    font-size: 9.5px;
    line-height: 1.55;
}

.aqar-terms-list li + li { margin-top: 7px; }

.aqar-agreement-field { margin-top: -2px; }

.aqar-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink-soft);
    cursor: pointer;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.5;
}

.aqar-agreement input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    flex: 0 0 auto;
    accent-color: var(--blue);
    cursor: pointer;
}

.aqar-agreement input:focus-visible {
    outline: 3px solid rgba(109,197,229,0.5);
    outline-offset: 2px;
}

.aqar-agreement input.error { outline: 2px solid rgba(188,47,58,0.5); outline-offset: 2px; }

.aqar-submit-btn {
    min-height: 50px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 3px;
    background: var(--blue);
    color: var(--white);
    cursor: pointer;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(0,125,190,0.22);
    transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.aqar-submit-btn .btn-text { display: inline-flex; align-items: center; gap: 11px; }
.aqar-submit-btn:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 13px 28px rgba(0,93,142,0.28); }
.aqar-submit-btn:focus-visible { outline: 3px solid rgba(109,197,229,0.5); outline-offset: 2px; }
.aqar-submit-btn:disabled { cursor: not-allowed; opacity: 0.7; transform: none; }
.aqar-submit-btn.loading .btn-text { display: none; }

.btn-spinner {
    display: none;
    width: 19px;
    height: 19px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: aqarSpin 700ms linear infinite;
}

.aqar-submit-btn.loading .btn-spinner { display: block; }

.aqar-form-message {
    display: none;
    padding: 11px 12px;
    border-left: 3px solid currentColor;
    background: var(--white);
    font-size: 11.5px;
    font-weight: 600;
}

.aqar-form-message.success { display: block; color: var(--success); background: #edf8ef; }
.aqar-form-message.error { display: block; color: var(--danger); background: #fff0f1; }

.aqar-hero-text {
    color: var(--white);
    animation: aqarCopyIn 760ms var(--ease) 100ms both;
}

.aqar-hero-badge {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.72);
    font-family: var(--utility);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aqar-hero-badge span {
    padding: 5px 8px;
    border: 1px solid rgba(234,216,176,0.55);
    color: var(--sand);
}

.aqar-hero-title {
    max-width: 700px;
    margin-bottom: 24px;
    font-family: var(--display);
    font-size: clamp(44px, 5.2vw, 74px);
    font-weight: 600;
    line-height: 1.01;
    letter-spacing: -0.06em;
}

.aqar-hero-title .highlight { color: var(--sand); }

.aqar-hero-subtitle {
    max-width: 610px;
    margin-bottom: 34px;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.85;
}

.aqar-hero-subtitle strong { color: var(--white); font-weight: 700; }

.aqar-role-ledger {
    max-width: 610px;
    border-top: 1px solid rgba(255,255,255,0.24);
}

.aqar-role-row {
    padding: 14px 0;
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.16);
}

.aqar-role-label {
    color: var(--sky);
    font-family: var(--utility);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aqar-role-value { color: rgba(255,255,255,0.9); font-size: 12.5px; font-weight: 600; }

.aqar-features-inner { width: min(1200px, 100%); margin: 0 auto; }

.aqar-how-it-works {
    padding: 100px clamp(20px, 5vw, 72px);
    overflow: hidden;
    background: var(--ink);
    color: var(--white);
}

.aqar-section-eyebrow {
    margin-bottom: 14px;
    color: var(--blue-deep);
    font-family: var(--utility);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.aqar-how-it-works .aqar-section-eyebrow { color: var(--sky); }

.aqar-section-title {
    max-width: 780px;
    margin-bottom: 18px;
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.aqar-section-title span { color: var(--blue); }
.aqar-section-title-light { color: var(--white); }
.aqar-section-title-light span { color: var(--sand); }

.aqar-section-subtitle {
    max-width: 610px;
    margin-bottom: 54px;
    color: var(--slate);
    font-size: 14px;
    line-height: 1.75;
}

.aqar-section-subtitle-light { color: rgba(255,255,255,0.62); }

.aqar-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.22);
}

.aqar-step-card {
    position: relative;
    min-height: 310px;
    padding: 30px 26px 26px;
    border-right: 1px solid rgba(255,255,255,0.14);
    background: transparent;
    color: var(--white);
    transition: background var(--ease);
}

.aqar-step-card:first-child { border-left: 1px solid rgba(255,255,255,0.14); }
.aqar-step-card:hover { background: rgba(109,197,229,0.07); }

.aqar-step-number {
    margin-bottom: 56px;
    color: var(--sand);
    font-family: var(--utility);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.aqar-feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(109,197,229,0.42);
    border-radius: 50%;
    color: var(--sky);
}

.aqar-feature-icon i { font-size: 14px; }

.aqar-feature-title {
    margin-bottom: 10px;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.aqar-feature-desc {
    color: rgba(255,255,255,0.58);
    font-size: 12px;
    line-height: 1.75;
}

.aqar-features {
    padding: 100px clamp(20px, 5vw, 72px);
    background: var(--paper);
}

.aqar-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(7,27,43,0.2);
    border-bottom: 1px solid rgba(7,27,43,0.2);
}

.aqar-feature-card {
    min-height: 250px;
    padding: 32px 25px;
    border-right: 1px solid rgba(7,27,43,0.14);
    background: transparent;
    transition: background var(--ease);
}

.aqar-feature-card:first-child { border-left: 1px solid rgba(7,27,43,0.14); }
.aqar-feature-card:hover { background: var(--white); }
.aqar-feature-card .aqar-feature-icon { border-color: rgba(0,125,190,0.35); color: var(--blue); }
.aqar-feature-card .aqar-feature-title { color: var(--ink); }
.aqar-feature-card .aqar-feature-desc { color: var(--slate); }

.aqar-final-cta {
    margin-top: 56px;
    padding: 38px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--blue);
    color: var(--white);
}

.aqar-final-cta-kicker {
    margin-bottom: 8px;
    color: #c9effe;
    font-family: var(--utility);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aqar-final-cta h2 {
    max-width: 650px;
    font-family: var(--display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.04em;
}

.aqar-final-cta-button {
    min-width: 205px;
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    transition: background var(--ease), color var(--ease);
}

.aqar-final-cta-button:hover,
.aqar-final-cta-button:focus-visible { background: var(--white); color: var(--blue-deep); outline: none; }

.aqar-footer {
    padding: 48px clamp(20px, 5vw, 72px);
    background: #04131f;
    color: var(--white);
    text-align: center;
}

.aqar-footer-logo {
    margin-bottom: 10px;
    color: var(--sky);
    font-family: var(--display);
    font-size: 22px;
    font-weight: 600;
}

.aqar-footer p { color: rgba(255,255,255,0.45); font-size: 11px; line-height: 1.7; }
.aqar-footer-program { margin-bottom: 9px; }
.aqar-footer .aqar-footer-note { max-width: 730px; margin: 0 auto 14px; color: rgba(255,255,255,0.3); font-size: 9.5px; }

.aqar-confetti {
    position: fixed;
    top: -12px;
    z-index: 99999;
    width: 7px;
    height: 11px;
    pointer-events: none;
    animation: aqarConfettiFall 2.4s ease-in forwards;
}

@keyframes aqarHeroReveal { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1.015); } }
@keyframes aqarFormIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes aqarCopyIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }
@keyframes aqarMenuIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
@keyframes aqarSpin { to { transform: rotate(360deg); } }
@keyframes aqarConfettiFall { from { transform: translateY(0) rotate(0); opacity: 1; } to { transform: translateY(110vh) rotate(680deg); opacity: 0; } }

@media (max-width: 1100px) {
    .aqar-hero-content { grid-template-columns: minmax(390px, 0.95fr) minmax(0, 1.05fr); gap: 48px; }
    .aqar-hero-title { font-size: clamp(42px, 5vw, 58px); }
    .aqar-steps-grid, .aqar-features-grid { grid-template-columns: repeat(2, 1fr); }
    .aqar-step-card:nth-child(3), .aqar-step-card:nth-child(4), .aqar-feature-card:nth-child(3), .aqar-feature-card:nth-child(4) { border-top: 1px solid currentColor; }
}

@media (max-width: 860px) {
    .aqar-hero { align-items: flex-start; }
    .aqar-hero-content { grid-template-columns: 1fr; gap: 52px; padding-top: 42px; }
    .aqar-form-side { width: min(100%, 590px); margin: 0 auto; }
    .aqar-hero-text { width: min(100%, 650px); margin: 0 auto; }
    .aqar-hero-bg { background-position: 62% center; }
    .aqar-final-cta { align-items: flex-start; flex-direction: column; }
    .aqar-final-cta-button { width: 100%; }
}

@media (max-width: 600px) {
    .aqar-header { height: 66px; padding: 0 16px; }
    .aqar-logo img { height: 31px; }
    .aqar-header-cta { min-height: 38px; padding: 0 12px; font-size: 10px; }
    .aqar-header-cta i { display: none; }
    .aqar-hero { min-height: calc(100vh - 66px); }
    .aqar-hero-content { padding: 24px 14px 58px; gap: 48px; }
    .aqar-form-card { padding: 0 20px 24px; }
    .aqar-form-card::before { left: 6px; }
    .aqar-form-index { margin: 0 -20px 22px; padding: 0 14px; }
    .aqar-form-index span { display: none; }
    .aqar-form-header { grid-template-columns: minmax(0, 1fr) 78px; gap: 13px; }
    .aqar-commission-seal strong { font-size: 23px; }
    .aqar-commission-seal span { font-size: 6px; }
    .aqar-form-title { font-size: 25px; }
    .aqar-input, .aqar-country-trigger { min-height: 45px; }
    .aqar-hero-title { font-size: clamp(38px, 12vw, 52px); }
    .aqar-role-row { grid-template-columns: 86px minmax(0, 1fr); gap: 14px; }
    .aqar-how-it-works, .aqar-features { padding: 72px 18px; }
    .aqar-section-title { font-size: 34px; }
    .aqar-steps-grid, .aqar-features-grid { grid-template-columns: 1fr; }
    .aqar-step-card, .aqar-feature-card { min-height: auto; border-right: 1px solid rgba(255,255,255,0.14); border-bottom: 1px solid rgba(255,255,255,0.14); }
    .aqar-feature-card { border-color: rgba(7,27,43,0.14); }
    .aqar-step-number { margin-bottom: 28px; }
    .aqar-final-cta { margin-top: 42px; padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
