/* ════════════════════════════════════════════════════
   FOOTER — Ganezza Floors (Atelier edition)
   ════════════════════════════════════════════════════ */
#az-footer,
#az-footer *,
#az-footer *::before,
#az-footer *::after {
    font-family: 'DM Sans','Poppins',system-ui,sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}
#az-footer {
    --azf-dark: #2b2926;
    --azf-darker: #1f1d1b;
    --azf-muted: #7a726a;
    --azf-primary: #a0c040;
    --azf-primary-dark: #82a032;
    --azf-surface: #faf7f4;
    --azf-soft: #f6f3ef;
    --azf-border: rgba(43,41,38,.08);
    --azf-border-strong: rgba(43,41,38,.14);
    --azf-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

    background: #ffffff;
    color: var(--azf-dark);
    position: relative;
    overflow: hidden;
}
#az-footer a { text-decoration: none; }

.az-footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ════════════════════════════════════════════════════
   2. MAIN — brand + feature + nav + info
   ════════════════════════════════════════════════════ */
.az-footer__main {
    position: relative;
    padding: 110px 0 80px;
    background: #ffffff;
}

/* Subtle big editorial word mark behind content */
.az-footer__main::before {
    content: 'Ganezza';
    position: absolute;
    top: 50%;
    right: -4vw;
    transform: translateY(-50%);
    font-family: var(--azf-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(160px, 20vw, 360px);
    line-height: .8;
    color: var(--azf-surface);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -0.04em;
}

/* ── Row 1: brand split + feature card ── */
.az-footer__split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    position: relative;
    z-index: 1;
    padding-bottom: 72px;
    margin-bottom: 64px;
    border-bottom: 1px solid var(--azf-border);
}

/* Brand column */
.az-footer__brand-logo {
    display: inline-block;
    margin-bottom: 26px;
}
.az-footer__brand-logo img {
    width: 180px;
    height: auto;
    display: block;
}
.az-footer__brand-line {
    margin: 0 0 20px;
    font-family: var(--azf-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.6px;
    color: var(--azf-dark);
    max-width: 440px;
}
.az-footer__brand-line em { color: var(--azf-primary); font-style: italic; }
.az-footer__brand-sub {
    margin: 0 0 26px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--azf-muted);
    max-width: 420px;
}
.az-footer__contact-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
}
.az-footer__pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px 12px 14px;
    background: var(--azf-surface);
    border: 1px solid var(--azf-border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: var(--azf-dark);
    transition: all .3s cubic-bezier(.22,1,.36,1);
}
.az-footer__pill:hover {
    border-color: var(--azf-primary);
    background: #fff;
    transform: translateX(4px);
    color: var(--azf-dark);
    box-shadow: 0 10px 24px -12px rgba(160,192,64,.25);
}
.az-footer__pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--azf-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px -2px rgba(160,192,64,.4);
}
.az-footer__pill-icon svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Feature card — "Vloeren aanvraag" */
.az-footer__feature {
    position: relative;
    background-color: #2b2926;
    background-image:
        linear-gradient(160deg, rgba(26,24,22,.82) 0%, rgba(31,29,27,.72) 55%, rgba(26,24,22,.92) 100%),
        var(--azf-feature-bg, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 14px;
    padding: 48px 44px;
    color: #fff;
    overflow: hidden;
    min-height: 380px;
    box-shadow:
        0 32px 72px -24px rgba(43,41,38,.45),
        0 12px 28px -12px rgba(160,192,64,.25);
}
/* Ambient pink glow accent */
.az-footer__feature::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160,192,64,.3), transparent 65%);
    pointer-events: none;
    z-index: 1;
}
/* Subtle visgraat line overlay (flooring motief) */
.az-footer__feature::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        135deg,
        transparent 0 24px,
        rgba(255,255,255,.04) 24px 25px,
        transparent 25px 50px
    );
    pointer-events: none;
    z-index: 1;
}
.az-footer__feature-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.az-footer__feature-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 6px 12px 6px 8px;
    background: rgba(160,192,64,.15);
    border: 1px solid rgba(160,192,64,.3);
    border-radius: 100px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    align-self: flex-start;
}
.az-footer__feature-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--azf-primary);
    animation: azPulse 2s ease-in-out infinite;
}
@keyframes azPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(160,192,64,.6); }
    50%      { opacity: .4; transform: scale(1.3); box-shadow: 0 0 0 8px rgba(160,192,64,0); }
}
.az-footer__feature-title {
    margin: 0 0 14px;
    font-family: var(--azf-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.6px;
    color: #fff;
}
.az-footer__feature-desc {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,.72);
    max-width: 420px;
}
.az-footer__feature-trigger {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px 16px 28px;
    background: var(--azf-primary);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
    transition: all .4s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 12px 28px -10px rgba(160,192,64,.55);
}
.az-footer__feature-trigger:hover {
    background: #fff;
    color: var(--azf-dark);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px -10px rgba(255,255,255,.3);
}
.az-footer__feature-trigger-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}
.az-footer__feature-trigger:hover .az-footer__feature-trigger-icon {
    background: var(--azf-primary);
}
.az-footer__feature-trigger svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Row 2: nav columns ── */
.az-footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 56px;
    position: relative;
    z-index: 1;
    padding-bottom: 72px;
    margin-bottom: 64px;
    border-bottom: 1px solid var(--azf-border);
}
.az-footer__nav-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--azf-border);
    font-family: var(--azf-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    color: var(--azf-dark);
    letter-spacing: -0.3px;
}
.az-footer__nav-title::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--azf-primary);
    border-radius: 2px;
    flex-shrink: 0;
}
.az-footer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.az-footer__nav ul.az-footer__nav-list--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 24px;
}
.az-footer__nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--azf-muted);
    transition: color .3s, transform .3s;
}
.az-footer__nav a::before {
    content: '';
    width: 6px;
    height: 1px;
    background: currentColor;
    opacity: .45;
    transition: width .3s;
    flex-shrink: 0;
}
.az-footer__nav a:hover {
    color: var(--azf-primary);
    transform: translateX(3px);
}
.az-footer__nav a:hover::before { width: 14px; opacity: 1; }

