* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #ec4899;
    --primary-pink-dark: #db2777;
    --primary-pink-light: #f472b6;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --text-white: #ffffff;
    --text-light: #cbd5e1;
    --text-gray: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --premium-gold: #fbbf24;
    --premium-purple: #a855f7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 25%, #2d1b4e 50%, #1a1a3a 75%, #0a0a1a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Background Shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    border-radius: 50%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    top: 80%;
    right: 5%;
    border-radius: 50%;
    animation-delay: 8s;
}

.glow-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-pink);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-pink), 0 0 40px var(--primary-pink);
    animation: pulse-glow 3s infinite ease-in-out;
}

.dot-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.dot-2 {
    top: 50%;
    right: 25%;
    animation-delay: 1s;
}

.dot-3 {
    bottom: 30%;
    left: 40%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo i {
    font-size: 2rem;
    color: var(--primary-pink);
    animation: pulse 2s infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-pink-light));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    background: var(--primary-pink);
    color: var(--text-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.header-cta:hover {
    background: var(--primary-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.header-cta i {
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-title .text-white {
    display: block;
    margin-bottom: 0.5rem;
}

.hero-title .text-pink {
    display: block;
}

.text-white {
    color: var(--text-white);
}

.text-pink {
    color: var(--primary-pink);
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.1rem 2.25rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-pink-dark) 0%, var(--primary-pink) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.5);
}

.btn-primary i {
    font-size: 1.15rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 2px solid rgba(236, 72, 153, 0.3);
    backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    background: rgba(236, 72, 153, 0.1);
    border-color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.2);
}

.btn-card {
    width: 100%;
    background: var(--primary-pink);
    color: var(--text-white);
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-card:hover {
    background: var(--primary-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
}

.btn-card i {
    font-size: 1.2rem;
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-pink);
    display: inline-flex;
    align-items: center;
    
    margin-left: -28px;
}

.btn-outline:hover {
    background: var(--primary-pink);
}

.btn-outline i {
    font-size: 1.1rem;
}

.btn.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-pink);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badges {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-badge {
    position: absolute;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
    animation: float-badge 8s infinite ease-in-out;
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.2);
}

.badge-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.badge-2 {
    top: 45%;
    right: 5%;
    animation-delay: 2.5s;
}

.badge-3 {
    bottom: 5%;
    left: 15%;
    animation-delay: 5s;
}

.floating-badge i {
    color: var(--primary-pink);
    font-size: 1.5rem;
    flex-shrink: 0;
}

@keyframes float-badge {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.9;
    }
    33% {
        transform: translate(15px, -15px) rotate(2deg);
        opacity: 1;
    }
    66% {
        transform: translate(-10px, 10px) rotate(-2deg);
        opacity: 1;
    }
}

/* Section Styles */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
    color: var(--text-white);
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.section-title {
    font-size: 3.25rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    color: var(--text-white);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    max-width: 750px;
    line-height: 1.75;
    margin-left: auto;
    margin-right: auto;
}

/* About Automation Section */
.about-automation {
    padding: 120px 0;
    text-align: center;
}

.about-automation .section-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Packages Section */
.packages-section {
    padding: 120px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.package-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }
.package-card:nth-child(4) { animation-delay: 0.4s; }
.package-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card:hover {
    transform: translateY(-12px);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.25);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(168, 85, 247, 0.08) 100%);
}

.package-card.featured {
    border: 2px solid var(--primary-pink);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.35), inset 0 0 30px rgba(236, 72, 153, 0.05);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.package-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
    color: var(--text-white);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
    z-index: 10;
}

.package-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    color: var(--text-white);
    line-height: 1.3;
}

.package-price {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-original {
    display: block;
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.price-current {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-pink);
    line-height: 1;
}

.price-range {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-pink);
    line-height: 1;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    padding: 0.85rem 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.package-features i {
    color: var(--primary-pink);
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.consultation-prompt {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.consultation-prompt p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 500;
}

.website-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.2);
}

.feature-box i {
    font-size: 3.5rem;
    color: var(--primary-pink);
    margin-bottom: 1.25rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.1);
}

.feature-box h4 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    font-weight: 700;
}

.feature-box p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Special Offer Section */
.special-offer-section {
    padding: 120px 0;
    position: relative;
}

/* Remove all particles - no animation */
.offer-particles {
    display: none;
}

