 /* ═══════════════════════════════════════════════════════
       CSS VARIABLES & RESET
    ═══════════════════════════════════════════════════════ */
:root {
    --navy:     #252F52;
    --blue:     #4a6cf7;
    --blue-lt:  #6b8cff;
    --white:    #ffffff;
    --off:      #f8f9fc;
    --text:     #1a1f36;
    --muted:    #6c757d;
    --border:   rgba(37,47,82,0.08);
    --shadow:   0 4px 24px rgba(37,47,82,0.08);
    --shadow-lg:0 20px 60px rgba(37,47,82,0.14);
    --radius:   20px;
}
[data-theme="dark"] {
    --off:      #0d1117;
    --text:     #e9ecef;
    --muted:    #8b95a1;
    --border:   rgba(255,255,255,0.07);
    --shadow:   0 4px 24px rgba(0,0,0,0.3);
    --shadow-lg:0 20px 60px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }

/* ─── ANNOUNCE BAR ─── */
.sky-announce-bar {
    position: fixed;
    top: 64px; left: 0; right: 0;
    z-index: 99998;
    background: linear-gradient(90deg, #1a1f36 0%, #252F52 50%, #2a3870 100%);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 9px 20px;
    transition: transform 0.35s ease, opacity 0.35s ease;
    will-change: transform;
}
.sky-announce-bar.hidden { transform: translateY(-110%); opacity: 0; pointer-events: none; }
.sky-announce-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sky-announce-content { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: center; flex-wrap: wrap; }
.sky-announce-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; animation: annDotPulse 2s ease-in-out infinite; }
@keyframes annDotPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.7; } }
.sky-announce-text { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.sky-announce-cta {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.75rem; font-weight: 700; color: white;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px; padding: 3px 12px; text-decoration: none;
    transition: background 0.2s, transform 0.2s; white-space: nowrap;
}
.sky-announce-cta:hover { background: rgba(255,255,255,0.22); color: white; transform: translateX(2px); }
.sky-announce-cta i { font-size: 0.65rem; }
.sky-announce-close {
    width: 28px; height: 28px; border-radius: 8px; border: none;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 0.75rem; flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.sky-announce-close:hover { background: rgba(255,255,255,0.18); color: white; }

/* ─── HERO ─── */
.sky-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--white);
    padding: 7rem 0 4rem;
    transition: padding-top 0.35s ease;
}
body:has(#announceBar:not(.hidden)) .sky-hero { padding-top: 8.5rem; }
[data-theme="dark"] .sky-hero { background: #090d1a; }

.hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
            linear-gradient(rgba(37,47,82,0.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(37,47,82,0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
[data-theme="dark"] .hero-grid-bg {
    background-image:
            linear-gradient(rgba(74,108,247,0.07) 1px, transparent 1px),
            linear-gradient(90deg, rgba(74,108,247,0.07) 1px, transparent 1px);
}

.hero-glow {
    position: absolute; top: -10%; right: -5%;
    width: 680px; height: 680px;
    background: radial-gradient(ellipse, rgba(74,108,247,0.13) 0%, transparent 65%);
    pointer-events: none;
    animation: glowFloat 8s ease-in-out infinite;
    will-change: transform;
}
[data-theme="dark"] .hero-glow { background: radial-gradient(ellipse, rgba(74,108,247,0.22) 0%, transparent 65%); }
.hero-glow-2 {
    position: absolute; bottom: 0; left: -8%;
    width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(37,47,82,0.07) 0%, transparent 65%);
    pointer-events: none;
    animation: glowFloat 11s ease-in-out infinite reverse;
    will-change: transform;
}
@keyframes glowFloat {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-30px) scale(1.04); }
}

.hero-announce {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(74,108,247,0.07); border: 1px solid rgba(74,108,247,0.18);
    border-radius: 50px; padding: 0.35rem 1rem 0.35rem 0.4rem;
    font-size: 0.78rem; font-weight: 600; color: var(--navy);
    margin-bottom: 1.6rem; text-decoration: none;
    transition: all 0.25s; width: fit-content;
}
.hero-announce:hover { background: rgba(74,108,247,0.12); color: var(--navy); transform: translateY(-2px); }
.hero-announce .pill {
    background: var(--blue); color: white; border-radius: 50px;
    padding: 0.15rem 0.7rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em;
}
[data-theme="dark"] .hero-announce { color: #c7d2fe; border-color: rgba(74,108,247,0.3); background: rgba(74,108,247,0.1); }

.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 800; line-height: 1.05; letter-spacing: -0.02em;
    color: var(--text); margin-bottom: 1.4rem;
}
.hero-title .accent {
    position: relative; display: inline-block;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
[data-theme="dark"] .hero-title .accent {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text; background-clip: text;
}
.hero-title .accent::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--blue));
    border-radius: 2px; transform: scaleX(0); transform-origin: left;
    animation: underlineGrow 0.9s 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes underlineGrow { to { transform: scaleX(1); } }

.hero-sub { font-size: 1.1rem; color: var(--muted); line-height: 1.75; max-width: 520px; margin-bottom: 2.2rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.hero-badge-item {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: var(--off); border: 1px solid var(--border);
    border-radius: 50px; padding: 0.35rem 0.9rem;
    font-size: 0.78rem; font-weight: 600; color: var(--text);
}
[data-theme="dark"] .hero-badge-item { background: rgba(255,255,255,0.04); }
.hero-badge-item .dot {
    width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
    box-shadow: 0 0 6px rgba(34,197,94,0.6);
    animation: pulse-status 2s infinite; flex-shrink: 0;
}
@keyframes pulse-status {
    0%,100% { box-shadow: 0 0 6px rgba(34,197,94,0.6); transform: scale(1); }
    50%      { box-shadow: 0 0 12px rgba(34,197,94,0.9); transform: scale(1.15); }
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: var(--navy); color: white;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem;
    border-radius: 50px; padding: 0.85rem 2rem; text-decoration: none;
    position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(37,47,82,0.3);
}
.btn-hero-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--blue) 0%, #6b8cff 100%);
    opacity: 0; transition: opacity 0.3s;
}
.btn-hero-primary:hover { color: white; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,47,82,0.35); }
.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-primary span, .btn-hero-primary i { position: relative; z-index: 1; }

