:root {
    --primary-color: #4682B4;
    --secondary-color: #87CEEB;
    --text-color: #1f2937;
    --light-gray: #f3f4f6;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    color: var(--white);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 50px;
    width: 50px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Features Section */
#features {
    padding: 4rem 1rem;
    background-color: var(--light-gray);
}

#features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Pricing Section */
#pricing {
    padding: 4rem 1rem;
    background-color: var(--white);
}

#pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-container {
    max-width: 400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--secondary-color);
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.pricing-header {
    margin: 1rem 0 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0,119,190,0.1), rgba(64,224,208,0.1));
    border-radius: 1rem;
}

.pricing-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    display: inline-flex;
    align-items: start;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.5rem 0;
}

.price .currency {
    font-size: 2.5rem;
    vertical-align: top;
    margin-right: 0.25rem;
    font-weight: 600;
}

.price .amount {
    font-size: 4rem;
    font-weight: 800;
}

.price .decimal {
    font-size: 1.5rem;
    vertical-align: top;
    margin-left: 2px;
    font-weight: 600;
}

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

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--primary-color);
}

.pricing-card .cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.3);
}

.pricing-card .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 119, 190, 0.4);
}

/* Support Section */
#support {
    padding: 4rem 1rem;
}

#support h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
}

.support-options {
    max-width: 600px;
    margin: 0 auto;
}

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#issue-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#issue-form input,
#issue-form select,
#issue-form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
}

#issue-form button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 4rem 1rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-section {
    margin: 0 auto;
    max-width: 600px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .feature-card i {
        font-size: 2rem;
    }
}

/* Additional breakpoint for very small screens */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.captcha-question {
    font-size: 1.1rem;
    font-weight: 500;
}

.refresh-button {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s;
}

.refresh-button:hover {
    transform: rotate(180deg);
}

#captcha-answer {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    text-align: center;
} 

/* Foggy clouds background */
.foggy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    filter: blur(60px);
    animation: float linear infinite;
}

.cloud:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -150px;
    animation-duration: 35s;
}

.cloud:nth-child(2) {
    width: 350px;
    height: 350px;
    top: 30%;
    animation-duration: 45s;
    animation-delay: -5s;
}

.cloud:nth-child(3) {
    width: 500px;
    height: 500px;
    top: 40%;
    animation-duration: 55s;
    animation-delay: -15s;
}

@keyframes float {
    0% {
        left: -400px;
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50px);
    }
    100% {
        left: 100%;
        transform: translateY(0);
    }
}

/* Ensure content stays above the fog */
nav, .hero {
    position: relative;
    z-index: 2;
} 

/* Popup styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.popup.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.popup-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease-in-out;
}

.popup.show .popup-content {
    transform: translateY(0);
}

.popup-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.close-popup {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.close-popup:hover {
    opacity: 1;
} 

/* Footer Links */
.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Privacy Policy Popup */
.privacy-content {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    text-align: left;
}

.privacy-text {
    margin-top: 1.5rem;
}

.privacy-text h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
}

.privacy-text p {
    margin-bottom: 0.5rem;
}

.privacy-text ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-text li {
    margin: 0.5rem 0;
} 