@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0f172a;
    --accent: #ec4899;
    --accent-light: #f472b6;
    --success: #10b981;
    --warning: #f59e0b;
    --navy: #1e293b;
    --navy-light: #334155;
    --light: #ffffff;
    --gray: #64748b;
    --gray-light: #f1f5f9;
    --gray-dark: #475569;
}

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

html { 
    scroll-behavior: smooth; 
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fafafa;
    color: var(--secondary);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Utility Classes */
.position-relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* Smooth Page Transitions */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: pageLoad 0.6s ease-out;
}

/* ── BUTTONS ── */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    color: white !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}
.btn-primary::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.6s;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
    color: white !important;
}
.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}
.btn-outline:hover::before {
    width: 400px;
    height: 400px;
}
.btn-outline:hover {
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}
.btn-outline span {
    position: relative;
    z-index: 1;
}

/* ── SECTION TITLES ── */
.section-title { 
    text-align: center; 
    margin-bottom: 65px;
    animation: fadeInUp 0.8s ease;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 100px;
    margin-bottom: 18px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}
.section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}
.section-label:hover::before {
    left: 100%;
}
.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.section-title h2 span { 
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title p { 
    color: var(--gray); 
    font-size: 1.1rem; 
    max-width: 700px; 
    margin: 0 auto;
    line-height: 1.8;
}

/* ── HERO SLIDER ── */
.hero-slider { 
    position: relative; 
    overflow: hidden;
    background: #0f172a;
}

.hero-slide {
    display: none;
    min-height: 100vh;
    align-items: center;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.97) 0%, rgba(30, 41, 59, 0.95) 40%, rgba(99, 102, 241, 0.4) 100%),
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
    z-index: 1;
}
.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    z-index: 1;
}
.hero-slide.active {
    display: flex;
    animation: heroFadeIn 1.2s ease;
}
@keyframes heroFadeIn { 
    from { opacity: 0; } 
    to { opacity: 1; } 
}

.hero-slide .container { 
    position: relative; 
    z-index: 2; 
    padding: 180px 0 120px; 
}
.hero-slide .row {
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 100px;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: heroSlideDown 1s ease;
    text-transform: uppercase;
}
@keyframes heroSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-badge i { 
    color: #fbbf24;
    font-size: 1.2rem;
    animation: heroPulse 2s infinite;
}
@keyframes heroPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-slide h1 {
    font-size: 4.8rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 32px;
    animation: heroSlideUp 1s ease 0.2s backwards;
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.hero-slide h1 span { 
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: heroGradientShift 3s linear infinite;
}
@keyframes heroGradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.hero-slide p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 45px;
    max-width: 650px;
    animation: heroSlideUp 1s ease 0.4s backwards;
    line-height: 1.8;
    font-weight: 400;
}
.hero-btns { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap; 
    animation: heroSlideUp 1s ease 0.6s backwards;
    margin-bottom: 50px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    animation: heroSlideUp 1s ease 0.8s backwards;
}
.hero-stat { 
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 28px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.hero-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
}
.hero-stat:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.2);
}
.hero-stat:hover::before {
    opacity: 1;
}
.hero-stat strong { 
    display: block; 
    font-size: 2.5rem; 
    font-weight: 900; 
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.hero-stat span { 
    font-size: 0.9rem; 
    color: rgba(255,255,255,0.8); 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

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

/* Hero Visual Element - Right Side */
.hero-visual {
    position: relative;
    z-index: 2;
    animation: heroSlideUp 1s ease 0.5s backwards;
}
.hero-image-box {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 4px solid rgba(255, 255, 255, 0.1);
}
.hero-image-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}
.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.hero-floating-card.card-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}
.hero-floating-card.card-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 1s;
}
.hero-floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 12px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}
.hero-floating-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}
.hero-floating-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Animated Background Elements */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.15));
    filter: blur(60px);
    animation: heroShapeFloat 20s ease-in-out infinite;
}
.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}
.hero-shape-2 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    right: 5%;
    animation-delay: 5s;
}
.hero-shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}
@keyframes heroShapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 14px;
}
.slider-dot {
    width: 14px; 
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.slider-dot.active { 
    background: #fbbf24;
    width: 50px; 
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.6);
    border-color: rgba(251, 191, 36, 0.3);
}
.slider-dot:hover {
    background: rgba(251, 191, 36, 0.6);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
    width: 70px; 
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    z-index: 10;
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.4rem;
}
.slider-arrow:hover { 
    background: linear-gradient(135deg, #6366f1, #ec4899);
    transform: translateY(-50%) scale(1.15);
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}
.slider-arrow.prev { left: 40px; }
.slider-arrow.next { right: 40px; }

/* ── TRUST BAR ── */
.trust-bar {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 24px 0;
    position: relative;
    overflow: hidden;
}
.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
.trust-bar .trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 10px;
}
.trust-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}
.trust-item i { 
    color: #fbbf24;
    font-size: 1.1rem;
}

