/* ===================================
   HEADER FIXED
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 40px;
}

.header-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #08008e;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0049ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0049ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0049ff 0%, #2ac2f3 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 73, 255, 0.2);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 73, 255, 0.3);
    color: white;
}

.btn-header ion-icon {
    font-size: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #08008e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0049ff 0%, #020bbb 50%, #08008e 100%);
    padding-top: 80px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(42, 194, 243, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(42, 194, 243, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
}

.hero-badge ion-icon {
    font-size: 20px;
    color: #2ac2f3;
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    color: white;
    margin-bottom: 28px;
}

.gradient-text {
    background: linear-gradient(135deg, #2ac2f3 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    max-width: 90%;
}

.hero-badges-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 44px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.hero-badge-item ion-icon {
    font-size: 24px;
    color: #2ac2f3;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #0049ff;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #0049ff;
}

.btn-hero-primary ion-icon {
    font-size: 22px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-hero-secondary ion-icon {
    font-size: 22px;
}

.hero-trust-badges {
    display: flex;
    gap: 28px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}

.trust-item ion-icon {
    font-size: 22px;
    color: #2ac2f3;
    flex-shrink: 0;
}

/* Dashboard Card */
.dashboard-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.card-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.card-title-text {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.metric-info {
    margin-bottom: 28px;
}

.metric-label-text {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
    font-weight: 500;
}

.metric-value-text {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #0049ff;
    margin-bottom: 8px;
}

.metric-trend-up {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    background: #e8f5e9;
    color: #2e7d32;
}

.chart-mini {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 90px;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, #2ac2f3 0%, #0049ff 100%);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.bar:hover {
    opacity: 0.8;
    transform: translateY(-4px);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
    fill: #ffffff;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    background: white;
    padding: 48px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 73, 255, 0.15);
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #0049ff 0%, #2ac2f3 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-wrapper ion-icon {
    font-size: 36px;
    color: white;
}

.stat-number {
    font-size: 52px;
    font-weight: 900;
    color: #0049ff;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-text {
    font-size: 17px;
    color: #666;
    font-weight: 600;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header-center {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
    color: #0049ff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-heading {
    font-size: 52px;
    font-weight: 900;
    color: #08008e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subheading {
    font-size: 21px;
    color: #666;
    line-height: 1.6;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-section {
    padding: 120px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.feature-box {
    background: white;
    padding: 44px 36px;
    border-radius: 24px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #2ac2f3;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 73, 255, 0.12);
}

.feature-icon-box {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.feature-icon-box ion-icon {
    font-size: 44px;
    color: white;
}

.feature-icon-box.gradient-1 { background: linear-gradient(135deg, #0049ff 0%, #2ac2f3 100%); }
.feature-icon-box.gradient-2 { background: linear-gradient(135deg, #020bbb 0%, #0049ff 100%); }
.feature-icon-box.gradient-3 { background: linear-gradient(135deg, #2ac2f3 0%, #0049ff 100%); }
.feature-icon-box.gradient-4 { background: linear-gradient(135deg, #08008e 0%, #020bbb 100%); }
.feature-icon-box.gradient-5 { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.feature-icon-box.gradient-6 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

.feature-heading {
    font-size: 26px;
    font-weight: 800;
    color: #08008e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.feature-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-items li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.feature-items ion-icon {
    font-size: 22px;
    color: #2ac2f3;
    flex-shrink: 0;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 48px;
}

.pricing-box {
    background: white;
    border-radius: 28px;
    padding: 48px 40px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 73, 255, 0.12);
}

.pricing-box.featured-box {
    border: 3px solid #0049ff;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 73, 255, 0.18);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.pricing-box.featured-box:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0049ff 0%, #2ac2f3 100%);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 73, 255, 0.4);
}

.pricing-top {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-plan-name {
    font-size: 26px;
    font-weight: 800;
    color: #08008e;
    margin-bottom: 24px;
}

.pricing-value {
    margin-bottom: 14px;
}

.currency-symbol {
    font-size: 26px;
    font-weight: 700;
    color: #0049ff;
    vertical-align: top;
}

.price-amount {
    font-size: 62px;
    font-weight: 900;
    color: #0049ff;
    line-height: 1;
}

.price-period {
    font-size: 19px;
    color: #666;
    font-weight: 600;
}

.pricing-desc {
    color: #666;
    font-weight: 600;
    font-size: 16px;
}

.pricing-desc.pricing-discount {
    color: #2ac2f3;
    font-weight: 700;
    font-size: 18px;
}

.pricing-items {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
}

.pricing-items li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.pricing-items ion-icon {
    font-size: 26px;
    color: #2ac2f3;
    flex-shrink: 0;
}

.btn-pricing-normal,
.btn-pricing-featured {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing-normal {
    background: #f0f0f0;
    color: #0049ff;
}

.btn-pricing-normal:hover {
    background: #0049ff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 73, 255, 0.3);
}

.btn-pricing-featured {
    background: linear-gradient(135deg, #0049ff 0%, #2ac2f3 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 73, 255, 0.3);
}

.btn-pricing-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 73, 255, 0.4);
    color: white;
}

.btn-pricing-normal ion-icon,
.btn-pricing-featured ion-icon {
    font-size: 22px;
}

.pricing-guarantee-box {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 32px;
    background: #e8f5e9;
    border-radius: 18px;
    color: #2e7d32;
    font-size: 16px;
}

.pricing-guarantee-box ion-icon {
    font-size: 36px;
}

/* ===================================
   CTA FINAL SECTION
   =================================== */
.cta-final-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0049ff 0%, #08008e 100%);
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(42, 194, 243, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(42, 194, 243, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-box {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-heading {
    font-size: 52px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-subheading {
    font-size: 23px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 48px;
    line-height: 1.5;
}

.cta-buttons-group {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #0049ff;
    padding: 20px 44px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #0049ff;
}

.btn-cta-main ion-icon {
    font-size: 24px;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 20px 44px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.btn-cta-outline ion-icon {
    font-size: 24px;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
    .container-hero,
    .container-full {
        padding: 0 30px;
    }
    
    .hero-grid {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-heading {
        font-size: 44px;
    }
}

@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .dashboard-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-box.featured-box {
        transform: scale(1);
    }
    
    .pricing-box.featured-box:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        height: 70px;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .btn-header {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-header span {
        display: none;
    }
    
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-grid {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-badges-list {
        gap: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .dashboard-card {
        padding: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 36px 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-box {
        padding: 36px 28px;
    }
    
    .section-heading {
        font-size: 36px;
    }
    
    .section-subheading {
        font-size: 18px;
    }
    
    .pricing-box {
        padding: 40px 32px;
    }
    
    .cta-heading {
        font-size: 36px;
    }
    
    .cta-subheading {
        font-size: 19px;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-cta-main,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container-hero,
    .container-full {
        padding: 0 20px;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .section-heading {
        font-size: 30px;
    }
    
    .price-amount {
        font-size: 52px;
    }
}
