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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    overflow-x: hidden;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==================== Particles ==================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(155, 47, 172, 0.15);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
}

.navbar.scrolled {
    background: rgba(26, 0, 51, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(155, 47, 172, 0.15);
    padding: 4px 0;
    border-bottom: 1px solid rgba(176, 64, 192, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    letter-spacing: 0.2px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E52B73, #F04B93);
    transition: width 0.3s;
    border-radius: 2px;
}

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

.btn-book-call {
    background: #fff;
    padding: 10px 26px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    color: #9B2FAC !important;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    border: none;
}

.btn-book-call:hover {
    transform: translateY(-2px);
    background: #F2DCF8;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.btn-book-call::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(160deg, #1A0A2E 0%, #2D0A4E 20%, #4A1670 40%, #9B2FAC 60%, #9B2FAC 80%, #CC8EE6 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(204, 142, 230, 0.25);
    top: -200px;
    right: -100px;
    animation: glow-pulse 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(229, 43, 115, 0.12);
    bottom: 10%;
    left: -100px;
    animation: glow-pulse 6s ease-in-out infinite reverse;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: rgba(155, 47, 172, 0.2);
    top: 40%;
    left: 40%;
    animation: glow-pulse 10s ease-in-out infinite;
}

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

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 100px;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 3;
}

.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.hero-badge i {
    color: #F7A8C9;
    font-size: 0.75rem;
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #E52B73, #CC8EE6, #F04B93);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: linear-gradient(135deg, #E52B73, #F04B93);
    color: #fff;
    box-shadow: 0 8px 30px rgba(229, 43, 115, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(229, 43, 115, 0.45);
}

.btn-primary i {
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: fit-content;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

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

/* Hero Visual */
.hero-visual {
    flex: 0 0 520px;
    position: relative;
}

.hero-lottie-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-lottie-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(204, 142, 230, 0.25), rgba(229, 43, 115, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glow-pulse 6s ease-in-out infinite;
    z-index: 0;
}

.hero-img {
    width: 520px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
    animation: hero-float 4s ease-in-out infinite;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Floating Cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-float-card i {
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.hero-float-1 {
    top: 40px;
    left: -50px;
    animation: float-card 4s ease-in-out infinite;
}

.hero-float-1 i {
    background: linear-gradient(135deg, #E52B73, #9B2FAC);
    color: #fff;
}

.hero-float-2 {
    bottom: 60px;
    right: -30px;
    animation: float-card 4s ease-in-out infinite 2s;
}

.hero-float-2 i {
    background: linear-gradient(135deg, #9B2FAC, #B040C0);
    color: #fff;
}

.hero-float-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
}

.hero-float-card span {
    display: block;
    font-size: 0.7rem;
    color: #888;
    font-weight: 500;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ==================== Section Common ==================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(155, 47, 172, 0.08), rgba(176, 64, 192, 0.08));
    border: 1px solid rgba(155, 47, 172, 0.12);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #9B2FAC;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 14px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==================== Services Section ==================== */
.services {
    padding: 100px 0 90px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 47, 172, 0.04), transparent 70%);
    border-radius: 50%;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 43, 115, 0.03), transparent 70%);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.service-card {
    text-align: center;
    padding: 40px 24px 36px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #F0E0F5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, rgba(155, 47, 172, 0.02), rgba(176, 64, 192, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(155, 47, 172, 0.12);
    border-color: rgba(155, 47, 172, 0.15);
}

.service-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #F2DCF8, #E4C4ED);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #9B2FAC, #B040C0);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 30px rgba(155, 47, 172, 0.3);
    border-radius: 18px;
}

.service-icon i {
    font-size: 1.7rem;
    color: #9B2FAC;
    transition: all 0.4s;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
    letter-spacing: -0.2px;
}

.service-card:hover h3 {
    color: #9B2FAC;
}

.service-card p {
    font-size: 0.92rem;
    color: #9ca3af;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* ==================== How It Works Section ==================== */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(160deg, #1A0A2E, #2D0A4E, #4A1670, #9B2FAC);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(204, 142, 230, 0.15), transparent 70%);
    border-radius: 50%;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 43, 115, 0.08), transparent 70%);
    border-radius: 50%;
}

.how-it-works .section-title {
    color: #fff;
}

.how-it-works .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.steps-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.step-card {
    text-align: center;
    padding: 36px 24px 32px;
    max-width: 220px;
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s;
    position: relative;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.step-number-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #E52B73, #F04B93);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(229, 43, 115, 0.35);
}

