/* ==========================================================================
   UpAsso.fr — Commercial one-page site
   ========================================================================== */

/* ==========================================================================
   FONTS (self-hosted)
   ========================================================================== */

/* Inter — latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Inter — latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Space Grotesk — latin-ext */
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url('/fonts/space-grotesk-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Space Grotesk — latin */
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url('/fonts/space-grotesk-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
    --aw-blue: #2563EB;
    --aw-blue-dark: #1D4ED8;
    --aw-blue-light: #EFF6FF;
    --aw-orange: #EA580C;
    --aw-orange-dark: #C2410C;
    --aw-orange-light: #FEF3E2;
    --aw-bg: #FFFFFF;
    --aw-bg-alt: #F8FAFC;
    --aw-text: #1E293B;
    --aw-text-light: #64748B;
    --aw-text-muted: #6B7280;
    --aw-border: #E2E8F0;
    --aw-red: #EF4444;
    --aw-green: #22C55E;
    --aw-radius: 12px;
    --aw-radius-lg: 16px;
    --aw-radius-xl: 24px;
    --aw-radius-full: 9999px;
    --aw-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --aw-shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
    --aw-shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
    --aw-shadow-xl: 0 20px 40px rgba(0,0,0,0.10);
    --aw-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --aw-transition-fast: 0.15s ease;
    --aw-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --aw-font-display: 'Space Grotesk', 'Inter', sans-serif;
    --aw-max-width: 1140px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--aw-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--aw-text);
    background: var(--aw-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--aw-blue);
    text-decoration: none;
    transition: color var(--aw-transition-fast);
}
a:hover {
    color: var(--aw-blue-dark);
}

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

.container {
    max-width: var(--aw-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--aw-transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header-inner {
    max-width: var(--aw-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo-svg {
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: var(--aw-text);
    font-weight: 500;
    font-size: 0.9375rem;
}

.nav a.btn {
    color: #fff;
    position: relative;
    transition: color var(--aw-transition-fast);
}

.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--aw-blue);
    transition: width var(--aw-transition);
    border-radius: 1px;
}

.nav a:not(.btn):hover::after {
    width: 100%;
}

.nav a:not(.btn):hover {
    color: var(--aw-blue);
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--aw-text) !important;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
}
.nav-phone:hover {
    color: var(--aw-blue) !important;
}
.nav-phone::after {
    display: none !important;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--aw-text);
    border-radius: 2px;
    transition: all var(--aw-transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
}

/* ==========================================================================
   SIDE PANEL (mobile menu)
   ========================================================================== */

.side-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--aw-bg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 0 2rem 2rem;
    transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.side-panel.active {
    right: 0;
}

.side-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--aw-border);
    flex-shrink: 0;
}

.side-panel-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--aw-radius);
    border: none;
    background: var(--aw-bg-alt);
    color: var(--aw-text);
    cursor: pointer;
    transition: all var(--aw-transition-fast);
}
.side-panel-close:hover {
    background: var(--aw-blue-light);
    color: var(--aw-blue);
}

.side-panel-nav {
    flex: 1;
    padding: 2rem 0;
}

.side-panel-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.side-panel-nav a {
    display: block;
    padding: 1rem 1.25rem;
    color: var(--aw-text);
    font-family: var(--aw-font-display);
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: var(--aw-radius);
    transition: all var(--aw-transition-fast);
}

.side-panel-nav a:hover {
    color: var(--aw-blue);
    background: var(--aw-blue-light);
}

.side-panel-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    font-family: var(--aw-font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--aw-blue);
    border: 1.5px solid var(--aw-border);
    border-radius: var(--aw-radius);
    transition: all var(--aw-transition-fast);
    flex-shrink: 0;
}
.side-panel-phone:hover {
    color: var(--aw-blue-dark);
    border-color: var(--aw-blue);
    background: var(--aw-blue-light);
}

.side-panel-cta {
    width: 100%;
    justify-content: center;
    flex-shrink: 0;
}

.side-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--aw-transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.side-panel-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

body.side-panel-open {
    overflow: hidden;
}

