/* ============================================
   Home Page Specific Styles
   ============================================ */

.home-page {
    overflow-x: hidden;
}

/* ============================================
   Navigation Bar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.1);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-gold));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pure-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-nav {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-signup {
    color: var(--pure-white);
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    border: none;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--pure-white);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--pure-white);
}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    color: var(--pure-white);
    border: none;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--pure-white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-images-showcase {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 3;
    perspective: 1000px;
}

.image-card {
    position: relative;
    width: 220px;
    height: 280px;
    flex-shrink: 0;
    animation: floatCard 6s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-card:hover {
    transform: translateY(-20px) scale(1.05);
    z-index: 10;
}

.image-card-1 {
    animation-delay: 0s;
    transform: rotateY(-15deg) rotateX(5deg);
}

.image-card-2 {
    animation-delay: 2s;
    transform: rotateY(0deg) rotateX(0deg);
    z-index: 2;
}

.image-card-3 {
    animation-delay: 4s;
    transform: rotateY(15deg) rotateX(-5deg);
}

.image-card:hover .image-glow {
    opacity: 1;
    transform: scale(1.2);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 107, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.image-card:hover .showcase-image {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.5),
        0 0 100px rgba(255, 107, 0, 0.3);
    transform: scale(1.02);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.4), transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 1;
    border-radius: 50%;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotateY(var(--rotate-y, 0deg)) rotateX(var(--rotate-x, 0deg));
    }
    50% {
        transform: translateY(-30px) rotateY(var(--rotate-y, 0deg)) rotateX(var(--rotate-x, 0deg));
    }
}

.image-card-1 {
    --rotate-y: -15deg;
    --rotate-x: 5deg;
}

.image-card-2 {
    --rotate-y: 0deg;
    --rotate-x: 0deg;
}

.image-card-3 {
    --rotate-y: 15deg;
    --rotate-x: -5deg;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.hero-orb:nth-child(1) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.hero-orb:nth-child(2) {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--secondary-gold), transparent);
    bottom: 0;
    right: 0;
    animation-delay: 2s;
}

.hero-orb:nth-child(3) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   Sections Common Styles
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--pure-white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 120px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 215, 0, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    color: var(--pure-white);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ============================================
   Partners Section
   ============================================ */
.partners {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.partners-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.partners-carousel {
    display: flex;
    gap: 60px;
    animation: scrollPartners 30s linear infinite;
    width: fit-content;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 180px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-align: center;
}

.partner-logo svg {
    display: block;
    margin: 0 auto;
    width: 140px;
    height: 50px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    align-self: center;
    flex-shrink: 0;
    text-align: center;
}

.partner-logo svg * {
    transform-origin: center;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-orange);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.2);
}


.partner-logo:hover svg {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-name {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    display: block;
}

.partner-logo:hover .partner-name {
    color: var(--primary-orange);
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.toggle-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
}

.save-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    color: var(--pure-white);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

.pricing-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
    cursor: pointer;
}

.pricing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border-radius: 32px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background: var(--pure-white);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.pricing-toggle input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    border-color: var(--primary-orange);
}

.pricing-toggle input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.05);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    border-color: var(--secondary-gold);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.4);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    color: var(--pure-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.yearly-billing {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    width: 100%;
    margin-top: 4px;
}

.pricing-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li span {
    flex: 1;
    line-height: 1.5;
}

.btn-pricing {
    width: 100%;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--pure-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.2);
}

.btn-pricing-featured {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    border: none;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.btn-pricing-featured:hover {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-orange));
    box-shadow: 0 6px 30px rgba(255, 107, 0, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   Statistics Section
   ============================================ */
.statistics {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    margin-left: 4px;
}

.stat-item:last-child .stat-number::after {
    content: '';
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 120px 0;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.testimonial-rating {
    color: var(--secondary-gold);
    font-size: 20px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-weight: 600;
    font-size: 18px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 215, 0, 0.1));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2), transparent);
    border-radius: 50%;
    filter: blur(80px);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-cta-large {
    padding: 18px 40px;
    font-size: 18px;
}

.cta-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.cta-link span {
    color: var(--primary-orange);
    font-weight: 600;
}

.cta-link:hover {
    color: var(--pure-white);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    margin-top: 120px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 30px;
}

.footer-newsletter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 100px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-section {
    max-width: 380px;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 107, 0, 0.4));
}

.footer-brand-text {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.footer-nav-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--pure-white);
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.footer-nav-links a:hover {
    color: var(--primary-orange);
    transform: translateX(4px);
}


.newsletter-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--pure-white);
    margin: 0 0 8px 0;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--pure-white);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    border: none;
    border-radius: 8px;
    color: var(--pure-white);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0 0;
    gap: 30px;
}

.footer-copyright {
    flex: 1;
}

.footer-copyright span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-btn:hover svg {
    transform: scale(1.15);
    color: var(--pure-white);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 56px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px;
        gap: 24px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-actions {
        gap: 8px;
    }

    .btn-nav {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .partners-carousel {
        gap: 30px;
        animation-duration: 25s;
    }

    .partner-logo {
        min-width: 130px;
        padding: 20px 25px;
    }

    .partner-logo svg {
        width: 100px;
        height: 40px;
    }

    .partner-name {
        font-size: 12px;
    }
}

    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-nav-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-newsletter-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .newsletter-form {
        min-width: 100%;
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        align-items: center;
    }

    .footer-bottom p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 48px;
    }

    .hero-images-showcase {
        flex-direction: column;
        gap: 20px;
        height: auto;
        max-width: 100%;
    }

    .image-card {
        width: 160px;
        height: 200px;
    }

    .image-card-1,
    .image-card-2,
    .image-card-3 {
        transform: none !important;
    }

    .footer-container {
        padding: 60px 20px 20px;
    }

    .footer-top {
        gap: 40px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-newsletter-section {
        padding: 40px 0;
    }

    .newsletter-form {
        min-width: 100%;
    }

    .footer-nav-section {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .footer-copyright {
        text-align: center;
    }
}

/* ============================================
   Animation Keyframes
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}
