/* ——— RESET & BASE ——— */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e293b;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}
a {
    text-decoration: none;
    color: inherit;
}
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ——— SCROLLBAR ——— */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #013a62;
    border-radius: 6px;
}

/* ——— TYPOGRAPHIE ——— */
h1 {
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 0.25em;
}
h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 0.3em;
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 0.3em;
}
h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 0.2em;
}
p,
.text-body {
    font-size: 1rem;
    font-weight: 400;
    color: #475569;
    line-height: 1.8;
    max-width: 70ch;
    margin-bottom: 1em;
}
.lede {
    font-size: 1.15rem;
    font-weight: 400;
    color: #475569;
    line-height: 1.8;
    max-width: 60ch;
    margin-bottom: 1.5em;
}
.eyebrow {
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #013a62;
    background: rgba(1, 58, 98, 0.08);
    padding: 4px 16px;
    border-radius: 30px;
    border: 1px solid rgba(1, 58, 98, 0.12);
    display: inline-block;
    margin-bottom: 20px;
}
.text-meta {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.02em;
}
.text-small {
    font-size: 0.85rem;
    font-weight: 400;
    color: #64748b;
}
.mono,
.mono-number {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ——— NAV ——— */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(1, 58, 98, 0.08);
    transition: box-shadow 0.3s;
}
.nav.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}
.logo {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: #0f172a;
}
.logo .dot {
    color: #013a62;
}
.links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.links a {
    font-weight: 500;
    font-size: 0.85rem;
    color: #64748b;
    transition: color 0.2s;
    position: relative;
    letter-spacing: 0.01em;
    padding: 4px 0;
}
.links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #013a62;
    transition: width 0.25s ease;
}
.links a:hover,
.links a.current {
    color: #0f172a;
}
.links a:hover::after,
.links a.current::after {
    width: 100%;
}
.cta {
    font-weight: 600;
    font-size: 0.85rem;
    background: #013a62;
    color: #fff;
    padding: 9px 22px;
    border-radius: 40px;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.cta:hover {
    background: #014d7a;
    transform: scale(1.02);
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 820px) {
    .links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 48px 40px;
        transition: right 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        border-left: 1px solid rgba(1, 58, 98, 0.08);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.04);
    }
    .links.open {
        right: 0;
    }
    .burger {
        display: flex;
    }
    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .burger.open span:nth-child(2) {
        opacity: 0;
    }
    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* ——— HERO (Accueil) ——— */
.hero {
    padding: 160px 0 80px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 860px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-grid .buttons {
        justify-content: center;
    }
    .lede {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}
.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}
.btn {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 30px;
    border-radius: 40px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    background: transparent;
    letter-spacing: 0.01em;
}
.btn.primary {
    background: #013a62;
    color: #fff;
    box-shadow: 0 4px 16px rgba(1, 58, 98, 0.15);
}
.btn.primary:hover {
    background: #014d7a;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(1, 58, 98, 0.25);
}
.btn.ghost {
    color: #1e293b;
    border: 1.5px solid #d1d5db;
}
.btn.ghost:hover {
    border-color: #013a62;
    background: rgba(1, 58, 98, 0.04);
    transform: translateY(-3px);
}
.btn.gold {
    background: #013a62;
    color: #fff;
    box-shadow: 0 4px 16px rgba(1, 58, 98, 0.15);
}
.btn.gold:hover {
    background: #014d7a;
    transform: translateY(-3px);
}
.btn.full {
    width: 100%;
    justify-content: center;
}
.btn.small {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* ——— WIDGET : mockup iPhone responsive ——— */
.phone-caption {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 18px;
}
.widget {
    display: flex;
    justify-content: center;
}
.phone-shell {
    position: relative;
    width: 470px;
    max-width: 100%;
    background: #0b0e14;
    border-radius: 46px;
    padding: 12px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18), 0 4px 14px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.phone-shell:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.22), 0 4px 14px rgba(15, 23, 42, 0.08);
}
.phone-screen {
    position: relative;
    background: #ffffff;
    border-radius: 36px;
    overflow: hidden;
    padding: 0;
    /* La hauteur est dictée par l'aspect-ratio */
    aspect-ratio: 9 / 19.5; /* iPhone moderne (largeur/hauteur) */
    width: 100%;
}

/* Dynamic Island (superposé à l'image) */
.dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #0b0e14;
    border-radius: 20px;
    z-index: 5;
}

/* Capture d'écran : remplit tout le cadre sans déformer */
.screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 36px;
    image-rendering: -webkit-optimize-contrast;  /* Safari */
    image-rendering: crisp-edges;                /* Firefox, Chrome */
    image-rendering: pixelated;   
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor; /* IE */               /* Fallback pour les vieux navigateurs */

}