@media (min-width: 769px) {
    .side-panel {
        width: 400px;
        box-shadow: -16px 0 48px rgba(0,0,0,0.12);
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--aw-font-body);
    font-weight: 600;
    border: none;
    border-radius: var(--aw-radius);
    cursor: pointer;
    transition: all var(--aw-transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn svg {
    transition: transform var(--aw-transition);
}
.btn:hover svg {
    transform: translateX(3px);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: #1D4ED8;
    color: #fff;
}
.btn-primary:hover {
    background: #1E40AF;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-orange {
    background: #C2410C;
    color: #fff;
}
.btn-orange:hover {
    background: #9A3412;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 65, 12, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--aw-text);
    border: 1.5px solid var(--aw-border);
}
.btn-outline:hover {
    color: var(--aw-blue);
    border-color: var(--aw-blue);
    background: var(--aw-blue-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    padding: 8rem 0 5rem;
    background: var(--aw-bg);
    overflow: hidden;
    position: relative;
}

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

.hero-content h1 {
    font-family: var(--aw-font-display);
    font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--aw-text);
    margin-bottom: 1.25rem;
}

.price-highlight {
    color: var(--aw-orange);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--aw-text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero illustration */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 420px;
}

@media (max-width: 1024px) {
    .hero {
        padding: 7rem 0 3rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content h1 {
        font-size: clamp(1.5rem, 4vw, 2.25rem);
    }
    .hero-content h1 br {
        display: none;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 2.5rem;
    }
    .hero-subtitle br {
        display: none;
    }
}

/* ==========================================================================
   PAIN POINTS
   ========================================================================== */

.pain-points {
    padding: 4rem 0;
    text-align: center;
}

.section-title {
    font-family: var(--aw-font-display);
    font-size: clamp(1.375rem, 2vw + 0.5rem, 2rem);
    font-weight: 700;
    color: var(--aw-text);
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.pain-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.pain-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pain-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--aw-radius-full);
    background: rgba(239, 68, 68, 0.08);
    margin-bottom: 0.25rem;
}

.pain-label {
    font-family: var(--aw-font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--aw-text);
}

.pain-desc {
    font-size: 0.875rem;
    color: var(--aw-text-light);
}

.pain-conclusion {
    font-size: 1.125rem;
    color: var(--aw-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.pain-conclusion strong {
    color: var(--aw-blue);
    font-weight: 700;
}

@media (max-width: 768px) {
    .pain-grid {
        gap: 2rem;
    }
    .section-title br {
        display: none;
    }
}

/* ==========================================================================
   SOLUTION
   ========================================================================== */

.solution {
    padding: 5rem 0;
    background: var(--aw-bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--aw-bg);
    border-radius: var(--aw-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--aw-shadow);
    border: 1px solid var(--aw-border);
    transition: all var(--aw-transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--aw-shadow-lg);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--aw-radius);
    background: var(--aw-blue-light);
    margin: 0 auto 1.25rem;
}

.feature-card h3 {
    font-family: var(--aw-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--aw-text);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--aw-text-light);
    line-height: 1.5;
}

/* Pricing block */
.pricing-block {
    text-align: center;
    margin-top: 3rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.price-main {
    font-family: var(--aw-font-display);
    font-size: clamp(2rem, 3vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--aw-blue);
}

.price-main small {
    font-size: 0.5em;
    font-weight: 500;
    color: var(--aw-text-light);
}

.price-sep {
    font-size: 1.5rem;
    color: var(--aw-text-muted);
    font-weight: 300;
}

.price-monthly {
    font-family: var(--aw-font-display);
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
    font-weight: 700;
    color: var(--aw-orange);
}

.price-monthly small {
    font-size: 0.55em;
    font-weight: 500;
    color: var(--aw-text-light);
}

/* Migration block */
.migration-block {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 640px;
    margin: 2.5rem auto 0;
    padding: 1.25rem 1.75rem;
    background: var(--aw-blue-light);
    border-radius: var(--aw-radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.migration-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--aw-radius);
    background: var(--aw-bg);
    flex-shrink: 0;
    box-shadow: var(--aw-shadow);
}

.migration-text {
    font-size: 0.9375rem;
    color: var(--aw-text);
    line-height: 1.6;
}

.migration-text strong {
    color: var(--aw-blue);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .migration-block {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   PROCESSUS
   ========================================================================== */

.process-section {
    padding: 5rem 0;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    padding: 2rem 1.5rem;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--aw-radius-full);
    background: var(--aw-blue);
    color: #fff;
    font-family: var(--aw-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
}

.process-step h3 {
    font-family: var(--aw-font-display);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--aw-text);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--aw-text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   OFFRE + FAQ
   ========================================================================== */

.offer-faq-section {
    padding: 5rem 0;
}

.offer-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Offer pilot */
.offer-pilot {
    background: var(--aw-bg);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--aw-shadow-md);
}

.offer-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--aw-orange-light);
    color: var(--aw-orange-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--aw-radius-full);
    margin-bottom: 1.25rem;
}

.offer-pilot h2 {
    font-family: var(--aw-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aw-text);
    margin-bottom: 1rem;
}

.text-orange {
    color: var(--aw-orange);
}

.text-muted {
    color: var(--aw-text-muted);
    font-weight: 400;
}

.offer-desc {
    color: var(--aw-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.offer-perks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.perk-item s {
    text-decoration: line-through;
}

.offer-cta {
    width: 100%;
    justify-content: center;
}

/* FAQ */
.faq h2 {
    font-family: var(--aw-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aw-text);
    margin-bottom: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--aw-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--aw-border);
}

.faq-heading {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.125rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--aw-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--aw-text);
    text-align: left;
    gap: 1rem;
    transition: color var(--aw-transition-fast);
}

.faq-question:hover {
    color: var(--aw-blue);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--aw-transition);
    color: var(--aw-text-muted);
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--aw-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
    padding-bottom: 1.25rem;
    font-size: 0.9375rem;
    color: var(--aw-text-light);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

@media (max-width: 1024px) {
    .offer-faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.contact-section {
    padding: 5rem 0;
    background: var(--aw-bg-alt);
}

.contact-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--aw-bg);
    border-radius: var(--aw-radius-xl);
    padding: 3rem;
    box-shadow: var(--aw-shadow-lg);
    text-align: center;
    border: 1px solid var(--aw-border);
}

.contact-card h2 {
    font-family: var(--aw-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--aw-text);
    margin-bottom: 0.5rem;
}

.contact-card > p {
    color: var(--aw-text-light);
    margin-bottom: 2rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--aw-text);
}

