/*
Theme Name: Sprinta Theme
Author: Sprinta Creatives
Description: Multi-page marketing & technology theme for Sprinta
Version: 2.0
*/

body {
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header nav {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 1024px) {
    #site-header nav { padding: 16px 32px; }
}
.header-logo {
    height: 28px !important;
    width: auto !important;
    max-height: 28px !important;
    object-fit: contain;
    display: block;
}
@media (min-width: 768px) {
    .header-logo {
        height: 32px !important;
        max-height: 32px !important;
    }
}
#site-header .btn-primary {
    white-space: nowrap !important;
    padding: 10px 28px !important;
    font-size: 14px;
    border-radius: 8px;
}
.footer-logo {
    height: 28px !important;
    width: auto !important;
    max-height: 28px !important;
    object-fit: contain;
    display: block;
}

/* ============================================================
   GRADIENT & TEXT EFFECTS
   ============================================================ */
.gradient-text-amber {
    background-image: linear-gradient(135deg, #FBB03B, #F59E0B, #FCC567);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-blue {
    background-image: linear-gradient(135deg, #38B2E0, #2090B8, #5CC8E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   BACKGROUNDS & PATTERNS
   ============================================================ */
.dot-pattern {
    background-image: radial-gradient(circle, rgba(27,73,98,0.07) 1px, transparent 1px);
    background-size: 24px 24px;
}
.grid-pattern {
    background-image:
        linear-gradient(rgba(27,73,98,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27,73,98,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}
.dark-gradient {
    background: linear-gradient(135deg, #0A1628 0%, #1B4962 50%, #0F2D3D 100%);
}
.dark-gradient-subtle {
    background: linear-gradient(180deg, #0F2D3D 0%, #0A1628 100%);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0; transform: translateX(-30px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0; transform: translateX(30px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger-children > * {
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.14s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.26s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.32s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.38s; }
.stagger-children.visible > * { opacity: 1; transform: translateY(0); }

/* ============================================================
   CARD EFFECTS
   ============================================================ */
.service-card {
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    border: 1px solid #E8EEF1;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px -12px rgba(27,73,98,0.12);
    border-color: #B3DBE9;
}
.service-card .card-icon {
    transition: all 0.3s ease;
}
.service-card:hover .card-icon {
    background-color: #1B4962;
}
.service-card:hover .card-icon i,
.service-card:hover .card-icon svg {
    color: #ffffff;
}

.glass-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
}

.product-card {
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    border: 1px solid #E8EEF1;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -8px rgba(27,73,98,0.1);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    background: linear-gradient(135deg, #FBB03B, #F59E0B);
    color: #0A1628;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(251,176,59,0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251,176,59,0.35);
}
.btn-dark {
    background: #1B4962;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(27,73,98,0.2);
}
.btn-dark:hover {
    background: #0F2D3D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27,73,98,0.35);
}
.btn-outline {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}
.btn-outline-dark {
    background: transparent;
    color: #1B4962;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    border: 1.5px solid #B3DBE9;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.btn-outline-dark:hover {
    background: #F0F7FA;
    border-color: #1B4962;
    transform: translateY(-2px);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer.open { max-height: 500px; }
.faq-chevron { transition: transform 0.3s ease; }
.faq-chevron.rotated { transform: rotate(180deg); }

/* ============================================================
   COUNTER & MONO
   ============================================================ */
.counter-value { font-variant-numeric: tabular-nums; }
.font-mono-num { font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace; }

/* ============================================================
   PROCESS STEPS CONNECTOR
   ============================================================ */
.step-connector {
    position: relative;
}
.step-connector::after {
    content: '';
    position: absolute;
    top: 28px; left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: linear-gradient(90deg, rgba(27,73,98,0.15), rgba(27,73,98,0.35));
}
@media (max-width: 768px) {
    .step-connector::after { display: none; }
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(27,73,98,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-input {
    width: 100%;
    padding: 14px 18px;
    background: #F8FAFB;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.form-input:focus {
    outline: none;
    border-color: #1B4962;
    box-shadow: 0 0 0 3px rgba(27,73,98,0.1);
    background: #ffffff;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
    transition: all 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -8px rgba(27,73,98,0.1);
}

/* ============================================================
   BADGE
   ============================================================ */
.badge-live {
    background: #DEF7EC;
    color: #03543F;
}
.badge-soon {
    background: #F0F7FA;
    color: #1B4962;
}

/* ============================================================
   MISC
   ============================================================ */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
[v-cloak] { display: none; }