.btn-hero-ghost {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: transparent; color: var(--navy);
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem;
    border: 2px solid rgba(37,47,82,0.2); border-radius: 50px;
    padding: 0.8rem 1.8rem; text-decoration: none; transition: all 0.25s;
}
.btn-hero-ghost:hover { border-color: var(--navy); background: var(--navy); color: white; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,47,82,0.2); }
[data-theme="dark"] .btn-hero-ghost { color: #c7d2fe; border-color: rgba(199,210,254,0.25); }
[data-theme="dark"] .btn-hero-ghost:hover { background: #4a6cf7; border-color: #4a6cf7; color: white; }

.hero-img-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-wrap img {
    position: relative; z-index: 2;
    animation: heroFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(37,47,82,0.2));
    will-change: transform;
}
@keyframes heroFloat {
    0%,100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-18px) rotate(1deg); }
}
.hero-ring { position: absolute; width: 440px; height: 440px; border-radius: 50%; border: 1px solid rgba(74,108,247,0.12); animation: ringPulse 4s ease-in-out infinite; }
.hero-ring-2 { position: absolute; width: 340px; height: 340px; border-radius: 50%; border: 1px solid rgba(74,108,247,0.08); animation: ringPulse 4s ease-in-out infinite 0.5s; }
@keyframes ringPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.04); opacity: 0.6; } }

.scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); opacity: 0.6; animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
}

/* ─── SECTIONS COMMUNES ─── */
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(74,108,247,0.08); border: 1px solid rgba(74,108,247,0.15);
    border-radius: 50px; padding: 0.3rem 1rem;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--blue); margin-bottom: 1rem;
}

