* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: #333;
    background: linear-gradient(to bottom, #fafafa 0%, #f0f0f0 100%);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6200ea 0%, #9c27b0 50%, #00bcd4 100%);
    padding: 80px 40px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: #ffeb3b;
}

.domain-name {
    display: inline-block;
    background-color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.5em;
    color: #6200ea;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domain-name:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(98, 0, 234, 0.3);
}

.price {
    font-size: 1.3em;
    color: #ffffff;
    margin-top: 20px;
}

.price strong {
    font-size: 1.5em;
    color: #ffeb3b;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    color: #6200ea;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 235, 59, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 235, 59, 0.6);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.cta-button-outline {
    background: transparent;
    color: #ffffff;
    border: 3px solid #ffeb3b;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-button-outline:hover {
    background: rgba(255, 235, 59, 0.1);
    box-shadow: 0 12px 35px rgba(255, 235, 59, 0.4);
}

.star {
    font-size: 3em;
    color: #ffeb3b;
    margin-top: 20px;
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
}

/* Info Section */
.info-section {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    border-top: 4px solid #6200ea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(98, 0, 234, 0.2);
}

.icon {
    font-size: 2.5em;
    color: #9c27b0;
    margin-bottom: 15px;
}

.info-box h2 {
    font-size: 1.8em;
    background: linear-gradient(135deg, #6200ea 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-box p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #555;
}

/* Mockup Section */
.mockup-section {
    margin: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #6200ea 0%, #9c27b0 50%, #00bcd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.mockup-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.browser-mockup {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.browser-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(98, 0, 234, 0.15);
}

.browser-bar {
    background: linear-gradient(to bottom, #e8e8e8, #d0d0d0);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #999;
}

.browser-dots span:nth-child(1) {
    background-color: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background-color: #27c93f;
}

.browser-url {
    flex: 1;
    background-color: #fff;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    color: #666;
}

.mockup-content {
    background: linear-gradient(to bottom, #e1bee7 0%, #ffffff 40%);
    padding: 0;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.95);
}

.mock-logo {
    font-weight: 700;
    font-size: 1.2em;
    color: #6200ea;
}

.mock-nav {
    display: flex;
    gap: 25px;
    font-size: 0.9em;
}

.mock-nav span {
    color: #555;
    cursor: default;
}

.mock-hero {
    text-align: center;
    padding: 60px 40px;
}

.mock-hero h3 {
    font-size: 2.5em;
    margin: 0 0 20px 0;
    color: #333;
    font-weight: 700;
}

.mock-hero p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.mock-button {
    background: linear-gradient(135deg, #6200ea 0%, #9c27b0 100%);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(98, 0, 234, 0.3);
}

.mock-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
    background-color: #fff;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-top: 3px solid #9c27b0;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.service-card p {
    margin: 0;
    font-size: 0.95em;
    color: #555;
    font-weight: 600;
}

.mockup-note {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1f5fe 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #6200ea;
    text-align: center;
}

.mockup-note p {
    margin: 0 0 20px 0;
    line-height: 1.7;
    color: #555;
    font-size: 1em;
}

.secondary-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #6200ea 0%, #9c27b0 100%);
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(98, 0, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.secondary-cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(98, 0, 234, 0.4);
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #e1f5fe 0%, #f3e5f5 100%);
    padding: 50px;
    border-radius: 20px;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.contact-details {
    flex: 2;
    min-width: 300px;
}

.contact-details p {
    font-size: 1.05em;
    line-height: 1.8;
    margin: 0;
    color: #555;
}

.contact-cta {
    background: linear-gradient(135deg, #6200ea 0%, #9c27b0 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 8px 20px rgba(98, 0, 234, 0.4);
    position: relative;
}

.contact-cta h2 {
    margin-top: 0;
    font-size: 2em;
    font-weight: 700;
}

.cta-highlight {
    color: #ffeb3b;
}

.contact-name {
    font-size: 1.4em;
    margin: 15px 0 10px 0;
    font-weight: 600;
    color: #ffffff;
}

.contact-cta a {
    color: #ffeb3b;
    text-decoration: none;
    font-size: 1.2em;
    display: block;
    margin-top: 15px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.contact-cta a:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

.domain-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.85em;
    margin-top: 25px;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .mock-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .mock-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2em;
    }

    .domain-name {
        font-size: 1.2em;
        padding: 12px 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        font-size: 1em;
        padding: 14px 30px;
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 1.8em;
    }

    .info-section {
        flex-direction: column;
        gap: 20px;
    }

    .mock-hero h3 {
        font-size: 1.8em;
    }

    .mock-services {
        grid-template-columns: 1fr;
    }

    .contact-section {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .mockup-container {
        padding: 20px;
    }

    .mock-header {
        padding: 15px 20px;
    }

    .mock-hero {
        padding: 40px 20px;
    }

    .mock-services {
        padding: 20px;
    }
}
