:root {
    --body: #fff;
    --black: #000;
    --white: #ffffff;
    --theme: #d6111e;
    --theme2: #ff1749;
    --header: #0a0a1a;
    --base: #166FD3;
    --text: #5E5F63;
    --text2: #8A8C94;
    --border: #EEEFF4;
    --border2: #D7D7D7;
    --button: #1C2539;
    --button2: #030734;
    --ratting: #F09815;
    --bg: #F6F3EE;
    --bg2: #F6F6F6;
    --bg3: #F5F6FD;
    --bg4: #020001;
    --bg5: #F8F8F8;
    --bg6: #0a0a1a;
    --bg7: #EDEEEE;
    --bg8: #111;
    --gradient: linear-gradient(135deg, var(--theme) 0%, var(--theme2) 50%, var(--base) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(214,17,30,0.1) 0%, rgba(22,111,211,0.1) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--body);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--header);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--theme);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 120px 0;
}

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

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--theme);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(214, 17, 30, 0.08);
    border-radius: 50px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--header) 0%, #2a2a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 18px;
    color: var(--text2);
    max-width: 600px;
    margin: 0 auto;
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(214, 17, 30, 0.3);
}

.theme-btn:hover::before {
    left: 100%;
}

.theme-btn.hover-white:hover {
    background: var(--white);
    color: var(--theme);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--theme);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-bottom {
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo img {
    height: 40px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu ul li a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    position: relative;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover {
    color: var(--white);
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.header-action {
    display: flex;
    align-items: center;
}

.header-action .theme-btn {
    padding: 12px 28px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
}

.mean-nav {
    display: none;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0a0a1a 100%);
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--theme), var(--base));
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--base), var(--theme2));
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-circle-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--theme2), var(--base));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
}

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

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 30px;
}

.hero-title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--theme) 0%, var(--theme2) 50%, var(--base) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-description .highlight {
    color: var(--white);
    font-weight: 600;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 45px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 20px;
    font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-button {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    padding: 20px 44px;
    font-size: 16px;
    font-weight: 700;
    background: var(--gradient);
    border: none;
    box-shadow: 0 15px 40px rgba(214, 17, 30, 0.4);
}

.hero-btn-secondary {
    padding: 20px 44px;
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.trust-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.trust-icons {
    display: flex;
    gap: 15px;
}

.trust-icons i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.trust-icons i:hover {
    color: var(--white);
    transform: scale(1.15);
}

.hero-visual {
    position: relative;
    height: 550px;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-card-1 { top: 15%; right: 5%; animation-delay: 0s; }
.hero-card-2 { top: 42%; right: -5%; animation-delay: 2s; }
.hero-card-3 { top: 68%; right: 10%; animation-delay: 4s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.hero-card .card-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 14px;
    font-size: 24px;
    color: var(--white);
}

.hero-card .card-content {
    display: flex;
    flex-direction: column;
}

.hero-card .card-label {
    font-size: 13px;
    color: var(--text2);
}

.hero-card .card-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--header);
}

.hero-float-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    font-size: 22px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: floatIcon 4s ease-in-out infinite;
}

.hero-float-1 { top: 8%; left: 15%; animation-delay: 0s; }
.hero-float-2 { top: 28%; left: 0%; animation-delay: 1.5s; }
.hero-float-3 { bottom: 25%; left: 10%; animation-delay: 1s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.05); }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: var(--white);
}

.scroll-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.scroll-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

.features-area {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.features-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.feature-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-12px);
    border-color: transparent;
    box-shadow: 0 30px 60px rgba(22, 111, 211, 0.12);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: var(--gradient-soft);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background: var(--gradient);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 36px;
    color: var(--theme);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon i {
    color: var(--white);
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--header);
}

.feature-content p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.6;
}

.services-area {
    position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
    overflow: hidden;
}

.services-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, rgba(22, 111, 211, 0.03) 0%, transparent 100%);
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: 28px;
    padding: 0;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(22, 111, 211, 0.15);
    border-color: rgba(22, 111, 211, 0.1);
}

.service-card-inner {
    padding: 50px 40px;
    position: relative;
    z-index: 1;
}

.service-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-glow {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 22px;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 28px;
    box-shadow: 0 15px 35px rgba(214, 17, 30, 0.3);
}

.service-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--header);
}

.service-card p {
    color: var(--text2);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 28px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: var(--header);
    font-size: 16px;
}

.service-list li .check-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    border-radius: 50%;
    color: var(--base);
    font-size: 12px;
    flex-shrink: 0;
}

.why-us-area {
    position: relative;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0a0a1a 100%);
    overflow: hidden;
}