.special-offer-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 32px;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(236, 72, 153, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 70px rgba(236, 72, 153, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Remove rotating glow completely */
.offer-glow {
    display: none;
}

/* Remove sparkles completely */
.offer-sparkles {
    display: none;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.5);
}

.offer-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.offer-price {
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

.offer-timer {
    margin: 3rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.offer-timer i {
    color: var(--primary-pink);
    font-size: 1.5rem;
}

.countdown {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 100px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.2);
    background: rgba(236, 72, 153, 0.08);
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-features-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.pulse-btn {
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
    transition: all 0.3s ease;
}

.pulse-btn:hover {
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.6);
    transform: translateY(-2px);
}

.pulse-btn:active {
    transform: translateY(0);
}

@keyframes button-pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
    }
    50% {
        box-shadow: 0 0 50px rgba(236, 72, 153, 0.9);
    }
}

.limited-badge {
    margin-top: 2.5rem;
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

/* Features Section */
.features-section {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.25);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(168, 85, 247, 0.08) 100%);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-pink);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.feature-icon i {
    font-size: 2.25rem;
    color: var(--primary-pink);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.satisfaction-badge {
    text-align: center;
    margin-top: 4rem;
}

.satisfaction-badge span {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4);
    animation: pulse-scale 3s infinite ease-in-out;
}

/* Founder Section */
.founder-section {
    padding: 120px 0;
}

.founder-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 5rem 4rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.founder-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.founder-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border: 4px solid var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.3);
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.founder-avatar:hover {
    transform: scale(1.05);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.founder-avatar i {
    display: none;
}

.founder-details h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.founder-role {
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.founder-bio {
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
    font-size: 1.125rem;
    min-height: 150px;
}

.typing-cursor {
    color: var(--primary-pink);
    font-size: 1.5rem;
    font-weight: 300;
    animation: blink-cursor 1s infinite;
    margin-left: 5px;
}

@keyframes blink-cursor {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Footer */
.footer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-light);
    margin-top: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-links a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-pink);
}

.footer-contact p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero {
        padding: 140px 0 100px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        gap: 2rem;
        justify-content: space-around;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-title {
        font-size: 2.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .special-offer-card {
        padding: 3rem 2rem;
        backdrop-filter: blur(20px);
        border-radius: 30px;
        border-width: 2px;
    }
    
    .offer-title {
        font-size: 2.5rem;
    }
    
    .offer-badge {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .offer-price {
        margin: 2rem 0;
    }
    
    .offer-timer {
        margin: 2rem 0;
    }
    
    .countdown {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .countdown-item {
        padding: 1rem 1.25rem;
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .offer-features-wrapper {
        margin: 1.5rem 0;
        padding: 1.5rem;
    }
    
    .package-features li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .pulse-btn {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
    
    .limited-badge {
        margin-top: 1.5rem;
        font-size: 0.85rem;
    }

    .founder-info {
        flex-direction: column;
    }

    .founder-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 1.25rem;
    }

    .hero {
        padding: 130px 0 90px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .package-card {
        padding: 2rem 1.5rem;
    }

    .special-offer-section {
        padding: 80px 0;
    }
    
    .special-offer-card {
        padding: 2.5rem 1.5rem;
        backdrop-filter: blur(15px);
        border-radius: 24px;
    }
    
    .offer-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .offer-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .offer-price {
        margin: 1.5rem 0;
    }
    
    .savings-badge {
        padding: 0.4rem 0.85rem;
        font-size: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .offer-timer {
        margin: 1.5rem 0;
        font-size: 0.9rem;
    }
    
    .offer-timer i {
        font-size: 1.25rem;
    }
    
    .countdown {
        gap: 0.75rem;
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown-item {
        padding: 0.85rem 1rem;
        min-width: 65px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .offer-features-wrapper {
        margin: 1.25rem 0;
        padding: 1.25rem;
    }
    
    .package-features li {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .pulse-btn {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .limited-badge {
        margin-top: 1.25rem;
        font-size: 0.8rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    /* Clean premium mobile styling */
    .special-offer-card {
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
        box-shadow: 
            0 15px 50px rgba(236, 72, 153, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.05);
    }
    
    .countdown-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(236, 72, 153, 0.2);
        transition: all 0.3s ease;
    }
    
    .countdown-item:hover {
        background: rgba(236, 72, 153, 0.1);
        border-color: rgba(236, 72, 153, 0.3);
    }
    
    .package-features li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .package-features li:last-child {
        border-bottom: none;
    }
}
