/* =========================================================
   Onatys Doc — Feuille de style principale
   Couleurs issues du logo : bleu (#1E4B87) et magenta (#A61E5A)
   ========================================================= */

:root {
    --brand-blue: #1E4B87;
    --brand-blue-dark: #153463;
    --brand-blue-light: #2E5FA6;
    --brand-pink: #A61E5A;
    --brand-pink-dark: #7F1644;
    --brand-pink-light: #C53777;

    --text-dark: #1A2540;
    --text-muted: #5A6478;
    --text-light: #8A94A8;

    --bg-white: #ffffff;
    --bg-light: #F7F9FC;
    --bg-lighter: #FBFCFE;
    --bg-blue-soft: #EEF3FB;

    --border-soft: #E5EAF2;

    --shadow-sm: 0 2px 6px rgba(30, 75, 135, 0.06);
    --shadow-md: 0 8px 24px rgba(30, 75, 135, 0.1);
    --shadow-lg: 0 20px 50px rgba(30, 75, 135, 0.15);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.25s ease;

    --gradient-brand: linear-gradient(135deg, #1E4B87 0%, #A61E5A 100%);
    --gradient-brand-soft: linear-gradient(135deg, rgba(30, 75, 135, 0.08) 0%, rgba(166, 30, 90, 0.08) 100%);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--brand-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-pink); }

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }

p { color: var(--text-muted); margin-bottom: 1rem; }

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

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

section { padding: 80px 0; }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-header .eyebrow {
    display: inline-block;
    color: var(--brand-pink);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header p { font-size: 1.1rem; margin-top: 0.75rem; }

.highlight-blue { color: var(--brand-blue); }
.highlight-pink { color: var(--brand-pink); }
.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* =====================  HEADER / NAV  ===================== */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border-soft);
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 2px;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-blue);
    border-bottom-color: var(--brand-pink);
}

.nav-cta { display: flex; gap: 12px; align-items: center; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--brand-blue);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* =====================  BUTTONS  ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--brand-pink);
    color: #fff;
    box-shadow: 0 6px 18px rgba(166, 30, 90, 0.25);
}

.btn-primary:hover {
    background: var(--brand-pink-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(166, 30, 90, 0.35);
}

.btn-secondary {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: 0 6px 18px rgba(30, 75, 135, 0.25);
}

.btn-secondary:hover {
    background: var(--brand-blue-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.btn-outline:hover {
    background: var(--brand-blue);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--text-dark);
    padding: 10px 18px;
}

.btn-ghost:hover {
    color: var(--brand-blue);
    background: var(--bg-blue-soft);
}

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

.btn-block { width: 100%; }

/* =====================  HERO  ===================== */
.hero {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(166, 30, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -250px; left: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(30, 75, 135, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(166, 30, 90, 0.08);
    color: var(--brand-pink);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 { margin-bottom: 24px; }

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust .item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-trust svg {
    width: 20px; height: 20px;
    fill: var(--brand-blue);
}

/* Hero visual mockup */
.hero-visual {
    position: relative;
}

.device-mockup {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    border: 1px solid var(--border-soft);
    transform: perspective(800px) rotateY(-4deg);
}

.device-mockup::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: var(--gradient-brand-soft);
    z-index: -1;
    transform: translate(20px, 20px);
}

.device-screen {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    display: flex;
    flex-direction: column;
}

.screen-bar {
    background: #fff;
    padding: 10px 16px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--border-soft);
    align-items: center;
}

.screen-bar .dot {
    width: 10px; height: 10px; border-radius: 50%;
}

.screen-bar .dot.red { background: #FF5F57; }
.screen-bar .dot.yellow { background: #FEBC2E; }
.screen-bar .dot.green { background: #28C840; }

.screen-content {
    display: grid;
    grid-template-columns: 180px 1fr;
    flex: 1;
}

.screen-sidebar {
    background: var(--brand-blue);
    padding: 20px 14px;
    color: #fff;
}

.screen-sidebar .doc-item {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 4px;
    font-size: 0.8rem;
    opacity: 0.85;
}

.screen-sidebar .doc-item.active { background: rgba(255,255,255,0.12); opacity: 1; }

.screen-main { padding: 18px; display: flex; flex-direction: column; gap: 10px; }

.screen-main .doc-title {
    height: 14px; background: var(--text-dark); opacity: 0.85;
    border-radius: 4px; width: 60%;
}

.screen-main .doc-line {
    height: 8px; background: var(--border-soft); border-radius: 3px;
}
.screen-main .doc-line.short { width: 70%; }
.screen-main .doc-line.shorter { width: 50%; }

.screen-main .media-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 6px 0; }
.screen-main .media-thumb {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-pink-light) 100%);
    border-radius: 6px;
    opacity: 0.85;
}
.screen-main .media-thumb:nth-child(2) { background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-blue) 100%); }
.screen-main .media-thumb:nth-child(3) { background: var(--brand-blue); }

.floating-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-soft);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.floating-card .icon {
    width: 34px; height: 34px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}

.floating-card.fc-1 {
    top: -16px; left: -30px;
    animation: float 4s ease-in-out infinite;
}
.floating-card.fc-1 .icon { background: var(--brand-pink); }

