.feature-icon i {
    width: 32px;
    height: 32px;
    color: currentColor;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 40px;
    background: rgba(12, 0, 8, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 125, 125, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background:linear-gradient(90deg, #c06755, #e1056c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navbar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-link:hover {
    color: #ffffff;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e25134, #c25889);
    transition: width 0.3s ease;
}

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

.navbar-btn {
    padding: 6px 20px;
    background: linear-gradient(90deg, #e25134, #c25889);
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-btn:hover {
    background: linear-gradient(135deg, #b8412a, #8c4063);
    color: rgb(255, 255, 255);
}

.navbar-login {
    padding: 8px 20px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

/* Mobile menu toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background: #e56e06;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(12, 0, 8, 0.9) 0%, rgba(0, 0, 0, 0.9) 50%),
                linear-gradient(180deg, #000 0%, #0c0008 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

/* AI Grid Effect - FIXED: Added back missing hero animations */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(12, 0, 8, 0.01) 2px, rgba(12, 0, 8, 0.01) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(12, 0, 8, 0.01) 2px, rgba(12, 0, 8, 0.01) 4px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    transform: perspective(500px) rotateX(60deg);
}

/* Holographic Scanlines - FIXED: Added back missing hero animations */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(12, 0, 8, 0.01) 2px,
        rgba(12, 0, 8, 0.01) 4px
    );
    animation: scanlines 8s linear infinite;
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    animation: fade-in-left 1s ease-out;
}

.hero-right {
    animation: fade-in-right 1s ease-out 0.3s both;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.hero-headline {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.7rem;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #c06755, #e1056c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: rgb(191, 90, 139);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #e25134, #c25889);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #e25134, #c25889);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
    box-shadow: 0 1px 3px rgb(147, 77, 11);
}

.hero-cta:hover {
    box-shadow: 0 1px 4px rgb(147, 77, 11);
    filter: brightness(1.2);
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgb(191, 90, 139);
    border: 2px solid rgb(191, 90, 139);
    transition: all 0.4s ease;
    animation: fade-in-up 1.5s ease-out 0.8s both;
    background: rgba(0, 0, 0, 0.8);
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px #c25889;
    border-color: #c25889;
}

.video-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* YouTube Player Styles */
.ytp-cued-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.ytp-cued-thumbnail-overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.ytp-large-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.ytp-large-play-button-red-bg {
    background: #f00;
    border-radius: 14px;
}

.ytp-large-play-button-bg {
    transition: fill .1s cubic-bezier(0.4,0.0,1,1),fill-opacity .1s cubic-bezier(0.4,0.0,1,1);
}

/* FIXED: Original Calendly Container Styles */
.calendly-container {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.08), rgba(255, 0, 255, 0.08));
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

.calendly-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
    text-align: center;
}

/* Mini Calendly Container - Hidden */
.mini-calendly-container {
    display: none;
}

/* Compact How It Works - In Hero */
.compact-how-it-works {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem auto 1.5rem;
    max-width: 900px;
}

.compact-step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.compact-step:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.compact-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.compact-step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.compact-step-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(180deg, rgba(103, 1, 109, 0.1), rgba(127, 1, 134, 0.1));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* FIXED: Added back missing grid background */
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 255, 255, 0.02) 2px, rgba(0, 255, 255, 0.02) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 255, 0.02) 2px, rgba(0, 255, 255, 0.02) 4px);
    background-size: 40px 40px;
    animation: grid-drift 30s linear infinite;
    opacity: 0.5;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.step-card {
    background: linear-gradient(135deg, rgba(229, 110, 6, 0.05), rgba(255, 0, 170, 0.05));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(229, 110, 6, 0.3); 
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-align: center;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(229, 110, 6, 0.7), rgba(255, 1, 170, 0.7));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s;
}

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

.step-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px rgba(109, 51, 1, 0.7),
                0 0 0 1px rgba(109, 51, 1, 1);
    border-color: transparent;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(109, 51, 1, 0.7), rgba(134, 1, 90, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    box-shadow: 0 0 30px rgba(229, 110, 6, 0.7);
    animation: number-pulse 2s ease-in-out infinite;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: ripple 2s ease-out infinite;
}

.step-title {
    font-family: 'Exo 2', sans-serif;
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.4;
}

.step-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