/* ── Row 3: passport + social + overig ── */
.az-footer__info {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

/* Passport card — bedrijfsgegevens */
.az-footer__passport {
    position: relative;
    background: var(--azf-surface);
    border: 1px solid var(--azf-border);
    border-radius: 14px;
    padding: 36px 40px;
    overflow: hidden;
}
.az-footer__passport::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 80px;
    height: 3px;
    background: var(--azf-primary);
    border-radius: 0 0 3px 0;
}
/* Pink "stamp seal" in corner */
.az-footer__passport::after {
    content: 'Gevestigd\aSchiedam';
    white-space: pre;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 84px;
    height: 84px;
    border: 2px dashed var(--azf-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--azf-primary);
    line-height: 1.3;
    transform: rotate(-8deg);
    opacity: .85;
}
.az-footer__passport-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.az-footer__passport-kicker {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--azf-muted);
}
.az-footer__passport-title {
    margin: 0;
    font-family: var(--azf-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 26px;
    color: var(--azf-dark);
    letter-spacing: -0.4px;
    line-height: 1;
}
.az-footer__passport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 32px;
    margin: 0;
    max-width: calc(100% - 100px);
}
.az-footer__passport-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.az-footer__passport-item dt {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--azf-muted);
}
.az-footer__passport-item dd {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--azf-dark);
    line-height: 1.4;
    font-variant-numeric: tabular-nums;
}
.az-footer__passport-item dd a {
    color: inherit;
    transition: color .3s;
}
.az-footer__passport-item dd a:hover { color: var(--azf-primary); }

/* Side column: social + overig */
.az-footer__side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.az-footer__side-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--azf-muted);
}
.az-footer__side-title::before {
    content: '';
    width: 16px;
    height: 2px;
    background: var(--azf-primary);
    border-radius: 2px;
}

