/* ===== FONTS ===== */
@font-face {
    font-family: 'Duru Sans';
    src: url('./design-system/3. Fonts/Duru_Sans,Hind_Vadodara/Duru_Sans/DuruSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hind Vadodara';
    src: url('./design-system/3. Fonts/Duru_Sans,Hind_Vadodara/Hind_Vadodara/HindVadodara-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hind Vadodara';
    src: url('./design-system/3. Fonts/Duru_Sans,Hind_Vadodara/Hind_Vadodara/HindVadodara-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hind Vadodara';
    src: url('./design-system/3. Fonts/Duru_Sans,Hind_Vadodara/Hind_Vadodara/HindVadodara-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hind Vadodara';
    src: url('./design-system/3. Fonts/Duru_Sans,Hind_Vadodara/Hind_Vadodara/HindVadodara-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hind Vadodara';
    src: url('./design-system/3. Fonts/Duru_Sans,Hind_Vadodara/Hind_Vadodara/HindVadodara-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== DESIGN TOKENS ===== */
:root {
    /* Brand Colors */
    --bleu-intense: #2b6476;
    --sable: #eacfbb;
    --creme: #ece9e1;
    --vert-pale: #9ab8b4;
    --white: #ffffff;
    --black: #1a1a1a;

    /* Semantic */
    --primary: var(--bleu-intense);
    --accent: var(--sable);
    --bg-light: var(--creme);
    --bg-soft: #f5f2ed;
    --text-dark: #2c3e50;
    --text-muted: #6b7c8a;

    /* Typography */
    --font-heading: 'Duru Sans', sans-serif;
    --font-body: 'Hind Vadodara', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

/* ===== BASE ===== */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-soft);
    -webkit-font-smoothing: antialiased;
}

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

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

.highlighted {
    font-weight: bold;
    color: black !important;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    background-color: transparent;
    padding: 16px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-link svg {
    height: 32px;
    width: auto;
}

.logo-link svg g {
    fill: var(--primary);
}

.nav {
    display: flex;
    gap: 36px;
}

.nav a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    transition: color 0.2s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.2s;
}

.nav a:hover {
    color: var(--primary);
}

.nav a:hover::after {
    width: 100%;
}

.btn-cta-header {
    font-family: var(--font-body);
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
}

.btn-cta-header:hover {
    background-color: #1e4f5e;
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sable) 0%, var(--creme) 40%, var(--bg-soft) 100%);
}

.hero-bg-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero-content {
    text-align: left;
}

.hero-form-side {
    display: flex;
    justify-content: flex-end;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(43, 100, 118, 0.08);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--vert-pale);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 400;
    color: var(--primary) !important;
    margin-bottom: 20px;
    line-height: 1.2;
}

.nowrap {
    white-space: nowrap;
}

.hero-description {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 480px;
}

/* ===== EMAIL FORM (Netlify) ===== */
.hero-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto 16px;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 0;
    padding: 14px 20px;
    border: 1.5px solid #d8d4ce;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--white);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.email-input::placeholder {
    color: #a8a29e;
}

.email-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(43, 100, 118, 0.1);
}

.btn-primary {
    font-family: var(--font-body);
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: #1e4f5e;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.hero-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    margin-top: 8px;
}

.hero-form-side .inscription-card {
    max-width: 100%;
    width: 100%;
}

/* ===== HERO DUAL CTA ===== */
.hero-dual-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    background: var(--white);
    border-radius: 14px;
    border: 2px solid transparent;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    cursor: pointer;
}

.hero-cta-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(43, 100, 118, 0.12);
    transform: translateY(-2px);
}

.hero-cta-icon {
    width: 44px;
    height: 44px;
    background: rgba(43, 100, 118, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.hero-cta-icon svg {
    width: 22px;
    height: 22px;
}

/* ===== INSCRIPTION CARD ===== */
.inscription-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(43, 100, 118, 0.08);
}

.waitlist-full-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.phone-input-wrapper {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    border: 1.5px solid #d8d4ce;
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.phone-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(43, 100, 118, 0.08);
}

.phone-prefix {
    padding: 12px 0 12px 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    user-select: none;
    white-space: nowrap;
}

.phone-field {
    border: none !important;
    border-radius: 0 !important;
    padding-left: 6px !important;
    box-shadow: none !important;
}

.phone-field:focus {
    border: none !important;
    box-shadow: none !important;
}

.select-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
}