/* On masque les anciens éléments simulés (si présents dans le HTML) */
.widget-alert,
.stat-panel,
.subject-heading,
.matieres-list,
.phone-navbar {
    display: none;
}

/* Ajustement pour les très petits écrans */
@media (max-width: 480px) {
    .phone-shell {
        width: 260px;
        padding: 10px;
    }
    .dynamic-island {
        width: 70px;
        height: 20px;
        top: 8px;
    }
}

/* ——— TEASER STORY ——— */
.teaser-story {
    padding: 64px 0 72px;
    border-top: 1px solid #e9edf2;
    border-bottom: 1px solid #e9edf2;
    background: #fafbfc;
}
.teaser-story .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}
.teaser-story .text {
    max-width: 600px;
}
.teaser-story .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #013a62;
    margin-bottom: 6px;
}
.teaser-story h3 {
    margin-bottom: 10px;
}
.teaser-story p {
    margin-bottom: 0;
}

/* ——— CLOSER ——— */
.closer {
    padding: 64px 0 80px;
    text-align: center;
}
.closer h2 {
    margin-bottom: 32px;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}
.closer .buttons {
    justify-content: center;
}

/* ——— SECTIONS COMMUNES ——— */
.section-spacer {
    height: 80px;
}
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-head h2 {
    margin-bottom: 12px;
}
.section-head p {
    font-size: 1.05rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* ——— HISTOIRE ——— */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0 60px;
}
@media (max-width: 780px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.story-grid .content h2 {
    margin-bottom: 18px;
}
.story-grid .content p {
    margin-bottom: 18px;
}
.highlight-text {
    font-size: 1.05rem;
    font-weight: 500;
    font-style: italic;
    background: rgba(1, 58, 98, 0.05);
    border-left: 4px solid #013a62;
    padding: 18px 24px;
    border-radius: 6px;
    color: #1e293b;
    margin: 24px 0;
    max-width: 100%;
}
.story-compare {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.story-compare .card {
    background: #ffffff;
    border: 1px solid #e9edf2;
    border-radius: 20px;
    padding: 28px 36px;
    text-align: center;
    min-width: 130px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}
.story-compare .card .label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
}
.story-compare .card .value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
}
.story-compare .card.actual .value {
    color: #dc2626;
}
.story-compare .arrow {
    font-size: 2.2rem;
    color: #94a3b8;
}
.flow-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    padding: 48px 0 24px;
}
@media (max-width: 780px) {
    .flow-details {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
.flow-details .item {
    background: #f8fafc;
    padding: 28px 24px;
    border-radius: 20px;
    border: 1px solid #e9edf2;
    transition: transform 0.2s;
}
.flow-details .item:hover {
    transform: translateY(-4px);
}
.flow-details .item .num {
    font-size: 0.7rem;
    font-weight: 600;
    color: #013a62;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.flow-details .item h3 {
    margin-bottom: 8px;
}
.flow-details .item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ——— ÉLÈVE ——— */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin: 48px 0 60px;
}
@media (max-width: 860px) {
    .options-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}
.option-card {
    background: #ffffff;
    border: 1px solid #e9edf2;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.option-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}
.option-card .badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #f1f5f9;
    color: #475569;
    padding: 2px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}
.option-card .badge.recommended,
.option-card .badge.promo {
    background: #013a62;
    color: #fff;
}
.option-card .emoji {
    font-size: 2.6rem;
    margin-bottom: 14px;
}
.option-card h3 {
    margin-bottom: 10px;
}
.option-card .desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
    flex-grow: 1;
}
.option-card .price-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 18px 0 10px;
}
.option-card .price-tag .small {
    font-size: 0.8rem;
    font-weight: 400;
    color: #94a3b8;
}
.option-card .footnote {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.6;
    margin-top: 10px;
}
.option-card.danger {
    border-color: #fecaca;
}
.option-card.success {
    border-color: #013a62;
    border-width: 2px;
}
.option-card.gold-card {
    border-color: #013a62;
    background: #f8fafc;
}
.price {
    background: #f8fafc;
    border: 1px solid #e9edf2;
    border-radius: 24px;
    padding: 36px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
}
.price .price-left .k {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #94a3b8;
}
.price .price-left h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}
.price .price-left p {
    margin-bottom: 0;
}