/* Social tiles */
.az-footer__socials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.az-footer__social {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 10px 12px;
    background: var(--azf-surface);
    border: 1px solid var(--azf-border);
    border-radius: 10px;
    color: var(--azf-dark);
    transition: all .35s cubic-bezier(.22,1,.36,1);
    overflow: hidden;
}
.az-footer__social::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--azf-primary);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.22,1,.36,1);
    z-index: 0;
}
.az-footer__social:hover::before { transform: translateY(0); }
.az-footer__social:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 10px 22px -10px rgba(160,192,64,.4); }
.az-footer__social svg,
.az-footer__social span {
    position: relative;
    z-index: 1;
}
.az-footer__social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.az-footer__social span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* Overig block */
.az-footer__extras {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.az-footer__keurmerk,
.az-footer__wa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--azf-surface);
    border: 1px solid var(--azf-border);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--azf-dark);
    transition: all .35s cubic-bezier(.22,1,.36,1);
}
.az-footer__keurmerk:hover {
    border-color: var(--azf-primary);
    color: var(--azf-primary);
    transform: translateX(3px);
}
.az-footer__keurmerk svg {
    width: 22px;
    height: 22px;
    stroke: var(--azf-primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.az-footer__wa {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}
.az-footer__wa svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}
.az-footer__wa:hover {
    background: #1DA851;
    border-color: #1DA851;
    color: #fff;
    transform: translateX(3px);
    box-shadow: 0 10px 20px -8px rgba(37,211,102,.45);
}

/* ════════════════════════════════════════════════════
   3. BOTTOM BAR — dark
   ════════════════════════════════════════════════════ */
.az-footer__bottom {
    background: var(--azf-darker);
    color: rgba(255,255,255,.6);
    padding: 26px 0;
    position: relative;
}
.az-footer__bottom::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160,192,64,.5) 20%, rgba(160,192,64,.5) 80%, transparent);
}
.az-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.az-footer__copy {
    font-size: 12px;
    font-weight: 500;
}
.az-footer__copy strong { color: #fff; font-weight: 700; }
.az-footer__credit {
    display: inline;
    margin-left: 8px;
    padding-left: 10px;
    border-left: 1px solid rgba(255,255,255,.15);
    font-size: 12px;
    color: rgba(255,255,255,.45);
    font-weight: 500;
    letter-spacing: .02em;
}
.az-footer__credit a {
    color: rgba(255,255,255,.7);
    font-weight: 700;
    text-decoration: none;
    transition: color .3s;
}
.az-footer__credit a:hover { color: var(--azf-primary); }
.az-footer__pay {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.az-footer__pay-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-right: 6px;
}
.az-footer__pay-method {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 11px;
    min-width: 44px;
    height: 28px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .az-footer__main::before { font-size: 160px; right: -20px; }
}
@media (max-width: 1024px) {
    .az-footer__main { padding: 80px 0 64px; }
    .az-footer__split { grid-template-columns: 1fr; gap: 48px; padding-bottom: 56px; margin-bottom: 48px; }
    .az-footer__feature { padding: 36px 32px; }
    .az-footer__nav { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 56px; margin-bottom: 48px; }
    .az-footer__nav-list--two { grid-template-columns: 1fr 1fr; }
    .az-footer__info { grid-template-columns: 1fr; gap: 32px; }
    .az-footer__main::before { display: none; }
}
@media (max-width: 768px) {
    .az-footer__container { padding: 0 20px; }
    .az-footer__main { padding: 64px 0 48px; }
    .az-footer__passport { padding: 28px 22px; }
    .az-footer__passport::after { width: 68px; height: 68px; font-size: 8px; top: 18px; right: 18px; }
    .az-footer__passport-grid { grid-template-columns: 1fr; max-width: 100%; }
    .az-footer__nav { grid-template-columns: 1fr; gap: 32px; }
    .az-footer__nav-list--two { grid-template-columns: 1fr; }
    .az-footer__socials { grid-template-columns: repeat(2, 1fr); }
    .az-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
    .az-footer__feature-title { font-size: 28px; }
    .az-footer__brand-line { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
    #az-footer *, #az-footer *::before, #az-footer *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* ════════════════════════════════════════════════════
   VLOEREN AANVRAAG MODAL (unchanged markup, ongewijzigd)
   ════════════════════════════════════════════════════ */
.az-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(26, 24, 22, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
    font-family: 'DM Sans', 'Poppins', system-ui, sans-serif;
}
.az-modal.is-open { display: flex; opacity: 1; }
.az-modal__dialog {
    background: #ffffff;
    border-radius: 14px;
    width: 100%;
    max-width: 720px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,.4);
    transform: translateY(20px) scale(.96);
    opacity: 0;
    transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
    color: #2b2926;
}
.az-modal.is-open .az-modal__dialog { transform: translateY(0) scale(1); opacity: 1; }
.az-modal__header {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 28px 32px 18px;
    border-bottom: 1px solid rgba(43,41,38,.08);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    z-index: 2;
}
.az-modal__title {
    margin: 0 0 6px;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(26px, 2.6vw, 34px);
    letter-spacing: -0.5px;
    color: #2b2926;
}
.az-modal__sub {
    margin: 0;
    font-size: 14px;
    color: #7a726a;
    line-height: 1.5;
}
.az-modal__close {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #faf7f4;
    border: 1px solid rgba(43,41,38,.08);
    color: #2b2926;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}
.az-modal__close:hover { background: #a0c040; color: #fff; border-color: #a0c040; transform: rotate(90deg); }
.az-modal__close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.az-modal__body { padding: 24px 32px 32px; }

.az-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.az-form__row--3 { grid-template-columns: 1.2fr 0.7fr 0.8fr; }
.az-form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.az-form__label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #2b2926;
}
.az-form__label .req { color: #a0c040; }
.az-form__label .opt { color: #7a726a; font-weight: 600; font-size: 9px; }
.az-form__control {
    padding: 13px 16px;
    background: #faf7f4;
    border: 1px solid rgba(43,41,38,.1);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #2b2926;
    font-family: inherit;
    transition: border-color .3s, background .3s;
    width: 100%;
}
.az-form__control:focus {
    outline: none;
    border-color: #a0c040;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(160,192,64,.08);
}
select.az-form__control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b2926' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 42px;
}
.az-form__radios { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.az-form__radio { position: relative; }
.az-form__radio input { position: absolute; opacity: 0; pointer-events: none; }
.az-form__radio-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    background: #faf7f4;
    border: 1.5px solid rgba(43,41,38,.1);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #2b2926;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
}
.az-form__radio input:checked + .az-form__radio-tile {
    background: #fff;
    border-color: #a0c040;
    color: #a0c040;
    box-shadow: 0 6px 16px -8px rgba(160,192,64,.3);
}
.az-form__check {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    padding: 14px 16px;
    background: #faf7f4;
    border: 1px solid rgba(43,41,38,.1);
    border-radius: 8px;
}
.az-form__check input { display: none; }
.az-form__check-ui {
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(43,41,38,.25);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    flex-shrink: 0;
    background: #fff;
    position: relative;
}
.az-form__check input:checked + .az-form__check-ui { background: #a0c040; border-color: #a0c040; }
.az-form__check-ui::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) scale(0);
    margin-top: -2px;
    transition: transform .3s;
}
.az-form__check input:checked + .az-form__check-ui::after { transform: rotate(-45deg) scale(1); }
.az-form__check-text { font-size: 13px; font-weight: 600; color: #2b2926; }
.az-form__file {
    position: relative;
    padding: 22px;
    background: #faf7f4;
    border: 2px dashed rgba(43,41,38,.2);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    display: block;
}
.az-form__file:hover { border-color: #a0c040; background: #fff; }
.az-form__file input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.az-form__file-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #a0c040;
    border: 1px solid rgba(43,41,38,.08);
    margin-bottom: 10px;
}
.az-form__file-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.az-form__file-text { font-size: 13px; font-weight: 700; color: #2b2926; margin-bottom: 3px; }
.az-form__file-sub { font-size: 11px; color: #7a726a; font-weight: 500; }
.az-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 17px 28px;
    background: #2b2926;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background .35s;
    font-family: inherit;
    box-shadow: 0 10px 24px -10px rgba(43,41,38,.4);
}
.az-form__submit:hover {
    background: #a0c040;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -10px rgba(160,192,64,.5);
}
.az-form__submit svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 640px) {
    .az-form__row, .az-form__row--3 { grid-template-columns: 1fr; }
    .az-form__radios { grid-template-columns: repeat(2, 1fr); }
    .az-modal__header { padding: 20px 22px 14px; }
    .az-modal__body { padding: 20px 22px 24px; }
}