.step-card .step-icon {
    width: 64px;
    height: 64px;
    margin: 12px auto 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.step-card:hover .step-icon {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.08);
}

.step-card .step-icon i {
    font-size: 1.4rem;
    color: #F7A8C9;
}

.step-card h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.step-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.5;
    font-weight: 400;
}

.step-connector {
    display: flex;
    align-items: center;
    padding: 0 8px;
    position: relative;
}

.connector-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-radius: 2px;
}

.step-connector i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    margin-left: 4px;
}

/* ==================== Why / Who Section ==================== */
.why-who {
    padding: 100px 0;
    background: linear-gradient(180deg, #FBF5FE, #fff);
    position: relative;
}

.why-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.glass-card {
    padding: 44px 36px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #F0E0F5;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9B2FAC, #B040C0, #E52B73);
    border-radius: 24px 24px 0 0;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(155, 47, 172, 0.1);
    border-color: rgba(155, 47, 172, 0.12);
}

.card-icon-header {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #F2DCF8, #E4C4ED);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.card-icon-header i {
    font-size: 1.3rem;
    color: #9B2FAC;
}

.glass-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.glass-card ul li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 1.05rem;
    color: #4b5563;
    font-weight: 450;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.glass-card ul li:last-child {
    border-bottom: none;
}

.glass-card ul li:hover {
    padding-left: 6px;
    color: #1a1a2e;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #9B2FAC, #B040C0);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon i {
    font-size: 0.6rem;
    color: #fff;
}

/* ==================== CTA Section ==================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #120820, #1A0A2E, #2D0A4E);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 47, 172, 0.2), transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 6s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
}

.cta-subtitle {
    color: #F7A8C9;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E52B73, #F04B93);
    color: #fff;
    padding: 16px 38px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.35s;
    box-shadow: 0 8px 30px rgba(229, 43, 115, 0.3);
    letter-spacing: 0.2px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(229, 43, 115, 0.45);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    color: #25d366;
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.35s;
    border: 1px solid rgba(37, 211, 102, 0.3);
    letter-spacing: 0.2px;
}

.btn-whatsapp:hover {
    background: #25d366;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.3);
    border-color: #25d366;
}

.btn-whatsapp i,
.btn-cta i {
    font-size: 1.1rem;
}

/* ==================== Footer ==================== */
.footer {
    background: #120820;
    padding: 50px 0 0;
    border-top: 1px solid rgba(155, 47, 172, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-brand p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-links {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

.footer-item i {
    font-size: 0.85rem;
    color: #B040C0;
}

.footer-item a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
    font-weight: 450;
}

.footer-item a:hover {
    color: #fff;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: linear-gradient(135deg, #9B2FAC, #B040C0);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(155, 47, 172, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

/* ==================== Animations ==================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Service card staggered entrance */
.service-card {
    opacity: 0;
    transform: translateY(50px);
}

.service-card.service-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Step card staggered entrance */
.step-card {
    opacity: 0;
    transform: translateY(40px);
}

.step-card.step-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero entrance animations */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: hero-enter 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.hero-visual {
    opacity: 0;
    transform: translateY(30px);
    animation: hero-enter 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes hero-enter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-bottom: 140px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        margin: 0 auto;
    }

    .hero-visual {
        flex: 0 0 auto;
    }

    .hero-img {
        width: 420px;
    }

    .hero-float-1 {
        left: 0;
    }

    .hero-float-2 {
        right: 0;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 0, 26, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 0;
        gap: 6px;
        border-bottom: 1px solid rgba(176, 64, 192, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-container {
        padding: 12px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .hero-float-card {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-card {
        padding: 28px 16px 24px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .step-connector {
        transform: rotate(90deg);
        padding: 4px 0;
    }

    .step-card {
        max-width: 280px;
        width: 100%;
    }

    .why-who-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .glass-card {
        padding: 32px 24px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

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

    .section-container {
        padding: 0 20px;
    }

    .hero-container {
        padding: 40px 20px 120px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.65rem;
    }

    .hero-img {
        width: 320px;
    }

    .hero-lottie-glow {
        width: 220px;
        height: 220px;
    }

    .hero-stats {
        gap: 16px;
        padding: 16px 20px;
    }

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

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .service-card {
        padding: 24px 12px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .service-icon i {
        font-size: 1.3rem;
    }

    .btn {
        padding: 13px 26px;
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
}