/* Features Section */
.features {
    background: linear-gradient(180deg, rgba(103, 1, 109, 0.1), rgba(127, 1, 134, 0.1));
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(229, 110, 6, 0.05), rgba(255, 0, 170, 0.05));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(229, 110, 6, 0.3); 
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #c97a0c, #741374, #410e5d);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s;
}

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

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 30%, rgba(238, 0, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.feature-card:hover::after {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(174, 0, 255, 0.4),
                0 0 0 1px rgba(255, 0, 230, 0.5);
    border-color: transparent;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(109, 51, 1, 0.7), rgba(134, 1, 90, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 111, 0, 0.5);
    animation: icon-pulse 2s ease-in-out infinite;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 145, 0, 0.5);
    animation: ripple 2s ease-in-out infinite;
}

.feature-title {
    font-family:'Exo 2', sans-serif;
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: 1px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, rgba(103, 1, 109, 0.1), rgba(127, 1, 134, 0.1));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 255, 255, 0.02) 2px, rgba(0, 255, 255, 0.02) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 255, 0.02) 2px, rgba(0, 255, 255, 0.02) 4px);
    background-size: 40px 40px;
    animation: grid-drift 30s linear infinite;
    opacity: 0.5;
}

/* Pricing Contact Wrapper - Two Column Layout */
.pricing-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

/* Left Side: Information */
.pricing-info {
    background: linear-gradient(135deg, rgba(109, 51, 1, 0.2), rgba(134, 45, 1, 0.2));
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(229, 110, 6, 0.7);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 30px rgba(229, 110, 6, 0.7);
}

.pricing-info-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e25134, #c25889);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.pricing-info-subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #d8715c;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-info-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.pricing-info-section {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 3px solid rgba(162, 162, 162, 0.2);
}

.pricing-info-section-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.pricing-info-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-info-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-info-features .feature-check {
    width: 28px;
    height: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #e25134, #c25889);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* Right Side: Form */
.pricing-form-container {
    background: linear-gradient(180deg, rgba(103, 1, 109, 0.1), rgba(127, 1, 134, 0.1));
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.7);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ff00ff;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.pricing-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-contact-form .form-group label {
    font-family: 'Exo 2', sans-serif;
    color: #fefefe;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.pricing-contact-form .form-group input,
.pricing-contact-form .form-group textarea,
.pricing-contact-form .form-group select {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(132, 0, 255, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.pricing-contact-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2300ffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.pricing-contact-form .form-group input:focus,
.pricing-contact-form .form-group textarea:focus,
.pricing-contact-form .form-group select:focus {
    outline: none;
    border-color: #9500ff;
    box-shadow: 0 0 20px rgba(132, 0, 255, 0.3);
    background: rgba(0, 0, 0, 0.8);
}

.pricing-contact-form .form-group input::placeholder,
.pricing-contact-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-contact-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* reCAPTCHA v3 badge positioning - Google adds a badge automatically */
.grecaptcha-badge {
    visibility: hidden;
}

.pricing-contact-form .form-submit-btn {
    background: linear-gradient(90deg, #e25134, #c25889);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.4);
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.pricing-contact-form .form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.6);
    filter: brightness(1.1);
}

.pricing-contact-form .form-submit-btn:active {
    transform: translateY(0);
}

.pricing-contact-form .form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Old pricing styles - keeping for reference/backward compatibility */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(109, 51, 1, 0.7), rgba(134, 1, 90, 0.7));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(229, 110, 6, 1); 
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-align: center;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(109, 51, 1, 0.7), rgba(134, 1, 90, 0.7));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s;
}

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

.pricing-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 30px rgba(229, 110, 6, 0.7);
    border-color: transparent;
}

.pricing-card-highlight {
    border: 2px solid rgba(255, 0, 255, 0.5);
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.08), rgba(0, 255, 255, 0.08));
    transform: scale(1.05);
}

.pricing-card-highlight:hover {
    transform: translateY(-10px) scale(1.08);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff00ff, #ff0080);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.pricing-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: #00ffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.pricing-period {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-touches {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.pricing-special {
    color: #ff00ff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-left: 30px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-overage {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.pricing-overage p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.pricing-overage strong {
    color: #00ffff;
    font-weight: 700;
}

