:root {
    --primary-color: #2563EB;
    /* Royal Blue */
    --primary-hover: #1D4ED8;
    --secondary-color: #1E40AF;
    --accent-color: #3B82F6;
    --text-dark: #111827;
    --text-gray: #6B7280;
    --bg-light: #F3F4F6;
    --white: #FFFFFF;
    --input-bg: #F9FAFB;
    --border-color: #E5E7EB;
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

/* General Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-white {
    background-color: var(--white);
}

.bg-light {
    background-color: #F9FAFB;
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #EFF6FF;
    color: var(--primary-color);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 50;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-text {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.2s;
}

.btn-text:hover {
    color: var(--primary-color);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
    background: linear-gradient(180deg, #EFF6FF 0%, #F3F4F6 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Domain Search */
.domain-search-wrapper {
    background: var(--white);
    padding: 0.75rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.domain-search-form {
    display: flex;
    gap: 0.5rem;
}

.search-input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-group i {
    position: absolute;
    left: 1rem;
    color: #9CA3AF;
}

.search-input-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 2.8rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
    font-family: var(--font-family);
}

.domain-extensions select {
    padding: 0 1.5rem;
    height: 100%;
    border: none;
    border-left: 1px solid var(--border-color);
    background: transparent;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
}

.btn-search {
    padding: 0 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-search:hover {
    background-color: var(--primary-hover);
}

.popular-extensions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.tag {
    background-color: #F3F4F6;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Hero Visuals (Abstract) */
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.circle-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: #EFF6FF;
    padding: 0.75rem;
    border-radius: 0.75rem;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-info strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.card-info span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: transparent;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: #EFF6FF;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #4B5563;
    font-size: 0.95rem;
}

.features-list li i {
    color: #10B981;
    /* Green check */
    font-size: 0.9rem;
}

.btn-outline {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--text-dark);
    background-color: var(--text-dark);
    color: white;
}

/* E-Commerce Section */
.split-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
}

.feature-rows {
    margin: 2.5rem 0;
}

.feature-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.f-icon {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    box-shadow: var(--shadow-card);
    flex-shrink: 0;
}

.feature-row h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-row p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Abstract Dashboard Visual */
.abstract-dashboard {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-neumorph);
    border: 1px solid var(--border-color);
    position: relative;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E5E7EB;
}

.dots span:nth-child(1) {
    background-color: #EF4444;
}

.dots span:nth-child(2) {
    background-color: #F59E0B;
}

.dots span:nth-child(3) {
    background-color: #10B981;
}

.chart-area {
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.bar {
    width: 12%;
    background-color: #DBEAFE;
    border-radius: 4px;
    transition: height 1s ease;
}

.bar.active {
    background-color: var(--primary-color);
}

.stats-row {
    display: flex;
    gap: 1rem;
}

.stat-box {
    flex: 1;
    background-color: #F9FAFB;
    padding: 1rem;
    border-radius: 0.75rem;
}

.stat-box span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.stat-box strong {
    font-size: 1.25rem;
    color: var(--text-dark);
}

/* Mail Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Login Page Specifics */
.main-wrapper {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.split-container {
    display: flex;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.left-section {
    flex: 1;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.left-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.left-section::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.content-box {
    position: relative;
    z-index: 2;
    max-width: 480px;
}

.logo {
    height: 60px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.left-section h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #1E3A8A;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.left-section p {
    font-size: 1.25rem;
    color: #4B5563;
    font-weight: 500;
}

.right-section {
    flex: 1;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 2rem;
}

.card-header {
    margin-bottom: 2.5rem;
}

.card-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.card-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: #9CA3AF;
    font-size: 1rem;
    pointer-events: none;
}

.input-wrapper input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    background-color: var(--input-bg);
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
    font-family: var(--font-family);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #9CA3AF;
    font-size: 1rem;
    padding: 0;
}

.toggle-password:hover {
    color: var(--text-dark);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #4B5563;
    user-select: none;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 10px;
    display: none;
}

.checkbox-container input:checked~.checkmark::after {
    display: block;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.btn-primary {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.card-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #6B7280;
}

.card-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.card-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .left-section h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .split-content {
        flex-direction: column;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {

    /* Navbar Mobile */
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar {
        padding: 1rem 0;
    }

    /* Login Page Mobile */
    .split-container {
        flex-direction: column;
    }

    .left-section {
        padding: 3rem 2rem;
        min-height: 300px;
        flex: none;
    }

    .right-section {
        flex: 1;
        padding: 2rem 1.5rem;
        background-color: var(--white);
        border-top-left-radius: 2rem;
        border-top-right-radius: 2rem;
        margin-top: -2rem;
        z-index: 5;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    }

    .content-box {
        text-align: center;
    }

    .logo {
        margin: 0 auto 1.5rem auto;
        display: block;
    }

    .left-section h1 {
        font-size: 2rem;
    }

    /* Hero Mobile */
    .hero-section {
        padding-top: 6rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .domain-search-form {
        flex-direction: column;
    }

    .domain-extensions select {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding: 0.75rem 0;
    }

    .btn-search {
        width: 100%;
        padding: 1rem;
    }

    .floating-card {
        display: none;
        /* Hide floating elements on mobile to avoid clutter */
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-icon {
    width: 80px;
    height: 80px;
    background-color: #FEF3C7;
    color: #D97706;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem auto;
}

.popup-content h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.popup-subtitle {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.popup-text {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.popup-actions .btn-primary,
.popup-actions .btn-outline {
    flex: 1;
    padding: 0.875rem;
}

@media (max-width: 480px) {
    .popup-actions {
        flex-direction: column;
    }
}