.why-us-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(22, 111, 211, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(214, 17, 30, 0.1) 0%, transparent 50%);
}

.why-us-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px 35px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 111, 211, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-us-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(22, 111, 211, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.why-us-card:hover::before {
    opacity: 1;
}

.why-us-card-inner {
    position: relative;
    z-index: 1;
}

.why-us-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 52px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    font-family: 'Kode Mono', monospace;
}

.why-us-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 18px;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 25px;
    box-shadow: 0 12px 35px rgba(214, 17, 30, 0.3);
}

.why-us-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 15px;
}

.why-us-line {
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-us-card:hover .why-us-line {
    transform: scaleX(1);
}

.pricing-area {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.pricing-card {
    position: relative;
    background: var(--white);
    border-radius: 28px;
    padding: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid var(--border);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(22, 111, 211, 0.12);
    border-color: transparent;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
    border: none;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured::before {
    transform: scaleX(1);
}

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

.pricing-card-inner {
    padding: 45px 35px;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(214, 17, 30, 0.4);
}

.plan-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    border-radius: 50%;
    margin: 0 auto 22px;
    font-size: 28px;
    color: var(--base);
    transition: all 0.4s ease;
}

.pricing-card.featured .plan-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.plan-name {
    font-size: 26px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
    color: var(--header);
}

.pricing-card.featured .plan-name {
    color: var(--white);
}

.pricing-header p {
    font-size: 15px;
    color: var(--text2);
}

.pricing-card.featured .pricing-header p {
    color: rgba(255, 255, 255, 0.6);
}

.price {
    margin: 28px 0;
    padding: 25px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-card.featured .price {
    border-color: rgba(255, 255, 255, 0.1);
}

.price .currency {
    font-size: 28px;
    font-weight: 700;
    vertical-align: top;
    color: var(--header);
}

.pricing-card.featured .currency {
    color: var(--white);
}

.price .amount {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    color: var(--header);
}

.pricing-card.featured .amount {
    color: var(--white);
}

.price .period {
    font-size: 15px;
    color: var(--text2);
    font-weight: 500;
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
    margin-bottom: 32px;
    text-align: left;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--header);
}

.pricing-card.featured .pricing-feature {
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    border-radius: 50%;
    color: var(--base);
    font-size: 13px;
}

.pricing-card.featured .pricing-feature i {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.pricing-btn {
    width: 100%;
    padding: 18px 30px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.pricing-btn:hover {
    box-shadow: 0 15px 40px rgba(214, 17, 30, 0.35);
    transform: translateY(-2px);
}

.forex-area {
    position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}

.forex-table-wrapper {
    background: var(--white);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.forex-table {
    width: 100%;
    border-collapse: collapse;
}

.forex-table thead {
    background: var(--bg);
}

.forex-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--header);
}

.forex-table td {
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
}

.forex-table tbody tr {
    transition: all 0.3s ease;
}

.forex-table tbody tr:hover {
    background: var(--bg);
}

.forex-table tbody tr:last-child td {
    border-bottom: none;
}

.forex-table .flag {
    font-size: 26px;
}

.forex-disclaimer {
    margin-top: 24px;
    font-size: 13px;
    color: var(--text2);
    font-style: italic;
}

.testimonial-area {
    position: relative;
    background: var(--white);
}

.testimonial-card {
    position: relative;
    background: var(--white);
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(22, 111, 211, 0.1);
    border-color: rgba(22, 111, 211, 0.1);
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 48px;
    color: rgba(22, 111, 211, 0.08);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--ratting);
    font-size: 16px;
    margin-right: 4px;
}

.testimonial-card > p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.author-badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 22px;
    height: 22px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 11px;
}

.author-info h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--header);
}

.author-info span {
    font-size: 14px;
    color: var(--text2);
    display: block;
    margin-bottom: 4px;
}

.author-location {
    font-size: 12px;
    color: var(--base);
}

.author-location i {
    margin-right: 6px;
}

.faq-area {
    position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: rgba(22, 111, 211, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
    border-color: var(--base);
    box-shadow: 0 10px 40px rgba(22, 111, 211, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: rgba(22, 111, 211, 0.02);
}

.faq-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    border-radius: 14px;
    font-size: 20px;
    color: var(--base);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--gradient);
    color: var(--white);
}

.faq-text {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: var(--header);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 50%;
    font-size: 14px;
    color: var(--text2);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--theme);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 28px 98px;
    color: var(--text2);
    line-height: 1.7;
    font-size: 15px;
}

.contact-area {
    position: relative;
    background: var(--white);
}

