/* ============================================================
   BASE & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

section, header, footer, nav {
    max-width: 100vw;
}

/* Premium clean aesthetic background */
body {
    background-color: #fafafa;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.text-gradient-blue {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, #0284c7 0%, #0c4a6e 100%);
}

.text-gradient-warm {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Replaced garish orange with a classy deep azure gradient */
    background-image: linear-gradient(135deg, #2563eb 0%, #0369a1 100%);
}

/* ============================================================
   PRIMARY CTA BUTTON — Sleek & Premium
   ============================================================ */
.skeuo-btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(2, 132, 199, 0.3);
    border-radius: 0.75rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
}

.skeuo-btn:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.25);
    transform: translateY(-2px);
}

.skeuo-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.2);
}

/* ============================================================
   SECONDARY BUTTON — Clean Outlined
   ============================================================ */
.skeuo-btn-secondary {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.skeuo-btn-secondary:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* ============================================================
   GLASS NAVIGATION PANEL
   ============================================================ */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

/* ============================================================
   CARDS
   ============================================================ */
.skeuo-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skeuo-card-interactive {
    cursor: pointer;
}

.skeuo-card-interactive:hover {
    border-color: #e0f2fe;
    box-shadow: 0 12px 24px -4px rgba(2, 132, 199, 0.06), 0 4px 6px -2px rgba(2, 132, 199, 0.03);
    transform: translateY(-3px);
}

/* ============================================================
   SECTION HEADER BADGE
   ============================================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f9ff;
    color: #0284c7;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid #e0f2fe;
}

/* ============================================================
   HERO VISUAL FRAME
   ============================================================ */
.display-screen {
    position: relative;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.display-screen img {
    border-radius: 1.5rem;
}

/* ============================================================
   METALLIC GUARANTEE STAMP (Refined)
   ============================================================ */
.guarantee-badge {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    box-shadow: 0 8px 16px -2px rgba(2, 132, 199, 0.3);
    color: #ffffff;
    font-family: inherit;
    position: relative;
}

/* ============================================================
   STAT COUNTER CARDS
   ============================================================ */
.stat-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #f8fafc;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    text-align: center;
    padding: 1.25rem 1rem;
}

/* ============================================================
   SOCIAL PROOF MARQUEE TICKER
   ============================================================ */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-top: 1px solid #f8fafc;
    border-bottom: 1px solid #f8fafc;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 34s linear infinite;
}

.marquee-items {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0 1.25rem;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   PRICING RIBBON
   ============================================================ */
.pricing-ribbon {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 1.15rem;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ============================================================
   MOBILE DRAWER MENU
   ============================================================ */
#mobile-menu-overlay {
    transition: opacity 0.3s ease;
}

#mobile-menu-drawer {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-toggle:checked ~ .faq-content {
    max-height: 500px;
}

.faq-toggle:checked ~ label .icon-plus {
    transform: rotate(45deg);
    color: #0284c7;
}

.icon-plus {
    transition: transform 0.3s ease, color 0.2s ease;
    flex-shrink: 0;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #64748b;
    font-size: 0.875rem;
}

/* ============================================================
   STEP CIRCLES
   ============================================================ */
.step-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0f172a;
    border-top: 1px solid #1e293b;
}

.cta-pill-mobile {
    animation: slideUpFade 0.5s 0.3s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