/* Stats Section */
.stats {
    background: linear-gradient(180deg, rgba(103, 1, 109, 0.1), rgba(127, 1, 134, 0.1));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* FIXED: Added back missing matrix rain effect */
.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(0deg, transparent 0%, rgba(221, 0, 255, 0.05) 50%, transparent 100%);
    animation: matrix-rain 10s linear infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.stat-item {
    padding: 2rem 1rem;
    background: rgba(140, 0, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(212, 0, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.stat-item:hover::before {
    width: 200px;
    height: 200px;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #cc00ff;
    box-shadow: 0 20px 40px rgba(136, 0, 255, 0.4),
                inset 0 0 20px rgba(77, 4, 141, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #e25134, #c25889);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    text-shadow: 0 0 30px rgba(186, 96, 23, 0.5);
    animation: stat-glow 2s ease-in-out infinite;
    line-height: 1;
    word-break: keep-all;
    white-space: nowrap;
}

.stat-label {
    font-family: 'Exo 2', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    background: rgba(140, 0, 255, 0.05);
    padding: 30px 0 20px;
    position: relative;
    border-top: 1px solid rgba(195, 0, 255, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140, 0, 255, 0.5), transparent);
    animation: pulse-line 3s ease-in-out infinite;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-text {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    background: linear-gradient(90deg, #ff8000, #f922eb, #9e06c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
    letter-spacing: 0.5px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    margin-top: 6px;
}

.footer-text:hover {
    animation: shimmer 1.5s linear infinite;
}

/* Floating elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

/* AI particles */
.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.ai-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(147, 77, 11, 0.5), transparent);
    border-radius: 50%;
    animation: float-up 15s infinite linear;
}

/* Button Variants */
.btn-secondary {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border: 2px solid #00ffff;
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    border-radius: 50px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.btn-tertiary {
    background: rgba(255, 0, 255, 0.1);
    color: #ff00ff;
    border: 2px solid #ff00ff;
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-tertiary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
    border-radius: 50px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.btn-tertiary:hover::before {
    opacity: 1;
}

.btn-tertiary:hover {
    transform: translateY(-3px) scale(1.05);
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.btn-quaternary {
    background: rgba(255, 0, 255, 0.1);
    color: #ff00ff;
    border: 2px solid #ff00ff;
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-quaternary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
    border-radius: 50px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.btn-quaternary:hover::before {
    opacity: 1;
}

.btn-quaternary:hover {
    transform: translateY(-3px) scale(1.05);
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

/* Cookie Consent Styles */
.cookie-consent-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 16px;
    background: rgba(0, 0, 0, 0);
    animation: slideUp 0.3s ease-out;
}

.cookie-consent-card {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(229, 135, 4, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid rgba(250, 143, 2, 0.3);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(236, 142, 1, 0.2);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #ff7b00;
    text-shadow: 0 0 10px rgba(255, 136, 0, 0.5);
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-accept-all, .btn-essential {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.btn-accept-all {
    background: linear-gradient(90deg, #c06755, #e1056c);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.btn-accept-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.6);
}

.btn-essential {
    background: rgba(200, 0, 255, 0.1);
    color: #dd00ff;
    border: 2px solid #dd00ff;
}

.btn-essential:hover {
    background: rgba(234, 0, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(166, 0, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .hero-left {
        text-align: center;
    }

    .hero-features {
        align-items: center;
    }

    .hero-feature-item {
        justify-content: center;
    }

    .compact-how-it-works {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
        top: 32px;
    }

    .navbar-logo {
        font-size: 1.5rem;
    }

    .navbar-menu {
        position: fixed;
        top: 92px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 255, 255, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero {
        padding: 112px 0 40px;
    }

    .hero-content {
        padding: 0 20px;
        gap: 30px;
    }

    .hero-left {
        text-align: left;
    }

    .hero-headline {
        font-size: 2.2rem;
        text-align: left;
    }

    .hero-subheadline {
        font-size: 1.1rem;
        text-align: left;
    }

    .hero-description {
        font-size: 1rem;
        text-align: left;
    }

    .hero-features {
        align-items: flex-start;
    }

    .hero-feature-item {
        justify-content: flex-start;
    }

    .hero-cta {
        padding: 14px 35px;
        font-size: 1rem;
    }

    .mini-calendly-container,
    .calendly-container {
        padding: 20px;
    }

    .compact-how-it-works {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem auto 1rem;
    }

    .compact-step {
        padding: 1.2rem 0.8rem;
    }

    .compact-step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 1.15rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing {
        padding: 60px 0;
    }

    .pricing-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pricing-info,
    .pricing-form-container {
        padding: 2rem;
    }

    .pricing-info-title {
        font-size: 2rem;
    }

    .pricing-info-subtitle {
        font-size: 1rem;
    }

    .pricing-info-description {
        font-size: 0.95rem;
    }

    .pricing-form-title {
        font-size: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card-highlight {
        transform: scale(1);
    }

    .pricing-card-highlight:hover {
        transform: translateY(-10px) scale(1.03);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 0.5rem;
        min-height: 100px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .footer {
        padding: 25px 0 15px;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.7rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .btn-accept-all, .btn-essential {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .stat-item {
        padding: 1.2rem 0.5rem;
        min-height: 90px;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Animation Keyframes for Components */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes number-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(0, 255, 255, 0.9);
    }
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 150%;
        height: 150%;
        opacity: 0;
    }
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(0, 255, 255, 0.8);
    }
}

@keyframes stat-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) drop-shadow(0 0 20px rgba(0, 255, 255, 0.8)); }
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* FIXED: Added back missing animations that were in the original */
@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateX(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateX(50px); }
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes grid-drift {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(40px) translateY(40px); }
}

@keyframes matrix-rain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Announcement Banner */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    background: rgba(12, 0, 8, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideDown 0.5s ease-out;
    border-bottom: 1px solid rgba(129, 129, 129, 0.2);
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.announcement-text {
    font-family: 'Exo 2', sans-serif;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.2px;
}

.announcement-btn {
    background: linear-gradient(135deg, #e25134, #c25889);
    border: 1px solid rgba(73, 74, 74, 0.4);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.announcement-btn:hover {
    background: linear-gradient(135deg, #e25134, #c25889);
    border-color: 1px solid rgba(197, 198, 198, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transform: translateX(2px);
}

/* Navbar is always below banner now (no need for :has selector) */
.hero {
    padding-top: 116px;
}

/* Contact Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10002;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, rgba(229, 110, 6, 0.05), rgba(255, 0, 170, 0.05));
    border: 2px solid rgba(166, 0, 255, 0.4);
    border-radius: 25px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(174, 0, 255, 0.3);
    animation: slideUp 0.4s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(90, 7, 138, 0.1);
    border: 1px solid rgba(69, 3, 113, 0.3);
    color: #f700ff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(115, 7, 150, 0.2);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(109, 8, 157, 0.5);
}

.modal-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a200ff, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Exo 2', sans-serif;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: rgba(13, 0, 20, 0.5);
    border: 2px solid rgba(149, 15, 190, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d000ff;
    box-shadow: 0 0 20px rgba(130, 6, 139, 0.3);
    background: rgba(0, 0, 0, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(90deg, #c06755, #e1056c);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(180, 27, 106, 0.4);
    letter-spacing: 0.5px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(174, 0, 255, 0.6);
    filter: brightness(1.1);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b700ff, #450189);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: #000;
    box-shadow: 0 0 40px rgba(144, 0, 255, 0.6);
    animation: successPop 0.5s ease-out;
}

.form-success h3 {
    color: #ae00ff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.founder-connect {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(162, 0, 255, 0.2);
}

.founder-title {
    font-family: 'Exo 2', sans-serif;
    color: #d900ff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.founder-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.founder-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(84, 7, 94, 0.1);
    border: 1px solid rgba(187, 0, 255, 0.3);
    padding: 12px 20px;
    border-radius: 25px;
    color: #9d00ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.founder-link:hover {
    background: rgba(157, 0, 255, 0.2);
    border-color: #c300ff;
    box-shadow: 0 0 20px rgba(166, 0, 255, 0.3);
    transform: translateY(-2px);
}

.founder-link svg {
    flex-shrink: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .announcement-banner {
        padding: 6px 15px;
    }

    .announcement-text {
        font-size: 0.8rem;
    }

    .announcement-btn {
        padding: 5px 12px;
        font-size: 0.85rem;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 10px;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .modal-subtitle {
        font-size: 0.9rem;
    }

    .founder-links {
        flex-direction: column;
    }

    .founder-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .announcement-banner {
        padding: 8px 15px;
    }

    .announcement-content {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
    }

    .announcement-text {
        font-size: 0.75rem;
        text-align: center;
        flex: 1;
        min-width: 200px;
    }

    .announcement-btn {
        padding: 4px 10px;
        font-size: 0.8rem;
    }

    .navbar {
        top: 40px;
    }

    .navbar-menu {
        top: 100px;
    }

    .hero {
        padding: 120px 0 40px;
    }

    .hero-left {
        text-align: left;
    }

    .hero-headline {
        text-align: left;
    }

    .hero-subheadline {
        text-align: left;
    }

    .hero-description {
        text-align: left;
    }

    .hero-features {
        align-items: flex-start;
    }

    .hero-feature-item {
        justify-content: flex-start;
    }
}