.select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.6rem;
    color: #555;
}

.select-form-input {
    width: 100%;
    height: 100%;
    padding: 12px 2rem 12px 1rem;
    border: 1.5px solid #d8d4ce;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--white);
    color: var(--text-dark);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.select-form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(43, 100, 118, 0.08);
}

.form-input {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    border: 1.5px solid #d8d4ce;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--white);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: #a8a29e;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(43, 100, 118, 0.1);
}

select.form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7c8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    color: #a8a29e;
}

select.form-input:valid {
    color: var(--text-dark);
}

.form-row-email {
    display: flex;
    gap: 12px;
}

.form-row-email .form-input {
    flex: 1;
}

.form-row-email .btn-primary {
    flex-shrink: 0;
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(43, 100, 118, 0.08);
    border-radius: 12px;
    max-width: 520px;
    margin: 0 auto;
}

.form-success.show {
    display: block;
}

.form-success p {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
}

.form-success small {
    color: var(--text-muted);
    font-size: 14px;
}

.inscription-card .form-success {
    max-width: none;
}

.inscription-card .consent-label {
    max-width: none;
}

/* ===== CONSENT CHECKBOX (RGPD) ===== */
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 520px;
    margin: 12px auto 0;
    font-size: 13px;
    /* color: var(--text-muted); */
    line-height: 1.5;
    cursor: pointer;
}

.consent-checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
}

.consent-label span {
    flex: 1;
}

.consent-label a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.2s;
}

.consent-label a:hover {
    color: #1e4f5e;
}

/* ===== SECTION COMMON ===== */
.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 56px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step {
    text-align: left;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 14px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== WHY CHOOSE ===== */
.why-choose {
    padding: 100px 0;
    background-color: var(--bg-soft);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature {
    background-color: var(--white);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(43, 100, 118, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(43, 100, 118, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== TWO COLUMN ===== */
.two-column {
    padding: 100px 0;
    background-color: var(--white);
}

.column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.column {
    background: var(--bg-soft);
    border-radius: 16px;
    padding: 36px 32px;
}

.column h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.column-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.column-icon.titulaire {
    background-color: rgba(43, 100, 118, 0.1);
    color: var(--primary);
}

.column-icon.remplacante {
    background-color: rgba(234, 207, 187, 0.4);
    color: var(--primary);
}

.column-icon svg {
    width: 20px;
    height: 20px;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--vert-pale);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px;
}

/* ===== COMING SOON / CTA ===== */
.coming-soon {
    padding: 80px 0;
    background-color: var(--bg-soft);
}

.coming-soon-card {
    background: linear-gradient(135deg, var(--bleu-intense) 0%, #3a8699 100%);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.coming-soon-card h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 16px;
}

.coming-soon-text {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.stats {
    margin-bottom: 36px;
}

.stat-item {
    display: inline-block;
}

.avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.avatar {
    width: 36px;
    height: 36px;
    background-color: rgba(234, 207, 187, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    border: 2px solid var(--bleu-intense);
    font-size: 14px;
}

.avatar:first-child {
    margin-left: 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.75;
    letter-spacing: 1px;
    font-weight: 500;
}

.progress-bar {
    max-width: 440px;
    margin: 0 auto;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.progress-track {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--sable), var(--white));
    border-radius: 3px;
    transition: width 1s ease;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.bottom-cta .hero-form {
    margin-top: 32px;
    margin-bottom: 12px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--bleu-intense);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo svg {
    height: 28px;
    width: auto;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--sable);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    color: rgba(255, 255, 255, 0.7);
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.social-links a svg {
    width: 18px;
    height: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 16px;
        gap: 20px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-form-side {
        justify-content: center;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-dual-cta {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row-email {
        flex-direction: column;
    }

    .inscription-card {
        padding: 24px 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .column-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .coming-soon-card {
        padding: 40px 24px;
    }

    .coming-soon-card h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-cta-header {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 32px;
    }

    .hero-title {
        font-size: 28px;
    }

    .nav {
        gap: 16px;
        font-size: 14px;
    }

    .column {
        padding: 24px 20px;
    }
}