/* ── FEATURES ── */
.features { 
    padding: 100px 0; 
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.feature-card {
    padding: 40px 32px;
    border-radius: 24px;
    background: white;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; 
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    transition: left 0.5s;
    z-index: 0;
}
.feature-card:hover::before { 
    left: 0;
}
.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 
        0 20px 60px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
}
.feature-icon-wrap {
    width: 80px; 
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-bottom: 28px;
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.4s ease;
}
.feature-card:hover .feature-icon-wrap {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}
.feature-card h4 { 
    font-size: 1.25rem; 
    font-weight: 700; 
    margin-bottom: 14px; 
    color: var(--secondary);
    position: relative;
    z-index: 1;
}
.feature-card p { 
    color: var(--gray); 
    margin: 0; 
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ── ABOUT (homepage snippet) ── */
.about { 
    padding: 100px 0; 
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.about-card {
    background: white;
    border-radius: 32px;
    padding: 65px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05), transparent 70%);
}
.about h2 { 
    font-size: 2.8rem; 
    font-weight: 800; 
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
.about h2 span { 
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about .sub-heading { 
    color: var(--primary); 
    font-weight: 600; 
    font-size: 1.05rem; 
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
.about p { 
    color: var(--gray); 
    line-height: 1.9; 
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.about-stats { 
    display: flex; 
    gap: 20px; 
    margin: 35px 0; 
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.about-stat {
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: 20px;
    padding: 25px 30px;
    flex: 1;
    min-width: 120px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}
.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}
.about-stat strong { 
    display: block; 
    font-size: 2.5rem; 
    font-weight: 900; 
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-stat span { 
    font-size: 0.85rem; 
    color: var(--gray); 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-img-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
}
.about-img-wrap img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 0.5s ease;
}
.about-img-wrap:hover img {
    transform: scale(1.1);
}
.about-img-badge {
    position: absolute;
    bottom: 30px; 
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px 28px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: flex; 
    align-items: center; 
    gap: 16px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}
.about-img-badge i { 
    font-size: 2rem; 
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-img-badge strong { 
    display: block; 
    font-size: 1.15rem; 
    font-weight: 800; 
    color: var(--secondary); 
}
.about-img-badge span { 
    font-size: 0.8rem; 
    color: var(--gray); 
}

/* ── HOW IT WORKS ── */
.how-it-works { 
    padding: 100px 0; 
    background: linear-gradient(135deg, var(--secondary) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}
.how-it-works::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    top: -200px;
    right: -100px;
}
.how-it-works::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1), transparent 70%);
    bottom: -150px;
    left: -100px;
}
.how-it-works .section-title h2 { 
    color: white; 
}
.how-it-works .section-title p { 
    color: rgba(255,255,255,0.75); 
}

.step-card {
    text-align: center;
    padding: 50px 30px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}
.step-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}
.step-number {
    width: 85px; 
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 2rem;
    font-weight: 900;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    transition: all 0.4s ease;
}
.step-card:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}
.step-card h4 { 
    font-size: 1.3rem; 
    font-weight: 700; 
    color: white; 
    margin-bottom: 16px; 
}
.step-card p { 
    color: rgba(255,255,255,0.75); 
    font-size: 0.95rem;
    line-height: 1.7;
}
.step-card a {
    color: #fbbf24;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.step-card a:hover {
    color: #f59e0b;
    text-decoration: underline;
}
.step-connector {
    position: absolute;
    top: 55px; 
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.5), transparent);
    z-index: 0;
}

/* ── SERVICES ── */
.services { 
    padding: 100px 0; 
    background: white;
    position: relative;
}