/* ─── WHY SECTION ─── */
.why-section { padding: 100px 0; background: var(--off); position: relative; }
[data-theme="dark"] .why-section { background: #0d1117; }

.why-card {
    background: white; border-radius: var(--radius); padding: 2.2rem;
    border: 1px solid var(--border); box-shadow: var(--shadow);
    height: 100%; position: relative; overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
[data-theme="dark"] .why-card { background: #161b2e; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--blue));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
    width: 60px; height: 60px; border-radius: 16px;
    background: rgba(37,47,82,0.06);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.4rem;
    transition: transform 0.35s cubic-bezier(0.68,-0.55,0.27,1.55);
}
[data-theme="dark"] .why-icon { background: rgba(74,108,247,0.12); }
.why-card:hover .why-icon { transform: scale(1.1) rotate(6deg); }
.why-icon img { width: 34px; height: 34px; object-fit: contain; }
.why-card h5 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.7rem; }
.why-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ─── FONCTIONNALITÉS ─── */
.fonct-section { padding: 100px 0; background: white; position: relative; }
[data-theme="dark"] .fonct-section { background: #090d1a; }

.fonct-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.fonct-card-rpg { grid-column: span 2; }
@media (max-width: 1024px) { .fonct-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .fonct-grid { grid-template-columns: 1fr; } .fonct-card-rpg { grid-column: span 1; } }

.fonct-card {
    position: relative; border-radius: 18px; padding: 26px 22px;
    background: var(--off); border: 1.5px solid var(--border);
    text-decoration: none !important; display: flex; flex-direction: column; gap: 12px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s, border-color 0.3s;
}
[data-theme="dark"] .fonct-card { background: #161b2e; }
.fonct-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(74,108,247,0.25); }
.fonct-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--fonct-color, var(--navy));
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
    border-radius: 18px 18px 0 0;
}
.fonct-card:hover::before { transform: scaleX(1); }
.fonct-icon {
    width: 50px; height: 50px; border-radius: 14px;
    background: var(--fonct-bg, rgba(37,47,82,0.07));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--fonct-color, var(--navy));
    transition: transform 0.35s cubic-bezier(0.68,-0.55,0.27,1.55);
}
.fonct-card:hover .fonct-icon { transform: scale(1.12) rotate(6deg); }
.fonct-title { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); display: flex; align-items: center; justify-content: space-between; }
.fonct-arrow { opacity: 0; transform: translateX(-6px); transition: opacity 0.2s, transform 0.2s; color: var(--fonct-color, var(--navy)); font-size: 12px; }
.fonct-card:hover .fonct-arrow { opacity: 1; transform: translateX(0); }
.fonct-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
.fonct-count { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 50px; background: var(--fonct-bg, rgba(37,47,82,0.07)); color: var(--fonct-color, var(--navy)); width: fit-content; }