.floating-card.fc-2 {
    bottom: -16px; right: -24px;
    animation: float 5s ease-in-out infinite reverse;
}
.floating-card.fc-2 .icon { background: var(--brand-blue); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =====================  PLATFORMS STRIP  ===================== */
.platforms {
    padding: 40px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.platforms-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.platforms-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.platforms-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.platforms-list .plat {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.platforms-list svg {
    width: 24px; height: 24px;
    fill: var(--brand-blue);
}

/* =====================  FEATURES  ===================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--border-soft);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-brand-soft);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg { width: 28px; height: 28px; fill: currentColor; }

.feature-card:nth-child(even) .feature-icon { color: var(--brand-pink); }

/* =====================  HOW IT WORKS  ===================== */
.how-it-works {
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    counter-reset: step-counter;
}

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

.step-num {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    background: var(--gradient-brand);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(166, 30, 90, 0.2);
}

.step h3 { margin-bottom: 10px; }

/* =====================  PRICING  ===================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: #fff;
    border: 2px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.price-card.featured {
    border-color: var(--brand-pink);
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.price-card.featured::before {
    content: "RECOMMANDÉ";
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--brand-pink);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 100px;
}

.price-name { font-size: 1.1rem; font-weight: 700; color: var(--brand-blue); margin-bottom: 8px; }
.price-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}
.price .amount { font-size: 3rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.price .currency { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); }
.price .period { font-size: 0.9rem; color: var(--text-muted); margin-left: 4px; }

.price-note { font-size: 0.8rem; color: var(--text-light); margin-bottom: 24px; }

.price-features {
    list-style: none;
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.price-features li {
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    align-items: flex-start;
}

.price-features li::before {
    content: "";
    width: 18px; height: 18px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A61E5A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain; background-repeat: no-repeat;
    margin-top: 3px;
}

.price-features li.off { color: var(--text-light); }
.price-features li.off::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A94A8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

/* =====================  TESTIMONIALS  ===================== */
.testimonials {
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 14px; right: 24px;
    font-size: 5rem;
    color: var(--brand-pink);
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-stars {
    color: #F5B400;
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-soft);
}

.testimonial-author .avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author .info strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-author .info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =====================  FAQ  ===================== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover { border-color: var(--brand-blue-light); }

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 22px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
}

.faq-question::after {
    content: "+";
    font-size: 1.6rem;
    color: var(--brand-pink);
    font-weight: 400;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-answer-inner {
    padding: 0 24px 24px;
    color: var(--text-muted);
    line-height: 1.7;
}

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

/* =====================  CTA STRIP  ===================== */
.cta-strip {
    background: var(--gradient-brand);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    margin: 40px auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 250px; height: 250px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.cta-strip::after {
    content: "";
    position: absolute;
    bottom: -80px; left: -80px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.cta-strip h2 { color: #fff; position: relative; z-index: 1; }
.cta-strip p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 14px auto 28px; position: relative; z-index: 1; }

.cta-strip .btn {
    position: relative;
    z-index: 1;
    background: #fff;
    color: var(--brand-blue);
}
.cta-strip .btn:hover {
    background: var(--text-dark);
    color: #fff;
}

/* =====================  BETA FORM  ===================== */
.beta-hero {
    background: linear-gradient(135deg, var(--bg-blue-soft) 0%, rgba(166,30,90,0.05) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.beta-hero h1 { margin-bottom: 16px; }
.beta-hero p { font-size: 1.15rem; max-width: 700px; margin: 0 auto; }

.beta-form-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group label .required { color: var(--brand-pink); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border-soft);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(30, 75, 135, 0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 2px solid var(--border-soft);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.9rem;
}

.checkbox-item:hover { border-color: var(--brand-blue); background: var(--bg-blue-soft); }

.checkbox-item input[type="checkbox"] { accent-color: var(--brand-pink); width: 18px; height: 18px; cursor: pointer; }

.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.consent input[type="checkbox"] { margin-top: 4px; accent-color: var(--brand-pink); width: 18px; height: 18px; }

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 16px;
}

/* Success message */
.form-success {
    display: none;
    background: #E8F7EE;
    border: 2px solid #27AE60;
    color: #1D6A3D;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 20px;
}

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

/* =====================  PAGE HERO (simple)  ===================== */
.page-hero {
    background: linear-gradient(180deg, var(--bg-blue-soft) 0%, var(--bg-white) 100%);
    padding: 70px 0 50px;
    text-align: center;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

/* =====================  CONTACT  ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact-card .icon-circle {
    width: 60px; height: 60px;
    margin: 0 auto 18px;
    background: var(--gradient-brand-soft);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-blue);
}
.contact-card .icon-circle svg { width: 28px; height: 28px; fill: currentColor; }

.contact-card h3 { color: var(--brand-blue); }

/* =====================  FOOTER  ===================== */
.site-footer {
    background: var(--brand-blue-dark);
    color: rgba(255,255,255,0.85);
    padding: 64px 0 24px;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 16px 0;
}

.footer-brand .footer-logo {
    background: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    display: inline-block;
}

.footer-brand .footer-logo img {
    height: 40px;
    width: auto;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-col ul a:hover { color: #fff; }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background var(--transition);
}

.footer-social a:hover { background: var(--brand-pink); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

/* =====================  ANIMATIONS  ===================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================  RESPONSIVE  ===================== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .price-card.featured { transform: none; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: #fff;
        padding: 20px 24px;
        gap: 14px;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border-soft);
    }
    .nav-links.open { display: flex; }
    .nav-links a { display: block; width: 100%; padding: 10px 0; border-bottom: 1px solid var(--border-soft); }
    .nav-toggle { display: flex; }
    .nav-cta .btn-ghost { display: none; }

    .hero { padding: 60px 0 80px; }
    .device-mockup { transform: none; }
    .floating-card { display: none; }

    .form-row { grid-template-columns: 1fr; }
    .beta-form-wrap { padding: 28px 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .cta-strip { padding: 40px 24px; }

    .platforms-inner { justify-content: center; text-align: center; }
    .platforms-list { justify-content: center; }
}
