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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0f0f23;
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    background: #1a1a2e;
    border-bottom: 1px solid #16213e;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    text-decoration: none;
}

.nav-logo:visited {
    text-decoration: none;
}

.logo-icon {
    position: relative;
    width: 24px;
    height: 24px;
    margin-right: 0.8rem;
}

.orbit-ring {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid #00d4ff;
    border-radius: 50%;
}

.center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #00d4ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-dot-1 {
    position: absolute;
    top: 0px;
    right: 1px;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
}

.orbit-dot-2 {
    position: absolute;
    bottom: 0px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.3; transform: translateX(-50%) scale(1.5); }
}

.nav-logo:hover {
    color: #0099cc;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-link:hover::after {
    width: 80%;
}

.trial-btn {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trial-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
    background: linear-gradient(45deg, #ff5252, #ffb74d);
}

/* Main content */
main {
    margin-top: 80px;
}

/* Hero section */
.hero {
    padding: 6rem 0;
    display: flex;
    align-items: center;
    min-height: 90vh;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #0f0f23;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, #0099cc 0%, #007acc 100%);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    color: white;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.floating-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(1deg); }
    66% { transform: translateY(-25px) rotate(-1deg); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Features section */
.features {
    background: #16213e;
    padding: 4rem 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 1);
}

.feature-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Form sections */
.form-section {
    background: #0f0f23;
    min-height: 80vh;
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.contact-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-card {
    background: #1a1a2e;
    border: 1px solid #16213e;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.visual-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
}

.visual-card i {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.visual-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.visual-card p {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.contact-form-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #a0a0a0;
}

.contact-form {
    background: #1a1a2e;
    border: 1px solid #16213e;
    padding: 2.5rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.25rem;
    border: 2px solid #16213e;
    border-radius: 8px;
    font-size: 1rem;
    background: #0f0f23;
    color: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: #0f0f23;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Services section */
.services-section {
    background: #0f0f23;
    padding: 4rem 0;
    min-height: 80vh;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header p {
    color: #a0a0a0;
}

/* Resources section */
.resources-section {
    background: #0f0f23;
    padding: 4rem 0;
    min-height: 80vh;
}

.resources-header {
    text-align: center;
    margin-bottom: 3rem;
}

.resources-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.resources-header p {
    color: #a0a0a0;
}

/* About section */
.about-section {
    background: #0f0f23;
    padding: 4rem 0;
    min-height: 80vh;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-header p {
    color: #a0a0a0;
}

.services-grid,
.resources-grid,
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card,
.resource-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid #16213e;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover,
.resource-card:hover {
    transform: translateY(-8px);
    border-color: #00d4ff;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.service-card h3,
.resource-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.service-card p,
.resource-card p {
    color: #a0a0a0;
}

.resource-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.resource-date,
.resource-category {
    font-size: 0.9rem;
    color: #00d4ff;
    font-weight: 500;
}

.read-more {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
}

.about-text {
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.about-text ul {
    color: #a0a0a0;
    margin: 1rem 0;
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
}

.cta-section h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Privacy and Terms sections */
.privacy-section,
.terms-section {
    background: #0f0f23;
    padding: 4rem 0;
    min-height: 80vh;
}

.privacy-header,
.terms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-header h1,
.terms-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.privacy-header p,
.terms-header p {
    color: #a0a0a0;
}

.privacy-content,
.terms-content {
    max-width: 600px;
    margin: 0 auto;
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.privacy-content h2,
.terms-content h2 {
    color: white;
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.2rem;
}

.privacy-content ul,
.terms-content ul {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
}

.privacy-content p,
.terms-content p {
    margin-bottom: 1rem;
}

.privacy-content a,
.terms-content a {
    color: #00d4ff;
    text-decoration: none;
}

.privacy-content a:hover,
.terms-content a:hover {
    text-decoration: underline;
}



/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00d4ff;
}

.footer-logo .logo-icon {
    margin-right: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h4 {
    color: #00d4ff;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

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

.footer-section li {
    margin-bottom: 0.3rem;
}

.footer-section a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}

.footer-section a:hover {
    color: #00d4ff;
}

.footer-section i {
    margin-right: 0.5rem;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #16213e;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #666;
}

/* Pricing Section */
.pricing-section {
    background: #0f0f23;
    padding: 4rem 0;
    min-height: 80vh;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-header p {
    color: #a0a0a0;
}

/* Pricing Calculator */
.pricing-calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.calculator-form {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #16213e;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-group label span {
    color: #00d4ff;
    font-weight: 700;
}

.custom-slider {
    margin: 20px 0;
}

.slider-track {
    width: 100%;
    height: 4px;
    background: #16213e;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.slider-progress {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #00d4ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.4);
    transition: all 0.2s ease;
}

.slider-thumb:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.6);
}

.slider-options {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    position: relative;
}

.slider-option {
    background: #1a1a2e;
    border: 1px solid #16213e;
    color: #a0a0a0;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 50px;
    text-align: center;
}

.slider-option:hover {
    border-color: #00d4ff;
    color: #00d4ff;
}

.slider-option.active {
    background: #00d4ff;
    color: #0f0f23;
    border-color: #00d4ff;
    font-weight: 600;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
    color: #a0a0a0;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s;
    font-size: 0.85rem;
}

.checkbox-group label:hover {
    background: rgba(0, 212, 255, 0.1);
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.8rem;
    width: 18px;
    height: 18px;
    accent-color: #00d4ff;
    cursor: pointer;
}

.free-option {
    text-align: right;
    margin-top: 1rem;
}

.free-checkbox {
    font-size: 0.8rem;
    color: #a0a0a0;
    font-weight: 400;
}

.free-checkbox input {
    margin-right: 0.5rem;
    width: 14px;
    height: 14px;
}

.info-icon {
    margin-left: 0.3rem;
    font-size: 0.7rem;
    color: #00d4ff;
    cursor: help;
    opacity: 0.7;
}

.info-icon:hover {
    opacity: 1;
}

.pricing-result {
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-display {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid #00d4ff;
    text-align: center;
    width: 100%;
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

.price-display h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-price {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    filter: blur(8px);
    transition: filter 0.3s ease;
}

.final-price.revealed {
    filter: blur(0px);
}

.final-price span {
    font-size: 1rem;
    color: #a0a0a0;
}

.price-breakdown {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #16213e;
    border-radius: 8px;
    filter: blur(5px);
    transition: filter 0.3s ease;
}

.price-breakdown.revealed {
    filter: blur(0px);
}

.price-breakdown div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.email-gate {
    background: #1a1a2e;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #16213e;
    margin-bottom: 1rem;
}

.email-gate input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #16213e;
    border-radius: 8px;
    background: #0f0f23;
    color: white;
    margin-bottom: 1rem;
}

.email-gate input:focus {
    outline: none;
    border-color: #00d4ff;
}

.email-gate button {
    width: 100%;
    padding: 0.75rem;
    background: #00d4ff;
    color: #0f0f23;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.email-gate button:hover {
    background: #0099cc;
}

.email-gate p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .pricing-calculator {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #1a1a2e;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #16213e;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}