/* ===================================================================
   AssetPro — Premium Stylesheet
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1e293b;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: opacity 0.2s;
}

.logo:hover { opacity: 0.8; }

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

.nav-menu a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    color: #0f172a;
    background: rgba(15,23,42,0.04);
}

.cta-button {
    background: #0f172a !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.25s cubic-bezier(.4,0,.2,1) !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.cta-button:hover {
    background: #1e293b !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15,23,42,0.15) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
    background: none;
    border: none;
}
.hamburger:hover { background: rgba(0,0,0,0.04); }
.hamburger span {
    width: 22px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f0f9ff 100%);
    padding: 100px 0 90px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(15,23,42,0.05);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    margin-bottom: 28px;
}
.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: #64748b;
    max-width: 680px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 8px rgba(15,23,42,0.12), 0 1px 2px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.cta-button-large::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button-large:hover::after { transform: translateX(100%); }

.cta-button-large:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15,23,42,0.2), 0 2px 4px rgba(0,0,0,0.06);
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    color: #475569;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.cta-button-secondary:hover {
    color: #0f172a;
    background: rgba(255,255,255,0.95);
    border-color: rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.hero-trust-item svg {
    color: #94a3b8;
}

/* ===== SECTIONS ===== */
.section-light {
    background: #f8fafc;
    padding: 80px 0;
}

.section-white {
    background: #ffffff;
    padding: 80px 0;
}

.section-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    color: #0f172a;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-dark h2 {
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 700;
}

p {
    margin-bottom: 12px;
    color: #475569;
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

.section-cta-text {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    padding: 20px 28px;
    background: rgba(15,23,42,0.03);
    border-radius: 14px;
    border: 1px solid rgba(15,23,42,0.06);
}

/* ===== GRID ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 0;
}

/* ===== CARDS ===== */
.card {
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    position: relative;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.card-icon.blue { background: rgba(59,130,246,0.08); }
.card-icon.purple { background: rgba(139,92,246,0.08); }
.card-icon.emerald { background: rgba(16,185,129,0.08); }
.card-icon.amber { background: rgba(245,158,11,0.08); }
.card-icon.rose { background: rgba(244,63,94,0.08); }
.card-icon.cyan { background: rgba(6,182,212,0.08); }

.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { font-size: 15px; color: #64748b; line-height: 1.65; margin-bottom: 0; }

/* ===== FEATURES ===== */
.feature {
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background: #ffffff;
}

.feature:hover {
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 20px;
}

.feature h3 { font-size: 17px; }
.feature p { font-size: 15px; color: #64748b; margin-bottom: 0; }

/* ===== STEPS / TIMELINE ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 0;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(15,23,42,0.08), rgba(15,23,42,0.15), rgba(15,23,42,0.08));
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 auto 18px;
    position: relative;
    box-shadow: 0 4px 16px rgba(15,23,42,0.15);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(15,23,42,0.2);
}

.step h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
}

.step p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 0;
}

/* ===== DATA SECURITY ===== */
.data-security {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
}

.security-item {
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.security-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

.security-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    background: rgba(15,23,42,0.04);
}

.security-item h3 { font-size: 17px; }
.security-item p { font-size: 14px; color: #64748b; margin-bottom: 0; }

/* ===== CONTACT ===== */
.contact-info {
    text-align: center;
    font-size: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.contact-card-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.contact-card a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.contact-card a:hover { opacity: 0.8; }

.contact-card p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-top: 6px;
    margin-bottom: 0;
}

.section-dark .contact-info p {
    color: rgba(255,255,255,0.7);
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: border-color 0.2s;
}

.contact-info a:hover { border-color: rgba(255,255,255,0.7); }

.contact-company {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-company p {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    margin-bottom: 4px;
}

.response-time {
    margin-top: 20px;
    font-style: normal;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 100px;
    font-size: 13px;
    color: #4ade80;
    font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: #ffffff;
    padding: 56px 0 28px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 28px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

footer > .container > p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    text-align: center;
}

/* ===== MISC ===== */
.warning-box {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 24px;
    margin-top: 30px;
    border-radius: 12px;
}

.faq {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(0,0,0,0.1);
}

.faq-item h3 { margin-bottom: 10px; }

/* ===== FAQ ACCORDION ===== */
.faq-accordion {
    margin-top: 16px;
}

.faq-accordion details {
    background: #ffffff;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.2s ease;
    overflow: hidden;
}

.faq-accordion details:hover {
    border-color: rgba(0,0,0,0.12);
}

.faq-accordion details[open] {
    border-color: rgba(15,23,42,0.12);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.faq-accordion summary {
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
}

.faq-accordion summary::-webkit-details-marker { display: none; }

.faq-accordion summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: #94a3b8;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-accordion details[open] summary::after {
    content: '\2212';
    color: #0f172a;
}

.faq-accordion summary:hover {
    background: rgba(15,23,42,0.02);
}

.faq-accordion .faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: gap 0.2s ease;
}
.link-arrow:hover { gap: 10px; }

/* ===== SUBPAGE STYLES ===== */
.hero-subpage {
    padding: 60px 0 50px !important;
}

.hero-subpage h1 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 0;
}

.subpage-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.subpage-content h2 {
    text-align: left;
    font-size: clamp(22px, 3vw, 28px);
    margin-top: 48px;
    margin-bottom: 16px;
}

.subpage-content h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 17px;
}

.subpage-content p {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

.subpage-content ul,
.subpage-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.subpage-content li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

.subpage-content li strong {
    color: #0f172a;
}

.subpage-content a {
    color: #0f172a;
    text-decoration: none;
    border-bottom: 1px solid #cbd5e1;
    transition: border-color 0.2s;
}

.subpage-content a:hover {
    border-color: #0f172a;
}
.subpage-content .cta-button-large {
    color: #ffffff;
    border-bottom: none;
}
.subpage-content .cta-button-large:hover {
    color: #ffffff;
    border-bottom: none;
}

.subpage-cta {
    margin: 56px 0;
    padding: 48px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #f0f9ff 100%);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
}

.subpage-cta h2 {
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 12px;
    font-size: 24px !important;
}

.subpage-cta p {
    margin-bottom: 28px;
    color: #64748b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(3, 1fr); }
    .steps::before { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    }

    .nav-menu.active { display: flex; }

    .nav-menu li { width: 100%; }
    .nav-menu a {
        display: block;
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 15px;
    }

    .hamburger { display: flex; }

    .hero {
        padding: 64px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .grid-3, .grid-2, .data-security {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-light, .section-white, .section-dark {
        padding: 56px 0;
    }

    h2 { font-size: 28px; }

    .hero-subpage {
        padding: 40px 0 36px !important;
    }

    .subpage-cta {
        padding: 36px 24px;
        margin: 40px 0;
    }
}

@media (max-width: 480px) {
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
}
