* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563EB;
    --secondary: #1E40AF;
    --accent: #F59E0B;
    --success: #10B981;
    --danger: #EF4444;
    --light-bg: #F8FAFC;
    --dark-text: #1E293B;
    --light-text: #64748B;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

/* Navigation */
nav {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--secondary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero .container {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section */
section {
    padding: 80px 20px;
}

section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.section-subtitle {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 50px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
}

/* Benefits Section */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-check {
    color: var(--success);
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-text h4 {
    margin-bottom: 8px;
    color: var(--dark-text);
    font-size: 16px;
}

.benefit-text p {
    color: var(--light-text);
    font-size: 14px;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.step h3 {
    margin-bottom: 12px;
    color: var(--dark-text);
    font-size: 18px;
}

.step p {
    color: var(--light-text);
    font-size: 14px;
}

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    background: white;
}

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.price {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary);
    margin: 20px 0;
}

.price-period {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 30px;
}

.pricing-features {
    text-align: left;
    margin: 30px 0;
}

.pricing-features li {
    list-style: none;
    padding: 10px 0;
    color: var(--light-text);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

/* Testimonials */
.testimonial {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
}

.testimonial:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.testimonial-info h4 {
    color: var(--dark-text);
    font-size: 14px;
    margin-bottom: 2px;
}

.testimonial-info p {
    color: var(--light-text);
    font-size: 12px;
}

/* Footer */
footer {
    background: #1E293B;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    color: #94A3B8;
    font-size: 14px;
}

/* Light Background */
.light-bg {
    background: var(--light-bg);
}

.section-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    nav ul {
        gap: 15px;
        font-size: 14px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 50px 20px;
    }

    section h2 {
        font-size: 28px;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: var(--secondary);
}

/* Badge */
.badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================
   HAMBURGER MENU
   ======================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        gap: 0;
        z-index: 180;
        padding: 80px 0 20px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    nav ul.open {
        right: 0;
    }

    nav ul li a {
        display: block;
        padding: 15px 30px;
        font-size: 16px;
        border-bottom: 1px solid #F1F5F9;
    }

    nav ul li:last-child a {
        margin: 20px 30px;
        border-radius: 8px;
        border-bottom: none;
        text-align: center;
    }

    .nav-overlay {
        display: block;
    }
}

/* ========================
   SCROLL ANIMATIONS
   ======================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.from-left {
    transform: translateX(-40px);
}

.reveal.from-right {
    transform: translateX(40px);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========================
   ACTIVE NAV LINK
   ======================== */
nav a.active-page {
    color: var(--primary);
    font-weight: 700;
}

/* ========================
   IMPROVED HERO VISUALS
   ======================== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #34D399;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ========================
   DASHBOARD MOCKUP
   ======================== */
.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.mockup-bar {
    background: #1E293B;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot.red { background: #EF4444; }
.mockup-dot.yellow { background: #F59E0B; }
.mockup-dot.green { background: #10B981; }

.mockup-url {
    flex: 1;
    background: #334155;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    color: #94A3B8;
    margin: 0 15px;
}

.mockup-body {
    padding: 24px;
    background: #F8FAFC;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.mockup-stat-card {
    background: white;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
}

.mockup-stat-label {
    font-size: 11px;
    color: #94A3B8;
    margin-bottom: 6px;
    font-weight: 500;
}

.mockup-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #1E293B;
}

.mockup-stat-change {
    font-size: 11px;
    color: #10B981;
    font-weight: 600;
    margin-top: 4px;
}

.mockup-chart-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
}

.mockup-chart-box {
    background: white;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    padding: 16px;
}

.mockup-chart-title {
    font-size: 12px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 12px;
}

.mockup-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.mockup-bar-item {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, #2563EB, #60A5FA);
}

.mockup-pie-visual {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#10B981 0% 72%, #F59E0B 72% 87%, #EF4444 87% 100%);
    margin: 10px auto;
}

.mockup-pie-legend {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.mockup-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #64748B;
}

.mockup-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================
   FLOATING STATS
   ======================== */
.hero-float-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.float-card {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px 24px;
    text-align: center;
    color: white;
    animation: floatCard 3s ease-in-out infinite;
}

.float-card:nth-child(2) { animation-delay: 0.7s; }
.float-card:nth-child(3) { animation-delay: 1.4s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-card-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.float-card-label {
    font-size: 12px;
    opacity: 0.85;
}

/* ========================
   IMPROVED CARDS & SECTIONS
   ======================== */
.section-tag {
    display: inline-block;
    background: #EFF6FF;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.divider-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 16px 0 30px;
}

.divider-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* ========================
   BACK TO TOP BUTTON
   ======================== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

#backToTop.visible {
    opacity: 1;
    transform: translateY(0);
}

#backToTop:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5);
}

/* ========================
   ANNOUNCEMENT BANNER
   ======================== */
.announcement-bar {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.announcement-bar a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.announcement-bar a:hover {
    text-decoration: underline;
}

.announcement-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0 5px;
}

.announcement-close:hover {
    opacity: 1;
}

/* ========================
   TRUST LOGOS STRIP
   ======================== */
.trust-strip {
    background: white;
    padding: 30px 20px;
    border-bottom: 1px solid #E2E8F0;
}

.trust-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-strip-label {
    font-size: 13px;
    color: #94A3B8;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-logo-placeholder {
    height: 32px;
    padding: 0 20px;
    border-radius: 6px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid #E2E8F0;
}

/* ========================
   MOBILE IMPROVEMENTS
   ======================== */
@media (max-width: 768px) {
    .mockup-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mockup-chart-row {
        grid-template-columns: 1fr;
    }

    .hero-float-cards {
        gap: 12px;
    }

    .float-card {
        padding: 12px 18px;
    }

    .float-card-value {
        font-size: 20px;
    }

    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}