.service-card {
    background: white;
    border-radius: 28px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(236, 72, 153, 0.03));
    opacity: 0;
    transition: opacity 0.5s;
}
.service-card:hover::before {
    opacity: 1;
}
.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 
        0 25px 60px rgba(99, 102, 241, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.1);
}
.service-icon-wrap {
    width: 90px; 
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--secondary), var(--navy-light));
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}
.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}
.service-card h4 { 
    font-size: 1.3rem; 
    font-weight: 700; 
    margin-bottom: 16px; 
    color: var(--secondary);
    position: relative;
    z-index: 1;
}
.service-card p { 
    color: var(--gray); 
    margin: 0; 
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ── PRICING ── */
.pricing { 
    padding: 100px 0; 
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.price-card {
    background: white;
    border-radius: 30px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.price-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.03), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}
.price-card:hover::after {
    opacity: 1;
}
.price-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(99, 102, 241, 0.2),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
}
.price-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}
.price-card.popular::before {
    height: 0;
}
.price-card.popular h4,
.price-card.popular .price-amount,
.price-card.popular .price-features li { 
    color: white; 
}
.price-card.popular .price-features li i { 
    color: #fbbf24;
}
.price-card.popular .price-amount span { 
    color: rgba(255,255,255,0.7); 
}
.price-card.popular .price-period {
    color: rgba(255,255,255,0.8);
}
.price-card.popular:hover { 
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.4);
}

.price-badge {
    position: absolute;
    top: 24px; 
    right: 24px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.price-card h4 { 
    font-size: 1.3rem; 
    font-weight: 700; 
    margin-bottom: 12px; 
    color: var(--secondary);
    position: relative;
    z-index: 1;
}
.price-amount { 
    font-size: 3.5rem; 
    font-weight: 900; 
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1; 
    margin: 20px 0 8px;
    position: relative;
    z-index: 1;
}
.price-card.popular .price-amount {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-amount span { 
    font-size: 1.1rem; 
    font-weight: 500; 
    color: var(--gray);
}
.price-period { 
    font-size: 0.85rem; 
    color: var(--gray); 
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.price-features { 
    list-style: none; 
    padding: 0; 
    margin: 28px 0; 
    text-align: left;
    position: relative;
    z-index: 1;
}
.price-features li {
    padding: 12px 0;
    color: #475569;
    display: flex; 
    align-items: center;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.price-features li:hover {
    padding-left: 8px;
}
.price-features li:last-child { border-bottom: none; }
.price-features li i { 
    color: var(--primary);
    margin-right: 12px; 
    font-size: 0.9rem;
    flex-shrink: 0;
}

.price-card .btn-primary { 
    width: 100%; 
    justify-content: center; 
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

/* ── COVERAGE ── */
.coverage { 
    padding: 100px 0; 
    background: white;
}

.coverage-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent) 100%);
    border-radius: 32px;
    padding: 65px 55px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}
.coverage-box::before {
    content: '';
    position: absolute;
    width: 500px; 
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    top: -200px; 
    right: -150px;
    animation: float 8s ease-in-out infinite;
}
.coverage-box::after {
    content: '';
    position: absolute;
    width: 400px; 
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2), transparent 70%);
    bottom: -150px; 
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}
.coverage-icon {
    width: 100px; 
    height: 100px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}
