/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #12282a;
    --secondary-color: #e5a235;
    --text-primary: #ffffff;
    --text-secondary: #b8c5c7;
    --bg-dark: #0a1a1c;
    --bg-light: #1a2f32;
    --accent-glow: rgba(229, 162, 53, 0.3);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: linear-gradient(180deg, rgba(18, 40, 42, 0.95) 0%, rgba(10, 26, 28, 0.95) 100%);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 162, 53, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

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

.logo-link {
    display: block;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

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

.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

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

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4941f 100%);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4941f 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color);
    border-top: 1px solid rgba(229, 162, 53, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-navigation.active {
    display: block;
    max-height: 500px;
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: var(--secondary-color);
    background: rgba(229, 162, 53, 0.1);
    border-left-color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 50%, var(--bg-dark) 100%);
}

.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
    animation-delay: 5s;
}

.hero-circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(229, 162, 53, 0.2);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(229, 162, 53, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title-line {
    color: var(--text-primary);
}

.hero-title-accent {
    color: var(--secondary-color);
    text-shadow: 0 0 20px var(--accent-glow);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4941f 100%);
    color: var(--primary-color);
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px var(--accent-glow);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--secondary-color);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-hero-secondary:hover {
    background: rgba(229, 162, 53, 0.1);
    color: var(--secondary-color);
}

.hero-right {
    position: relative;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper a {
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.hero-image-wrapper a:hover {
    transform: scale(1.05);
}

.hero-main-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(229, 162, 53, 0.3));
    animation: pulse 3s infinite ease-in-out;
    display: block;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-card {
    position: absolute;
    background: rgba(18, 40, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 162, 53, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 3;
}

.hero-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 6px 30px var(--accent-glow);
}

.hero-card-1 {
    top: 10%;
    right: 10%;
    animation: floatCard 4s infinite ease-in-out;
}

.hero-card-2 {
    bottom: 20%;
    left: 5%;
    animation: floatCard 5s infinite ease-in-out;
    animation-delay: 1s;
}

.hero-card-3 {
    top: 50%;
    right: -5%;
    animation: floatCard 6s infinite ease-in-out;
    animation-delay: 2s;
}

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

.card-icon {
    font-size: 2rem;
}

.card-text {
    font-weight: 600;
    color: var(--text-primary);
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-section {
    margin-bottom: 5rem;
}

.about-main-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.brand-name {
    color: var(--secondary-color);
    font-weight: 700;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.about-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Features Grid */
.features-section {
    margin: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.feature-card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(18, 40, 42, 0.4) 0%, rgba(10, 26, 28, 0.6) 100%);
    border-radius: 24px;
    border: 1px solid rgba(229, 162, 53, 0.1);
    transition: var(--transition);
    z-index: 1;
}

.feature-card-1 .feature-card-background {
    background: linear-gradient(180deg, rgba(18, 40, 42, 0.5) 0%, rgba(10, 26, 28, 0.7) 100%);
}

.feature-card-2 .feature-card-background {
    background: linear-gradient(180deg, rgba(26, 47, 50, 0.5) 0%, rgba(18, 40, 42, 0.7) 100%);
}

.feature-card-3 .feature-card-background {
    background: linear-gradient(180deg, rgba(18, 40, 42, 0.5) 0%, rgba(26, 47, 50, 0.7) 100%);
}

.feature-card:hover .feature-card-background {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 60px rgba(229, 162, 53, 0.3);
    transform: translateY(-10px);
}

.feature-card-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.feature-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229, 162, 53, 0.2) 0%, rgba(229, 162, 53, 0.05) 100%);
    border: 3px solid rgba(229, 162, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.feature-icon-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-circle {
    background: linear-gradient(135deg, rgba(229, 162, 53, 0.4) 0%, rgba(229, 162, 53, 0.2) 100%);
    border-color: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(229, 162, 53, 0.4);
}

.feature-card:hover .feature-icon-circle::before {
    opacity: 0.5;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.feature-icon {
    font-size: 3.5rem;
    display: block;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
}

.feature-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.feature-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    transition: var(--transition);
    margin: 0;
}

.feature-card:hover .feature-heading {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.feature-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0.5;
    transition: var(--transition);
}

.feature-card:hover .feature-divider {
    width: 100px;
    opacity: 1;
    box-shadow: 0 0 10px rgba(229, 162, 53, 0.5);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
}

.feature-bottom-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
    transition: var(--transition);
}

.feature-card:hover .feature-bottom-accent {
    width: 80%;
    box-shadow: 0 0 15px rgba(229, 162, 53, 0.6);
}

/* Mobile App Section */
.mobile-app-section {
    margin: 5rem 0;
    background: linear-gradient(135deg, rgba(18, 40, 42, 0.6) 0%, rgba(26, 47, 50, 0.6) 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    border: 1px solid rgba(229, 162, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 162, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mobile-app-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mobile-app-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-app-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(229, 162, 53, 0.2);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(229, 162, 53, 0.3);
}

.mobile-app-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-app-title-main {
    color: var(--text-primary);
}

.mobile-app-title-accent {
    color: var(--secondary-color);
}

.mobile-app-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.mobile-app-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.mobile-app-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.mobile-feature-text {
    color: var(--text-secondary);
    font-weight: 500;
}

.btn-mobile-app {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4941f 100%);
    color: var(--primary-color);
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 1rem;
    width: fit-content;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-mobile-app:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px var(--accent-glow);
}

.mobile-app-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-app-image a {
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-app-image a:hover {
    transform: scale(1.05);
}

.app-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(229, 162, 53, 0.3));
    animation: floatApp 4s infinite ease-in-out;
    display: block;
}

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

