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

* {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body {
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #9c4d8e 0%, #b86ba8 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Decorative dots pattern - top left */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.8;
}


/* Decorative striped circle - top right */
.hero::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: repeating-linear-gradient(
        45deg,
        #ffca18,
        #ffca18 8px,
        #ffd84d 8px,
        #ffd84d 16px
    );
    opacity: 0.9;
}

/* Decorative chevron at bottom */
.hero-chevron {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, transparent 25%, #b86ba8 25%, #b86ba8 50%, transparent 50%);
    background-size: 60px 60px;
    z-index: 1;
}

.logo-container {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.logo-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    position: center;
}

.hero-content {
    max-width: 100%;
    width: 100%;
    margin: auto 0;
    padding-left: 4rem;
    padding-right: 2rem;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.text-content {
    max-width: 70%;
    text-align: left;
    margin-top: 2rem;
}

.profile-image {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 8px solid #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: visible;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 2rem;
}

.big-profile-image {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 8px solid #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: visible;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 2rem;
}

/* Sunbeams effect - outer beams */
.profile-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    transform: translate(-50%, -50%);
    background: 
        radial-gradient(ellipse 350px 750px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
        radial-gradient(ellipse 350px 750px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
        radial-gradient(ellipse 350px 750px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
        radial-gradient(ellipse 350px 750px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
        radial-gradient(ellipse 350px 750px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
        radial-gradient(ellipse 350px 750px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
        radial-gradient(ellipse 350px 750px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
        radial-gradient(ellipse 350px 750px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%);

    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.95;
    animation: rotateBeams 20s linear infinite;
}

@keyframes rotateBeams {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Inner glow */
.profile-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 202, 24, 0.4) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 50%;
}

.hero h1 {
    font-size: 5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: left;
}

.signup-button {
    display: inline-block;
    background-color: #ffca18;
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: bold;
    padding: 1rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 202, 24, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 202, 24, 0.5);
    background-color: #ffd84d;
}

/* Content Section */
.content {
    background: #9c4d8e;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-box {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.content-box h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-text {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

.highlight {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

/* CTA Button */
.cta-container {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    background-color: #ffca18;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1.25rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 202, 24, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 202, 24, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #9c4d8e 0%, #b86ba8 100%);
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* ========== SURVEY PAGE STYLES ========== */

/* Survey Hero Section */
.survey-hero {
    min-height: 50vh;
}

.survey-content {
    justify-content: center;
    text-align: center;
}

.survey-content .text-content {
    max-width: 100%;
    text-align: center;
}

.survey-content h1 {
    text-align: center;
}

.survey-content .hero-subtitle {
    text-align: center;
}

/* Survey Form */
.survey-form {
    width: 100%;
}

.question-container {
    margin-bottom: 2.5rem;
}

.question-title {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    display: block;
    text-align: center;
}

.question-subtitle {
    max-width: 620px;
    margin: -0.25rem auto 1.25rem;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 202, 24, 0.14);
    border: 1px solid rgba(255, 202, 24, 0.45);
    border-radius: 12px;
    color: #fffdf5;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.question-subtitle strong {
    color: #ffca18;
    letter-spacing: 0.01em;
}

/* Survey Select Dropdown */
.survey-select {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    padding: 1.25rem;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

.survey-select:focus {
    outline: none;
    border-color: #ffca18;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 202, 24, 0.2);
}

.survey-select option {
    padding: 1rem;
    background-color: #ffffff;
    color: #1a1a1a;
}

.survey-select option:disabled {
    color: #999;
}

/* Email Input */
.email-input {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    padding: 1.25rem;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #ffca18;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 202, 24, 0.2);
}

.email-input::placeholder {
    color: #666;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-message h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Pricing grid + Card */
.pricing-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
    margin: 1.25rem 0;
    flex-wrap: wrap;
}

/* Countdown Timer visibility */
.countdown-timer-mobile {
    display: none;
}

.countdown-timer-desktop {
    display: block;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
    border: 2px solid rgba(156, 77, 142, 0.35);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    text-align: center;
    transition: all 0.28s ease;
    box-shadow: 0 8px 24px rgba(156, 77, 142, 0.18);
    flex: 1 1 260px;
    max-width: 420px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(156, 77, 142, 0.22);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9c4d8e;
    margin: 0;
}

.card-icon {
    font-size: 1.6rem;
}

.card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: #9c4d8e;
}

.price-period {
    font-size: 1rem;
    color: rgba(156, 77, 142, 0.85);
    font-weight: 600;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    text-align: left;
    flex-grow: 1;
}

.card-features li {
    color: #7b476e;
    font-size: 0.98rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-weight: 600;
}

.feature-check {
    color: #28a745;
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: -2px;
}

.card-cta {
    background-color: #ffca18;
    color: #6b2b5d;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.22s ease;
    box-shadow: 0 6px 18px rgba(156, 77, 142, 0.12);
    align-self: center;
}

.card-cta:hover {
    background-color: #ffd84d;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(156, 77, 142, 0.18);
}

.card-cta:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Swap countdown timer visibility on mobile */
    .countdown-timer-mobile {
        display: block;
        margin-bottom: 1rem;
    }

    .countdown-timer-desktop {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-left: 0;
    }
    
    .text-content {
        text-align: center;
        max-width: 100%;
        margin-top: 5rem;
    }
    
    .profile-image {
        margin-left: 20%;
        margin-top: 2rem;
        width: 400px;
        height: 400px;
    }
    
    .profile-image::before {
        width: 320px;
        height: 320px;
    }
    
    .profile-image::after {
        width: 240px;
        height: 240px;
    }
    
    .hero h1 {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .signup-button {
        font-size: 2rem;
        padding: 0.875rem 2rem;
    }
    
    .logo-container {
        width: 120px;
        height: 50px;
        top: 1rem;
        left: 1rem;
    }
    
    .content-box {
        padding: 1.5rem;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 1rem 2.5rem;
    }
    
    .hero::after {
        width: 120px;
        height: 120px;
        top: -30px;
        right: -30px;
    }

    .profile-image::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 1000px;
        height: 1000px;
        transform: translate(-50%, -50%);
        background: 
            radial-gradient(ellipse 180px 400px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
            radial-gradient(ellipse 180px 400px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
            radial-gradient(ellipse 180px 400px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
            radial-gradient(ellipse 180px 400px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
            radial-gradient(ellipse 180px 400px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
            radial-gradient(ellipse 180px 400px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
            radial-gradient(ellipse 180px 400px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%),
            radial-gradient(ellipse 180px 400px at 50% 50%, transparent 35%, #ffca18 40%, #ffca18 45%, transparent 50%);

        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
        opacity: 0.95;
        animation: rotateBeams 20s linear infinite;
    }
    
    .logo-container {
        position: absolute;
        top: 2rem;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    /* Survey Responsive Styles */
    .question-title {
        font-size: 1.2rem;
    }

    .option-content {
        font-size: 1rem;
    }

    .option-icon {
        font-size: 1.5rem;
    }

    .email-input {
        font-size: 1rem;
        padding: 1rem;
    }
}

.body {
    background: linear-gradient(135deg, #9c4d8e 0%, #b86ba8 100%);
}
