@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

:root {
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --bg-tertiary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-primary: #bb86fc;
    --accent-secondary: #03dac6;
    --accent-error: #cf6679;
    --border-color: #333333;
    --border-width: 1px;
    --spacing: 2rem;
    --primary-color: #4ade80;
    --secondary-color: #22c55e;
    --accent-color: #16a34a;
    --text-color: #ffffff;
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--accent-color);
    color: white;
}

/* Button styles */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: var(--border-width) solid var(--accent-primary);
    background: transparent;
    color: var(--accent-primary);
    border-radius: 4px;
}

.btn:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-primary);
}

.btn-register {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-register:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

/* Hero section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem 2rem;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Features section */
.features {
    padding: 4rem 2rem;
    background: var(--bg-primary);
    position: relative;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-primary);
}

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

.feature-card {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

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

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Pricing section */
.pricing {
    padding: 4rem 2rem;
    background: #1a1a2e;
    color: #ffffff;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8b5cf6;
}

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

.pricing-card {
    background: #242442;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    border: 1px solid #2d2d4a;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.pricing-card.popular {
    border: 2px solid #8b5cf6;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b5cf6;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

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

.pricing-header h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
}

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

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #a5b4fc;
}

.features-list i {
    color: #8b5cf6;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: #8b5cf6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pricing-card .btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

/* Transfer section */
.transfer {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.transfer-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.transfer-text {
    flex: 1;
    text-align: left;
}

.transfer-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.transfer-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.transfer-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transfer-text ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.transfer-text ul li i {
    color: var(--accent-color);
}

.transfer-image {
    flex: 1;
}

.transfer-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transfer-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* FAQ section */
.faq {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    position: relative;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-primary);
}

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

.faq-item {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--bg-secondary);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.faq-item h3:hover {
    color: var(--accent-primary);
}

/* Contact section */
.contact {
    padding: 4rem 2rem;
    background: var(--bg-primary);
    position: relative;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: var(--border-width) solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.info-item:hover {
    color: var(--text-primary);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

/* Footer */
.footer {
    background: var(--bg-tertiary);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-info {
    max-width: 600px;
    margin: 0 auto;
}

.footer-info h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* CMS Section */
.cms {
    padding: 4rem 2rem;
    background: #1a1a2e;
    text-align: center;
}

.cms h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.cms-card {
    background: #242442;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #2d2d4a;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cms-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.cms-card i {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.cms-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.cms-card p {
    color: #a5b4fc;
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* SEO Text Section */
.seo-text {
    padding: 4rem 2rem;
    background: var(--bg-primary);
    text-align: center;
}

.seo-text h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.seo-text p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Trial Section */
.trial {
    padding: 4rem 2rem;
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
    border: 1px solid #2d2d4a;
    margin: 2rem 0;
}

.trial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.1) 0%,
        rgba(124, 58, 237, 0.1) 50%,
        rgba(109, 40, 217, 0.1) 100%);
    z-index: 1;
}

.trial-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trial h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8b5cf6;
}

.trial p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.trial-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.trial-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    background: #242442;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid #2d2d4a;
}

.trial-feature i {
    font-size: 1.2rem;
    color: #8b5cf6;
}

.trial-feature span {
    font-size: 1.1rem;
    font-weight: 500;
}

.trial .btn {
    background: #8b5cf6;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trial .btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

/* Reliability Section */
.reliability {
    padding: 4rem 2rem;
    background: #1a1a2e;
    text-align: center;
    border-top: 1px solid #2d2d4a;
    border-bottom: 1px solid #2d2d4a;
}

.reliability h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.reliability-card {
    background: #242442;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #2d2d4a;
    transition: all 0.3s ease;
}

.reliability-card:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.reliability-card i {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

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

.reliability-card p {
    color: #a5b4fc;
    opacity: 0.8;
    line-height: 1.6;
}

/* Buy Hosting Section */
.buy-hosting {
    padding: 4rem 2rem;
    background: #1a1a2e;
    color: #ffffff;
}

.buy-hosting h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #8b5cf6;
}

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

.feature-block {
    background: #242442;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #2d2d4a;
    transition: all 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.feature-block i {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

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

.feature-block p {
    color: #a5b4fc;
    line-height: 1.6;
}

.benefits-section,
.advantages-section {
    margin-bottom: 4rem;
}

.benefits-section h3,
.advantages-section h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

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

.benefit-item,
.advantage-item {
    background: #242442;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #2d2d4a;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover,
.advantage-item:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.benefit-item i,
.advantage-item i {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.benefit-item h4,
.advantage-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.benefit-item p,
.advantage-item p {
    color: #a5b4fc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.start-section {
    text-align: center;
    margin-bottom: 4rem;
}

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

.start-section p {
    color: #a5b4fc;
    margin-bottom: 2rem;
}

.start-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.start-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #242442;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #2d2d4a;
}

.start-benefit i {
    font-size: 1.5rem;
    color: #8b5cf6;
}

.start-benefit span {
    color: #ffffff;
    font-size: 1rem;
}

.cta-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section p {
    color: #a5b4fc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-section .btn {
    background: #8b5cf6;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.cta-section .btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .nav-container {
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .auth-buttons {
        gap: 0.5rem;
    }

    .btn-login {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 32px;
    }

    .cms {
        padding: 3rem 1rem;
    }

    .cms h2 {
        font-size: 2rem;
    }

    .cms-grid {
        grid-template-columns: 1fr;
    }

    .cms-card {
        padding: 1.5rem;
    }

    .cms-card i {
        font-size: 2.5rem;
    }

    .cms-card h3 {
        font-size: 1.3rem;
    }

    .cms-card p {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-img {
        height: 150px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .reliability {
        padding: 3rem 1rem;
    }

    .reliability h2 {
        font-size: 2rem;
    }

    .reliability-grid {
        grid-template-columns: 1fr;
    }

    .reliability-card {
        padding: 1.5rem;
    }

    .trial {
        padding: 3rem 1rem;
    }

    .trial h2 {
        font-size: 2rem;
    }

    .trial p {
        font-size: 1rem;
    }

    .trial-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .trial-feature {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }

    .trial .btn {
        padding: 0.8rem 2rem;
    }

    .buy-hosting {
        padding: 3rem 1rem;
    }

    .buy-hosting h2 {
        font-size: 2rem;
    }

    .feature-block,
    .benefit-item,
    .advantage-item {
        padding: 1.5rem;
    }

    .benefits-section h3,
    .advantages-section h3,
    .start-section h3 {
        font-size: 1.5rem;
    }

    .start-benefit {
        padding: 0.8rem;
    }

    .start-benefit i {
        font-size: 1.2rem;
    }

    .start-benefit span {
        font-size: 0.9rem;
    }

    .cta-section .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .pricing {
        padding: 3rem 1rem;
    }

    .pricing h2 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .features-list li {
        font-size: 0.9rem;
    }

    .pricing-card .btn {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
} 