/* CTA Section */
.cta-section {
    margin: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-light) 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    border: 1px solid rgba(229, 162, 53, 0.3);
    overflow: hidden;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(229, 162, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(229, 162, 53, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(229, 162, 53, 0.2);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 1rem;
    border: 1px solid rgba(229, 162, 53, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-title-main {
    color: var(--text-primary);
}

.cta-title-accent {
    color: var(--secondary-color);
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 8px;
}

.cta-benefit-item:hover {
    background: rgba(229, 162, 53, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.benefit-text {
    color: var(--text-primary);
    font-weight: 500;
}

.cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-button-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4941f 100%);
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px var(--accent-glow);
    position: relative;
    z-index: 2;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px var(--accent-glow);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: var(--transition);
}

.btn-cta:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 0.3;
    filter: blur(20px);
    z-index: 1;
    animation: pulseGlow 2s infinite ease-in-out;
}

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

.cta-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    margin: 5rem 0;
    position: relative;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    position: relative;
}

.faq-item-wrapper {
    position: relative;
}

.faq-item-inner {
    background: linear-gradient(135deg, rgba(18, 40, 42, 0.4) 0%, rgba(26, 47, 50, 0.4) 100%);
    border-left: 4px solid rgba(229, 162, 53, 0.3);
    border-radius: 0 16px 16px 0;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.faq-item-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.faq-item-inner.active {
    border-left-color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(229, 162, 53, 0.2);
    background: linear-gradient(135deg, rgba(18, 40, 42, 0.6) 0%, rgba(26, 47, 50, 0.6) 100%);
}

.faq-item-inner.active::before {
    transform: scaleY(1);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.faq-question-btn:hover {
    background: rgba(229, 162, 53, 0.05);
}

.faq-left-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.faq-question-content {
    flex: 1;
}

.faq-question-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    transition: var(--transition);
}

.faq-item-inner.active .faq-question-text {
    color: var(--secondary-color);
}

.faq-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.faq-icon-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.faq-icon-line-1 {
    transform: rotate(0deg);
}

.faq-icon-line-2 {
    transform: rotate(90deg);
}

.faq-item-inner.active .faq-icon-line-1 {
    transform: rotate(45deg);
}

.faq-item-inner.active .faq-icon-line-2 {
    transform: rotate(45deg);
}

.faq-answer-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-container.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2.5rem 2rem 2.5rem;
}

.faq-answer-inner {
    background: rgba(229, 162, 53, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 3px solid var(--secondary-color);
}

.faq-answer-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #050f10 100%);
    padding: 5rem 0 2rem;
    margin-top: 5rem;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top center, rgba(229, 162, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    align-items: start;
}

.footer-main-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.footer-brand-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.footer-brand-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.badge-item {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(229, 162, 53, 0.15) 0%, rgba(229, 162, 53, 0.05) 100%);
    color: var(--secondary-color);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(229, 162, 53, 0.3);
    transition: var(--transition);
    display: inline-block;
}

.badge-item:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4941f 100%);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(229, 162, 53, 0.4);
    border-color: var(--secondary-color);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
    color: var(--secondary-color);
}

.footer-link:hover {
    color: var(--secondary-color);
    padding-left: 20px;
}

.footer-link:hover::before {
    opacity: 1;
    left: 0;
}

.footer-security-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
    margin: 0;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 162, 53, 0.3), transparent);
    margin: 1rem 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 2rem;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-warning {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.footer-warning strong {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-main-image {
        max-width: 300px;
    }

    .mobile-app-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mobile-app-image {
        order: -1;
    }

    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-title {
        text-align: center;
    }

    .cta-benefits {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .navigation {
        display: none;
    }

    /* Mobile logo slightly smaller */
    .logo-img {
        height: 42px;
    }

    .header-buttons {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-card {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .card-icon {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        min-height: 350px;
    }

    .feature-card-content {
        padding: 2.5rem 2rem;
    }

    .feature-icon-circle {
        width: 100px;
        height: 100px;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .feature-heading {
        font-size: 1.3rem;
    }

    .mobile-app-section {
        padding: 2rem 1.5rem;
    }

    .mobile-app-title {
        font-size: 2rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-left-section {
        gap: 1rem;
    }

    .faq-question-btn {
        padding: 1.5rem 2rem;
    }

    .faq-answer-content {
        padding: 0 2rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-visual {
        height: auto;
        min-height: 300px;
    }

    .hero-main-image {
        max-width: 250px;
    }

    .faq-left-section {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .faq-question-btn {
        padding: 1.25rem 1.5rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .faq-answer-inner {
        padding: 1.25rem;
    }

    .footer-top {
        gap: 2rem;
    }

    .footer-brand-title {
        font-size: 1.5rem;
    }

    .footer-links-section {
        gap: 2rem;
    }

    .footer-heading {
        font-size: 1rem;
    }
}