.form-group input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius);
    font-family: var(--aw-font-body);
    font-size: 0.9375rem;
    color: var(--aw-text);
    background: var(--aw-bg);
    transition: border-color var(--aw-transition-fast), box-shadow var(--aw-transition-fast);
    outline: none;
}

.form-group input::placeholder {
    color: var(--aw-text-muted);
}

.form-group input:focus {
    border-color: var(--aw-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Alert */
.alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--aw-radius);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.alert-success {
    background: rgba(34, 197, 94, 0.08);
    color: #15803D;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.alert svg {
    flex-shrink: 0;
}

.contact-phone {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--aw-border);
}

.contact-phone p {
    font-size: 0.875rem;
    color: var(--aw-text-muted);
    margin-bottom: 0.5rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--aw-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--aw-blue);
}
.phone-link:hover {
    color: var(--aw-blue-dark);
}

@media (max-width: 640px) {
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--aw-border);
    background: var(--aw-bg);
}

.footer p {
    font-size: 0.8125rem;
    color: var(--aw-text-muted);
    margin-bottom: 0.5rem;
}

.footer p:last-child {
    margin-bottom: 0;
}

.footer-local {
    font-size: 0.875rem;
    color: var(--aw-text-light);
    font-weight: 500;
    margin-bottom: 0.375rem;
}

.footer-links a {
    color: var(--aw-text-muted);
    font-size: 0.8125rem;
    transition: color var(--aw-transition-fast);
}

.footer-links a:hover {
    color: var(--aw-blue);
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

.legal-page {
    padding: 7rem 0 4rem;
}

.legal-page h1 {
    font-family: var(--aw-font-display);
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
    font-weight: 700;
    color: var(--aw-text);
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-family: var(--aw-font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--aw-text);
    margin: 2rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
    font-size: 0.9375rem;
    color: var(--aw-text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-page ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page a {
    color: var(--aw-blue);
}
.legal-page a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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