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

:root {
    --bg-dark: #0f1c24;
    --bg-medium: #162630;
    --bg-light: #1f333e;

    --primary-gold: #d4af37;

    --text-white: #ffffff;
    --text-gray: #b0bec5;

    --max-width: 1100px;
    --padding-desktop: 72px;
    --padding-mobile: 40px;
    --gap-cols: 32px;
    --radius-cards: 12px;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: var(--text-white);
}

h1 {
    font-size: 52px;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    font-weight: 600;
}

p {
    font-size: 19px;
    color: var(--text-gray);
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.section-padding {
    padding: var(--padding-desktop) 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-cols);
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-cols);
}

/* Common Components */
.btn-cta {
    display: inline-block;
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

.gold-line {
    width: 4px;
    height: 60px;
    background-color: var(--primary-gold);
    margin-right: 20px;
    flex-shrink: 0;
}

.gold-icon {
    color: var(--primary-gold);
    font-size: 24px;
}

/* Responsive Rules */
@media (max-width: 992px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    p {
        font-size: 17px;
    }

    .section-padding {
        padding: var(--padding-mobile) 0;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mobile-stack {
        flex-direction: column;
    }

    .mobile-order-last {
        order: 2;
    }

    .mobile-order-first {
        order: 1;
    }

    .hero-image {
        margin-top: 40px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Premium Animations */
[data-lucide] {
    transition: var(--transition);
}

.mini-card:hover .gold-icon,
.practice-card:hover .gold-icon {
    transform: scale(1.1) rotate(5deg);
}

.practice-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold) !important;
    background: var(--bg-light) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step:hover .step-number {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--primary-gold);
}

.btn-cta {
    transform-origin: center;
}

.btn-cta:active {
    transform: scale(0.95);
}

/* Blur effects for premium feel */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.how-i-work {
    position: relative;
}

.how-i-work::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}