/* ——— ÉTABLISSEMENT ——— */
.partner-hero {
    text-align: center;
    padding: 40px 0 48px;
}
.partner-hero h2 {
    margin-bottom: 14px;
}
.partner-hero p {
    max-width: 720px;
    margin: 0 auto;
}
.partner-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    padding: 24px 0 48px;
}
@media (max-width: 780px) {
    .partner-benefits {
        grid-template-columns: 1fr;
    }
}
.partner-benefits .benefit {
    background: #f8fafc;
    border: 1px solid #e9edf2;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.2s;
}
.partner-benefits .benefit:hover {
    transform: translateY(-4px);
}
.partner-benefits .benefit .icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.partner-benefits .benefit h4 {
    margin-bottom: 6px;
}
.partner-benefits .benefit p {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0;
}
.support-section {
    background: #f8fafc;
    border: 1px solid #e9edf2;
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 24px 0 48px;
}
.support-section .icon-big {
    font-size: 3rem;
}
.support-section .text {
    flex: 1;
}
.support-section .text h4 {
    margin-bottom: 6px;
}
.support-section .text p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 0;
}
.support-section .text .highlight {
    color: #013a62;
    font-weight: 600;
}
.support-section .tag {
    background: #013a62;
    color: #fff;
    padding: 4px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.pricing-custom {
    background: #ffffff;
    border: 1px solid #e9edf2;
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin: 24px 0 36px;
}
.pricing-custom .left h3 {
    margin-bottom: 4px;
}
.pricing-custom .left p {
    margin-bottom: 0;
}
.pricing-custom .right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.pricing-custom .right .price-badge {
    background: #f1f5f9;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ——— CONTACT ——— */
.contact-header {
    text-align: center;
    padding: 24px 0 36px;
}
.contact-header h2 {
    margin-bottom: 8px;
}
.contact-header p {
    max-width: 100%;
}
.contact-form-wrapper {
    max-width: 580px;
    margin: 0 auto;
    background: #f8fafc;
    border: 1px solid #e9edf2;
    border-radius: 24px;
    padding: 44px 36px;
}
.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-form-wrapper input,
.contact-form-wrapper textarea {
    font-family: 'Inter', sans-serif;
    padding: 14px 18px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 0.95rem;
    background: #ffffff;
    transition: border 0.2s, box-shadow 0.2s;
    width: 100%;
}
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: #013a62;
    box-shadow: 0 0 0 3px rgba(1, 58, 98, 0.1);
}
.contact-form-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}
.contact-form-wrapper .form-note {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
}
.contact-form-wrapper .mail {
    text-align: center;
    margin-top: 28px;
    font-weight: 600;
    color: #0f172a;
    font-size: 1.1rem;
}

/* ——— FAQ ——— */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 20px 0 40px;
}
@media (max-width: 780px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
.faq-item {
    background: #f8fafc;
    border: 1px solid #e9edf2;
    border-radius: 20px;
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}
.faq-item h4 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}
.faq-item h4 .q {
    color: #013a62;
    font-weight: 700;
    font-size: 1.1rem;
}
.faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ——— À PROPOS ——— */
.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 32px 0 48px;
}
@media (max-width: 780px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
}
.legal-card {
    background: #f8fafc;
    border: 1px solid #e9edf2;
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.2s;
}
.legal-card:hover {
    transform: translateY(-3px);
}
.legal-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.legal-card p,
.legal-card li {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.5em;
}
.legal-card ul {
    list-style: none;
    padding: 0;
}
.legal-card ul li::before {
    content: "• ";
    color: #013a62;
    font-weight: 700;
}

/* ——— FOOTER ——— */
.footer-utile {
    border-top: 1px solid #e9edf2;
    padding: 60px 0 32px;
    background: #fafbfc;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
@media (max-width: 860px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
.footer-col h4 {
    font-weight: 700;
    font-size: 0.9rem;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul a {
    font-size: 0.9rem;
    color: #475569;
    transition: color 0.2s;
    cursor: pointer;
    display: inline-block;
}
.footer-col ul a:hover {
    color: #013a62;
}
.footer-copyright {
    border-top: 1px solid #e9edf2;
    padding-top: 28px;
    text-align: center;
}
.footer-copyright span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.02em;
}

/* ——— RESPONSIVE GLOBAL ——— */
@media (max-width: 600px) {
    .wrap {
        padding: 0 18px;
    }
    .hero {
        padding: 130px 0 40px;
    }
    .contact-form-wrapper {
        padding: 28px 18px;
    }
    .option-card {
        padding: 24px 18px;
    }
    .price {
        padding: 24px 18px;
    }
    .support-section {
        padding: 24px 18px;
    }
    .pricing-custom {
        padding: 24px 18px;
    }
    .footer-grid {
        gap: 24px;
    }
    .phone-shell {
        width: 280px;
        padding: 10px;
    }
    .dynamic-island {
        width: 75px;
        height: 22px;
        top: 9px;
    }
}