.coverage-box:hover .coverage-icon {
    transform: scale(1.15) rotate(15deg);
}
.coverage-box h3 { 
    color: white; 
    font-size: 2.3rem; 
    font-weight: 900; 
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.coverage-box p { 
    color: rgba(255,255,255,0.92); 
    margin-bottom: 22px; 
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ── CTA ── */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    width: 600px; 
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -250px; 
    right: -150px;
    animation: float 6s ease-in-out infinite;
}
.cta::after {
    content: '';
    position: absolute;
    width: 500px; 
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    bottom: -200px; 
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}
.cta h2 { 
    color: white; 
    font-weight: 900; 
    font-size: 2.8rem; 
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}
.cta p { 
    color: rgba(255,255,255,0.95); 
    margin-bottom: 0; 
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
}
.cta .btn-white {
    background: white;
    color: var(--primary);
    border: none;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}
.cta .btn-white:hover {
    background: #fbbf24;
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ── FOOTER ── */
.footer { 
    background: linear-gradient(135deg, var(--secondary) 0%, #0a0f1e 100%);
    padding: 75px 0 30px; 
    color: white;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}
.footer-brand { 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: white; 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}
.footer-brand:hover {
    transform: translateX(5px);
}
.footer-brand i { 
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
}
.footer p.footer-desc { 
    color: #94a3b8; 
    font-size: 0.92rem; 
    line-height: 1.8; 
    margin-bottom: 24px; 
}
.footer h5 { 
    font-weight: 700; 
    margin-bottom: 24px; 
    font-size: 1.05rem; 
    color: white;
    position: relative;
    padding-bottom: 12px;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}
.footer ul { 
    list-style: none; 
    padding: 0; 
}
.footer ul li { 
    margin-bottom: 12px; 
}
.footer ul li a { 
    color: #94a3b8; 
    text-decoration: none; 
    font-size: 0.92rem; 
    transition: all 0.3s ease; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}
.footer ul li a:hover { 
    color: var(--primary); 
    padding-left: 5px;
}
.footer-contact li { 
    color: #94a3b8; 
    font-size: 0.92rem; 
    display: flex; 
    align-items: flex-start; 
    gap: 12px; 
    margin-bottom: 14px;
    line-height: 1.6;
}
.footer-contact li i { 
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 3px; 
    flex-shrink: 0;
    font-size: 1.1rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 50px;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { 
    color: #64748b; 
    margin: 0; 
    font-size: 0.88rem; 
}
.footer-bottom a { 
    color: #64748b; 
    text-decoration: none; 
    font-size: 0.88rem;
    transition: all 0.3s ease;
}
.footer-bottom a:hover { 
    color: var(--primary); 
}

/* ── ABOUT PAGE ── */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--navy-light) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(249,115,22,0.07);
    top: -200px; right: -150px;
}
.page-hero h1 { color: white; font-size: 3rem; font-weight: 800; margin-bottom: 15px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }
.breadcrumb-item a { color: var(--primary); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

.about-page-section { padding: 90px 0; }
.about-page-section.bg-light-gray { background: var(--gray-light); }

.value-card {
    background: white;
    border-radius: 20px;
    padding: 35px 28px;
    height: 100%;
    border: 2px solid #e2e8f0;
    transition: all 0.35s;
    text-align: center;
}
.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(249,115,22,0.1);
}
.value-icon {
    width: 65px; height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 18px;
}
.value-card h5 { font-weight: 700; margin-bottom: 10px; color: var(--secondary); }
.value-card p { color: var(--gray); font-size: 0.9rem; margin: 0; }

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.35s;
    text-align: center;
}
.team-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(249,115,22,0.1);
}
.team-img {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
}
.team-info { padding: 22px; }
.team-info h5 { font-weight: 700; margin-bottom: 4px; color: var(--secondary); }
.team-info span { font-size: 0.85rem; color: var(--primary); font-weight: 600; }
.team-info p { font-size: 0.88rem; color: var(--gray); margin-top: 10px; margin-bottom: 0; }

.milestone-item {
    display: flex;
    gap: 22px;
    margin-bottom: 35px;
    align-items: flex-start;
}
.milestone-year {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 3px;
}
.milestone-item h5 { font-weight: 700; margin-bottom: 5px; color: var(--secondary); }
.milestone-item p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* ── FAQs ── */
.faqs { 
    padding: 100px 0; 
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.faqs .accordion-item { 
    border: 2px solid #e2e8f0;
    border-radius: 18px !important; 
    margin-bottom: 16px; 
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}
.faqs .accordion-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
}
.faqs .accordion-button { 
    font-weight: 600; 
    color: var(--secondary); 
    background: white; 
    font-size: 1.05rem;
    padding: 22px 28px;
    transition: all 0.3s ease;
}
.faqs .accordion-button:hover {
    background: rgba(99, 102, 241, 0.02);
}
.faqs .accordion-button:not(.collapsed) { 
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.08));
    color: var(--primary); 
    box-shadow: none; 
}
.faqs .accordion-button::after { 
    filter: none; 
}
.faqs .accordion-button:not(.collapsed)::after { 
    filter: invert(50%) sepia(90%) saturate(500%) hue-rotate(200deg);
}
.faqs .accordion-body { 
    color: var(--gray); 
    font-size: 0.98rem; 
    background: white;
    padding: 20px 28px 28px;
    line-height: 1.7;
}

/* ── POPUP ── */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
}
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.popup-box {
    background: white;
    border-radius: 32px;
    padding: 55px 45px 45px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: translateY(40px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 50px 100px rgba(0,0,0,0.3);
    overflow: hidden;
}
.popup-overlay.active .popup-box {
    transform: translateY(0) scale(1);
}
.popup-box::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.popup-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.05), transparent 60%);
}
.popup-close {
    position: absolute;
    top: 20px; 
    right: 22px;
    width: 40px; 
    height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: var(--gray);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 1;
}
.popup-close:hover { 
    background: var(--primary); 
    color: white;
    transform: rotate(90deg);
}
.popup-icon {
    width: 90px; 
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.2rem;
    color: white;
    animation: popupPulse 2.5s infinite;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}