.fonct-card-rpg .fonct-card { background: linear-gradient(135deg, #1a1f36 0%, var(--navy) 55%, #2a3870 100%); border-color: rgba(255,255,255,0.08); flex-direction: row; align-items: flex-start; gap: 18px; padding: 30px 26px; }
[data-theme="dark"] .fonct-card-rpg .fonct-card { background: linear-gradient(135deg, #0b0f20 0%, #161b2e 55%, var(--navy) 100%); }
.fonct-card-rpg .fonct-title { color: #fff; font-size: 1.15rem; }
.fonct-card-rpg .fonct-desc { color: rgba(255,255,255,0.65); }
.fonct-card-rpg .fonct-count { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.fonct-card-rpg .fonct-icon { background: rgba(255,255,255,0.1); color: #fff; width: 58px; height: 58px; font-size: 24px; border-radius: 15px; }
.fonct-card-rpg .fonct-arrow { color: rgba(255,255,255,0.8); }
.fonct-card-rpg .fonct-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.35); border-color: rgba(255,255,255,0.15); }

/* ─── STATS ─── */
.stats-unified-card {
    background: linear-gradient(135deg, #1a1f36 0%, #252F52 60%, #2a3870 100%);
    border-radius: 24px; padding: 48px 40px; position: relative; overflow: hidden;
    box-shadow: 0 24px 60px rgba(37,47,82,0.25);
}
.stats-unified-card::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px; pointer-events: none;
}
.stats-unified-card::after {
    content: ''; position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(74,108,247,0.35) 0%, transparent 65%);
    pointer-events: none;
}
.stats-unified-inner { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; position: relative; z-index: 1; }
@media (max-width: 768px) { .stats-unified-inner { grid-template-columns: 1fr 1fr; gap: 32px 16px; } .stat-sep { display: none; } .stats-unified-card { padding: 36px 24px; } }
.stat-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 8px; }
.stat-item-icon { font-size: 1.3rem; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.stats-unified-card .stat-num { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: white; line-height: 1; display: block; }
.stats-unified-card .stat-num .plus { color: #6b8cff; }
.stats-unified-card .stat-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); }
.stat-sep { width: 1px; height: 60px; background: rgba(255,255,255,0.1); align-self: center; margin: 0 20px; }

/* ─── FEATURE SHOWCASE ─── */
.feature-showcase { padding: 100px 0; background: var(--off); }
[data-theme="dark"] .feature-showcase { background: #0d1117; }
.feature-row { display: flex; align-items: center; gap: 4rem; margin-bottom: 5rem; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { flex-direction: row-reverse; }
@media (max-width: 768px) { .feature-row { flex-direction: column !important; gap: 2.5rem; } }
.feature-media { flex: 0 0 auto; width: 42%; }
.feature-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.feature-content { flex: 1; }
.feature-tag { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 50px; padding: 0.25rem 0.85rem; margin-bottom: 1.1rem; }
.feature-content h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--text); line-height: 1.15; margin-bottom: 1rem; }
.feature-content p { font-size: 0.93rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.4rem; }
.feature-points { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.6rem; }
.feature-point { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.85rem; color: var(--muted); }
.feature-point i { font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }
.btn-feature { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700; border: 2px solid var(--navy); border-radius: 50px; padding: 0.65rem 1.5rem; text-decoration: none; color: var(--navy); transition: all 0.25s; }
.btn-feature:hover { background: var(--navy); color: white; transform: translateY(-2px); }
[data-theme="dark"] .btn-feature { color: #c7d2fe; border-color: rgba(199,210,254,0.3); }
[data-theme="dark"] .btn-feature:hover { background: var(--blue); border-color: var(--blue); color: white; }

/* ─── PARTENAIRES ─── */
.partners-section { padding: 70px 0; background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
[data-theme="dark"] .partners-section { background: #090d1a; }
.partners-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); text-align: center; margin-bottom: 2rem; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { padding: 100px 0; background: var(--off); }
[data-theme="dark"] .testimonials-section { background: #0d1117; }
.testi-card { background: white; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow); height: 100%; display: flex; flex-direction: column; gap: 1rem; transition: transform 0.25s, box-shadow 0.25s; }
[data-theme="dark"] .testi-card { background: #161b2e; }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #f59e0b; font-size: 0.8rem; letter-spacing: 0.1em; }
.testi-text { font-size: 0.88rem; color: var(--muted); line-height: 1.7; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.7rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: white; flex-shrink: 0; }
.testi-name { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.testi-source { font-size: 0.72rem; color: var(--muted); }

/* ─── GUESTBOOK ─── */
.guestbook-section { padding: 100px 0; background: white; }
[data-theme="dark"] .guestbook-section { background: #090d1a; }
.guestbook-card { background: var(--off); border-radius: var(--radius); padding: 1.8rem; border: 1px solid var(--border); border-left: 4px solid var(--navy); transition: transform 0.25s, box-shadow 0.25s; height: 100%; }
[data-theme="dark"] .guestbook-card { background: #161b2e; border-left-color: var(--blue); }
.guestbook-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.guestbook-card .gc-author { font-weight: 700; color: var(--navy); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
[data-theme="dark"] .guestbook-card .gc-author { color: var(--blue-lt); }
.guestbook-card .gc-date { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.7rem; }
.guestbook-card .gc-msg { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ─── CTA CARD ─── */
.cta-card-unified { background: linear-gradient(135deg, #1a1f36 0%, #252F52 55%, #2a3870 100%); border-radius: 28px; padding: 64px 48px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 32px 80px rgba(37,47,82,0.3); }
.cta-card-deco { position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(74,108,247,0.4) 0%, transparent 60%); pointer-events: none; }
.cta-card-unified::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.cta-card-content { position: relative; z-index: 1; }
.cta-card-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; padding: 0.3rem 1rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.cta-card-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 1rem; }
.cta-card-sub { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 2.2rem; line-height: 1.7; }
.cta-card-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.8rem; }
.btn-cta-main { display: inline-flex; align-items: center; gap: 0.55rem; background: white; color: #252F52; font-weight: 700; font-size: 0.95rem; border-radius: 50px; padding: 0.9rem 2.2rem; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: transform 0.25s, box-shadow 0.25s; }
.btn-cta-main:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.3); color: #252F52; }
.btn-cta-secondary { display: inline-flex; align-items: center; gap: 0.55rem; border: 2px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); font-weight: 700; font-size: 0.95rem; border-radius: 50px; padding: 0.85rem 2rem; text-decoration: none; transition: all 0.25s; }
.btn-cta-secondary:hover { border-color: white; color: white; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.cta-card-reassurance { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin: 0; }
.cta-card-reassurance i { color: rgba(255,255,255,0.5); margin-right: 2px; }
@media (max-width: 576px) { .cta-card-unified { padding: 44px 24px; } .cta-card-btns { flex-direction: column; align-items: center; } .btn-cta-main, .btn-cta-secondary { width: 100%; justify-content: center; } }

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MISC ─── */
.ad-notice { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 0.5rem; opacity: 0.6; }
.view-all-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--navy); text-decoration: none; border: 1.5px solid rgba(37,47,82,0.18); border-radius: 50px; padding: 0.6rem 1.4rem; transition: all 0.25s; }
.view-all-link:hover { background: var(--navy); color: white; transform: translateY(-2px); }
[data-theme="dark"] .view-all-link { color: #c7d2fe; border-color: rgba(199,210,254,0.25); }
[data-theme="dark"] .view-all-link:hover { background: var(--blue); border-color: var(--blue); color: white; }

@media (max-width: 576px) {
    .sky-announce-text { font-size: 0.72rem; }
    .sky-announce-bar  { padding: 8px 14px; }
}