:root {
    --primary: #8760fb;
    --primary-dark: #6d4ac7;
    --primary-light: #a68afc;
    --secondary: #1a1a2e;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --bg-light: #f7fafc;
    --border-color: #e2e8f0;
    --success: #48bb78;
    --shadow: 0 10px 30px rgba(135, 96, 251, 0.1);
    --shadow-lg: 0 20px 60px rgba(135, 96, 251, 0.15);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--secondary);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-text {
    color: var(--primary);
    font-weight: 700;
}

.logo-hosting {
    color: var(--secondary);
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(135, 96, 251, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(135, 96, 251, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f7f3ff 0%, #ffffff 50%, #f0f9ff 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(135, 96, 251, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-slogan {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(135, 96, 251, 0.1);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.95rem;
}

.hero-promo i {
    font-size: 1.2rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.card-1 {
    top: 2%;
    left: 5%;
    animation-name: floatCard1;
}

.card-2 {
    top: 8%;
    right: 8%;
    animation-name: floatCard2;
    animation-delay: 1s;
}

.card-3 {
    top: 25%;
    left: 2%;
    animation-name: floatCard3;
    animation-delay: 2s;
}

.card-4 {
    top: 28%;
    right: 15%;
    animation-name: floatCard4;
    animation-delay: 1.5s;
}

.card-5 {
    top: 45%;
    left: 15%;
    animation-name: floatCard5;
    animation-delay: 0.5s;
}

.card-6 {
    top: 48%;
    right: 3%;
    animation-name: floatCard6;
    animation-delay: 2.5s;
}

.card-7 {
    top: 65%;
    left: 8%;
    animation-name: floatCard7;
    animation-delay: 1.2s;
}

.card-8 {
    top: 68%;
    right: 20%;
    animation-name: floatCard8;
    animation-delay: 0.8s;
}

.card-9 {
    bottom: 5%;
    left: 25%;
    animation-name: floatCard9;
    animation-delay: 1.8s;
}

.card-10 {
    bottom: 8%;
    right: 12%;
    animation-name: floatCard10;
    animation-delay: 0.3s;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

@keyframes floatCard4 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(-3deg); }
}

@keyframes floatCard5 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-22px); }
}

@keyframes floatCard6 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-17px) rotate(2deg); }
}

@keyframes floatCard7 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-19px); }
}

@keyframes floatCard8 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(-2deg); }
}

@keyframes floatCard9 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-21px); }
}

@keyframes floatCard10 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Features Section */
.features-section {
    background: var(--bg-light);
    padding: 100px 0;
}

/* USP Highlight Section */
.usp-section {
    background: white;
    padding: 80px 0;
}

.usp-list {
    margin-top: 2rem;
}

.usp-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.usp-item i {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.usp-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.usp-item p {
    color: var(--text-muted);
    margin: 0;
}

.usp-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.usp-stat {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.usp-stat:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-card {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

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

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    background: white;
    padding: 100px 0;
}

/* References Section */
.references-section {
    background: white;
    padding: 100px 0;
}

.reference-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.reference-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.reference-image {
    width: 100%;
    height: 250px;
    background: var(--bg-light);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-content {
    padding: 2rem;
}

.reference-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.reference-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-popular {
    border-color: var(--primary);
    border-width: 3px;
    box-shadow: var(--shadow);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(135, 96, 251, 0.3);
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.pricing-promo {
    background: rgba(135, 96, 251, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: inline-block;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-features i {
    color: var(--success);
    font-size: 1.25rem;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    padding: 100px 0;
}

.cta-box {
    text-align: center;
    color: white;
    padding: 3rem 2rem;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-light {
    background: white;
    color: var(--primary);
    font-weight: 600;
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e4e4e4;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 5rem !important;
    padding-bottom: 3rem !important;
}

.footer-brand {
    font-size: 1.5rem;
}

.footer-desc {
    color: #b8b8b8;
    font-size: 1.05rem;
}

.footer-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.3px;
}

.footer-contact-main {
    color: #e4e4e4;
}

.footer-contact-main a {
    color: #e4e4e4;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-contact-main a:hover {
    color: var(--primary-light);
}

.footer-contact-main i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
    color: #e4e4e4;
}

.footer-links a {
    color: #e4e4e4;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-links i {
    color: var(--primary-light);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.text-muted-footer {
    color: #999 !important;
}

.footer-link-small {
    color: #999 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-small:hover {
    color: var(--primary-light) !important;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Order Form */
.order-section {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.order-form {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.plan-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.plan-option {
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.plan-option:hover {
    border-color: var(--primary);
}

.plan-option input[type="radio"] {
    display: none;
}

.plan-option input[type="radio"]:checked + label {
    border-color: var(--primary);
    background: rgba(135, 96, 251, 0.05);
}

.plan-label {
    cursor: pointer;
    margin: 0;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.plan-price-small {
    font-size: 1rem;
    color: var(--text-muted);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(135, 96, 251, 0.15);
}

/* Contact Page */
.contact-section {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-muted);
    margin: 0;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .floating-card {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
}

/* AOS Animation Library Styles */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}