@keyframes popupPulse {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4), 0 0 0 0 rgba(99, 102, 241, 0.4); 
    }
    50% { 
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4), 0 0 0 20px rgba(99, 102, 241, 0); 
    }
}
.popup-box h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 14px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.popup-box p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.popup-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 100px;
    font-size: 1.35rem;
    font-weight: 800;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.3px;
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.popup-call-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.6s;
}
.popup-call-btn:hover::before {
    left: 100%;
}
.popup-call-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.5);
    color: white !important;
}
.popup-call-btn i { 
    font-size: 1.2rem; 
    animation: ringShake 2s infinite; 
}
@keyframes ringShake {
    0%, 100% { transform: rotate(0deg); }
    10%, 20% { transform: rotate(15deg); }
    15%, 25% { transform: rotate(-15deg); }
    30%, 60% { transform: rotate(0deg); }
}
.popup-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #94a3b8;
    position: relative;
    z-index: 1;
}
@media (max-width: 480px) {
    .popup-box { padding: 45px 28px 38px; }
    .popup-call-btn { font-size: 1.1rem; padding: 18px 32px; }
    .popup-icon { width: 80px; height: 80px; font-size: 2rem; }
    .popup-box h3 { font-size: 1.5rem; }
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .hero-slide h1 { font-size: 3.2rem; letter-spacing: -1px; }
    .hero-slide p { font-size: 1.1rem; }
    .hero-slide { min-height: 90vh; }
    .hero-slide .container { padding: 150px 0 100px; }
    .hero-btns { gap: 14px; }
    .hero-stats { 
        grid-template-columns: repeat(2, 1fr);
        gap: 16px; 
        margin-top: 45px; 
    }
    .hero-stat strong { font-size: 2rem; }
    .hero-visual { 
        margin-top: 50px; 
    }
    .hero-image-box img {
        height: 450px;
    }
    .hero-floating-card {
        padding: 18px;
    }
    .hero-floating-card .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    .hero-floating-card h4 {
        font-size: 1rem;
    }
    .hero-floating-card p {
        font-size: 0.8rem;
    }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-15px) scale(1.02); }
    .about-card { padding: 45px; }
    .section-title h2 { font-size: 2.4rem; }
    .step-connector { display: none; }
    .slider-arrow { width: 55px; height: 55px; font-size: 1.2rem; }
    .slider-arrow.prev { left: 20px; }
    .slider-arrow.next { right: 20px; }
}

@media (max-width: 767px) {
    .hero-slide { min-height: auto; }
    .hero-slide .container { padding: 140px 20px 80px; }
    .hero-slide h1 { font-size: 2.2rem; line-height: 1.2; margin-bottom: 22px; }
    .hero-slide p { font-size: 1rem; margin-bottom: 32px; }
    .hero-badge { 
        font-size: 0.8rem; 
        padding: 10px 20px; 
        margin-bottom: 22px; 
    }
    .hero-btns { 
        flex-direction: column; 
        gap: 12px;
        margin-bottom: 40px;
    }
    .hero-btns a { 
        width: 100%; 
        justify-content: center; 
        text-align: center; 
    }
    .hero-stats { 
        gap: 12px; 
        margin-top: 35px; 
    }
    .hero-stat { 
        padding: 20px 15px;
        border-radius: 18px;
    }
    .hero-stat strong { font-size: 1.8rem; }
    .hero-stat span { font-size: 0.8rem; }
    .hero-visual {
        display: none;
    }
    .slider-arrow { display: none; }
    .slider-controls {
        bottom: 30px;
    }
    .trust-bar .trust-items { gap: 18px; }
    .trust-item { font-size: 0.82rem; }
    .about-card { padding: 28px; }
    .coverage-box { padding: 40px 28px; }
    .cta h2 { font-size: 1.9rem; }
    .page-hero h1 { font-size: 2rem; }
    .page-hero { padding: 120px 0 60px; }
    .section-title h2 { font-size: 2rem; }
    .section-title p { font-size: 1rem; }
    .section-title { margin-bottom: 50px; }
}

@media (max-width: 480px) {
    .hero-slide h1 { font-size: 1.8rem; }
    .hero-slide .container { padding: 130px 16px 70px; }
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    .hero-stats { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px; 
    }
    .hero-stat { 
        padding: 16px 12px;
        border-radius: 16px;
    }
    .hero-stat strong { font-size: 1.6rem; }
    .hero-stat span { font-size: 0.75rem; }
    .btn-primary, .btn-outline { 
        padding: 14px 28px; 
        font-size: 0.9rem; 
    }
    .section-title h2 { font-size: 1.75rem; }
    .cta h2 { font-size: 1.6rem; }
    .coverage-box h3 { font-size: 1.8rem; }
    .feature-icon-wrap,
    .service-icon-wrap {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    .price-amount { font-size: 3rem; }
}
