:root {
    --warm-orange: #FF7A00;
    --warm-background: #FFF4E6;
    --text-gray: #4A5568;
    --orange-light: #FFE5CC;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--warm-orange), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 100;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 122, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */
.apple-button,
.dark-button {
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    border-radius: 14px;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.apple-button {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.apple-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.apple-button:hover::before {
    width: 300px;
    height: 300px;
}

.apple-button:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 122, 0, 0.2);
    border-color: var(--warm-orange);
}

.dark-button {
    background-color: rgba(29, 29, 31, 0.95);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--warm-orange), #ff9a3c);
    opacity: 0;
    transition: opacity 0.4s;
}

.dark-button:hover::before {
    opacity: 0.1;
}

.dark-button:hover {
    background-color: rgb(29, 29, 31);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--warm-orange);
}

.rounded-button {
    border-radius: 0.875rem;
}

/* ============================================
   HERO SECTION - ENHANCED PARTICLES
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF4E6 50%, #FFFFFF 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 154, 60, 0.06) 0%, transparent 50%);
    animation: gradientShift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 20s infinite ease-in-out;
    filter: blur(1px);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -100vh) rotate(90deg) scale(1.2);
    }
    50% {
        transform: translate(-30px, -200vh) rotate(180deg) scale(0.8);
    }
    75% {
        transform: translate(50px, -300vh) rotate(270deg) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ANIMATED CARD - 3D EFFECT
   ============================================ */
.animated-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.animated-card::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 154, 60, 0.1));
    border-radius: 3rem;
    opacity: 0;
    transition: opacity 0.6s;
    z-index: -1;
    filter: blur(20px);
}

.animated-card:hover {
    transform: rotateY(5deg) rotateX(3deg) translateY(-10px);
    box-shadow: -15px 15px 40px rgba(255, 122, 0, 0.25);
}

.animated-card:hover::before {
    opacity: 1;
}

.animated-card img {
    border-radius: 2rem;
    transition: transform 0.6s ease;
}

.animated-card:hover img {
    transform: scale(1.05);
}

/* ============================================
   GLOW CARDS - ENHANCED
   ============================================ */
.glow-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(255, 122, 0, 0.1);
}

.glow-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 60%);
    opacity: 0;
    transform: rotate(30deg);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.glow-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 3rem;
    background: linear-gradient(45deg, var(--warm-orange), #ff9a3c, var(--warm-orange));
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.glow-card:hover::before {
    opacity: 1;
    transform: rotate(0deg);
}

.glow-card:hover::after {
    opacity: 0.3;
}

.glow-card:hover {
    transform: translateY(-10px);
    border-color: var(--warm-orange);
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.25);
}

.glow-card .w-16.h-16 {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.glow-card .w-16.h-16::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, var(--warm-orange), #ff9a3c, var(--warm-orange));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

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

.glow-card:hover .w-16.h-16 {
    transform: scale(1.2) rotate(10deg);
}

.glow-card:hover .w-16.h-16::before {
    opacity: 0.5;
}

/* ============================================
   NUMBER COUNTERS
   ============================================ */
.number-counter {
    display: inline-block;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.number-counter.visible {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   PROCESS STEPS - 2X2 GRID
   ============================================ */
.process-step {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 2px solid rgba(255, 122, 0, 0.1);
}

.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    border-radius: 3rem;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--warm-orange);
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.2);
}

.process-step .w-16.h-16 {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.process-step .w-16.h-16::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, var(--warm-orange), #ff9a3c, var(--warm-orange));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    animation: rotate 4s linear infinite;
}

.process-step:hover .w-16.h-16 {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

.process-step:hover .w-16.h-16::before {
    opacity: 0.5;
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonial-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(255, 122, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.08), transparent);
    transition: left 0.7s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--warm-orange);
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.2);
}

/* ============================================
   PRICING TOGGLE
   ============================================ */
.pricing-toggle {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 34px;
}

.pricing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFE8CC, #FFD299);
    transition: .4s;
    border-radius: 34px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, var(--warm-orange), #ff9a3c);
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(255, 122, 0, 0.4);
}

input:checked + .pricing-slider {
    background: linear-gradient(135deg, #FFD299, var(--warm-orange));
}

input:checked + .pricing-slider:before {
    transform: translateX(30px);
}

/* ============================================
   ANIMATED DIVIDER
   ============================================ */
.animated-divider {
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 122, 0, 0.3) 20%,
        var(--warm-orange) 50%, 
        rgba(255, 122, 0, 0.3) 80%,
        transparent 100%);
    width: 0;
    margin: 2rem auto;
    transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.3);
}

.animated-divider.visible {
    width: 80%;
}

/* ============================================
   REVEAL SECTIONS
   ============================================ */
.reveal-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PRICING CARDS - ENHANCED
   ============================================ */
.bg-white.p-8.rounded-3xl {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.bg-white.p-8.rounded-3xl::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--warm-orange), #ff9a3c);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    border-radius: 3rem;
}

.bg-white.p-8.rounded-3xl:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 122, 0, 0.2);
}

.bg-white.p-8.rounded-3xl:hover::before {
    opacity: 0.1;
}

/* Scale effect for popular plan */
.transform.scale-105 {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 122, 0, 0.25);
}

/* Popular badge pulse */
.absolute.-top-4 {
    animation: badgePulse 2s ease-in-out infinite;
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.bg-light.p-6.rounded-2xl {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.bg-light.p-6.rounded-2xl:hover {
    transform: translateX(10px);
    border-color: rgba(255, 122, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), transparent);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.15);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 2rem;
    }
    
    .animated-card {
        margin-top: 2rem;
    }
    
    .glow-card {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}
.hero-section h1{
font-size: clamp(3rem, 7vw, 2rem);
}