.contact-info {
    padding-right: 40px;
}

.contact-info-header {
    margin-bottom: 35px;
}

.contact-info-header h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--header);
}

.contact-info-header p {
    color: var(--text2);
    font-size: 16px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-info-item .icon {
    flex-shrink: 0;
}

.contact-info-item .icon-inner {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    border-radius: 16px;
    font-size: 20px;
    color: var(--base);
    transition: all 0.3s ease;
}

.contact-info-item .icon-inner:hover {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.1);
}

.contact-info-item .content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--header);
}

.contact-info-item .content p {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-info-item .content span {
    font-size: 14px;
    color: var(--text2);
}

.contact-locations {
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid var(--border);
}

.contact-locations h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--header);
}

.contact-locations h4 i {
    color: var(--theme);
    margin-right: 8px;
}

.location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-grid span {
    padding: 8px 18px;
    background: var(--bg);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--header);
    transition: all 0.3s ease;
}

.location-grid span:hover {
    background: var(--gradient);
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.contact-form-header {
    margin-bottom: 35px;
}

.contact-form-header h4 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--header);
}

.contact-form-header p {
    color: var(--text2);
    font-size: 15px;
}

.form-clt {
    margin-bottom: 22px;
}

.form-control {
    width: 100%;
    padding: 18px 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--base);
    box-shadow: 0 0 0 4px rgba(22, 111, 211, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.contact-form-wrapper .theme-btn {
    width: 100%;
    padding: 20px;
    font-size: 16px;
}

.footer-area {
    position: relative;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
    color: var(--white);
    padding-top: 80px;
}

.footer-top {
    padding-bottom: 50px;
}

.footer-logo img {
    height: 42px;
    margin-bottom: 22px;
}

.footer-widget > p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient);
    transform: translateY(-4px);
}

.footer-widget h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
}

.footer-link li {
    margin-bottom: 14px;
}

.footer-link li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-link li a span {
    color: var(--theme);
    font-size: 11px;
    transition: transform 0.3s ease;
}

.footer-link li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-link li a:hover span {
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 14px;
}

.footer-contact li i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: var(--base);
    font-size: 14px;
}

.footer-bottom {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-link {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
}

.footer-bottom-link li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-link li a:hover {
    color: var(--white);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

@media (max-width: 1199px) {
    .mean-menu { display: none !important; }
    .mean-bar { display: block; }
    .header-action { display: none; }
    .hero-title { font-size: 56px; }
    .hero-visual { display: none; }
}

@media (max-width: 991px) {
    .section-title { font-size: 38px; }
    .hero-title { font-size: 48px; }
    .hero-stats { flex-wrap: wrap; gap: 25px; }
    .stat-divider { display: none; }
    .hero-content { padding: 120px 0 60px; }
    .contact-info { padding-right: 0; margin-bottom: 40px; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-12px); }

    .nav-menu { display: none !important; }
    .header-action { display: none !important; }
    .mobile-menu-btn { display: block !important; }

    .mean-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mean-nav.mean-show {
        display: block;
    }

    .mean-nav ul {
        margin: 0;
        padding: 0;
    }

    .mean-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mean-nav ul li:last-child {
        border-bottom: none;
    }

    .mean-nav ul li a {
        display: block;
        padding: 15px 0;
        color: rgba(255, 255, 255, 0.8);
        font-size: 16px;
        font-weight: 500;
    }

    .meanmenu-reveal {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    .meanmenu-reveal span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        margin-bottom: 5px;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .meanmenu-reveal span:last-child {
        margin-bottom: 0;
    }

    .meanmenu-reveal.meanclose span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .meanmenu-reveal.meanclose span:nth-child(2) {
        opacity: 0;
    }

    .meanmenu-reveal.meanclose span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 767px) {
    .section-padding { padding: 80px 0; }
    .section-title { font-size: 32px; }
    .hero-title { font-size: 38px; }
    .hero-badge { font-size: 12px; padding: 8px 18px; }
    .hero-description { font-size: 17px; }
    .hero-stats { padding: 22px 28px; }
    .stat-number { font-size: 34px; }
    .hero-button { flex-direction: column; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; }
    .hero-scroll { display: none; }
    .header-top { display: none; }
    .contact-form-wrapper { padding: 35px 25px; }
    .faq-answer p { padding-left: 30px; }
    .footer-bottom-link { justify-content: center; flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 575px) {
    .section-title { font-size: 28px; }
    .hero-title { font-size: 32px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .trust-icons i { font-size: 24px; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-float a { width: 54px; height: 54px; font-size: 26px; }
}