﻿:root {
    --bg-body: #020617;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.65);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-highlight: rgba(255, 255, 255, 0.03);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    --card-bg: rgba(30, 41, 59, 0.4);
    --spotlight-color: rgba(99, 102, 241, 0.15);
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --container-width: 1240px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

[data-theme="light"] {
    --bg-body: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #475569;
    --glass-bg: #ffffff;
    --glass-border: #e2e8f0;
    --glass-highlight: transparent;
    --glass-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --card-bg: #ffffff;
    --spotlight-color: rgba(99, 102, 241, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-pad {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.w-full {
    width: 100%;
}

.mt-4 {
    margin-top: 1.5rem;
}

[data-theme="light"] .bg-darker {
    background: #f1f5f9;
}

[data-theme="dark"] .bg-darker {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    animation: floatBlob 25s infinite alternate ease-in-out;
}

.top-left {
    top: -200px;
    left: -200px;
    background: var(--primary);
    animation-delay: 0s;
}

.bottom-right {
    bottom: -200px;
    right: -200px;
    background: var(--accent);
    animation-delay: -5s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

[data-theme="light"] .bg-glow {
    opacity: 0.05;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: none !important;
    transition: var(--transition);
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #e2e8f0 !important;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.8rem;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border-radius: 50px;
}

[data-theme="dark"] .desktop-menu {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .desktop-menu {
    background: transparent;
    border: none;
}

.nav-link {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--text-main);
    background: rgba(125, 125, 125, 0.1);
}

.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    background: var(--bg-body);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.drop-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    color: var(--text-muted);
}

.drop-item:hover {
    background: var(--primary);
    color: #fff !important;
}

.drop-item:hover * {
    color: #fff;
}

.drop-item strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-body);
    border-left: 1px solid var(--glass-border);
    z-index: 1002;
    padding: 30px;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.mobile-side-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.m-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.m-links a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1.1rem;
    color: var(--text-main);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
}

.btn-ghost:hover {
    background: rgba(125, 125, 125, 0.1);
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    cursor: pointer;
    transition: 0.3s;
}

.btn-icon:hover {
    color: var(--warning);
    border-color: var(--warning);
    transform: rotate(15deg);
    background: rgba(245, 158, 11, 0.1);
}

[data-theme="light"] #icon-sun {
    display: none;
}

[data-theme="dark"] #icon-moon {
    display: none;
}

.hero {
    padding: 160px 0 100px;
    overflow: visible;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.server-card {
    width: 360px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
    transform: rotateY(-12deg) rotateX(6deg);
    transition: 0.5s;
    margin: 0 auto;
}

[data-theme="light"] .server-card {
    background: linear-gradient(160deg, #ffffff, #f1f5f9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.server-card:hover {
    transform: rotateY(0) rotateX(0) translateY(-10px);
}

.server-card.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: rotateY(-12deg) rotateX(6deg) translateY(0);
    }

    50% {
        transform: rotateY(-12deg) rotateX(6deg) translateY(-20px);
    }
}

.card-top {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ef4444;
}

.yellow {
    background: #f59e0b;
}

.green {
    background: #10b981;
}

.data-row {
    margin-bottom: 15px;
}

.data-row span {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.progress {
    height: 6px;
    background: rgba(125, 125, 125, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
}

.tech-stack-modern {
    padding: 50px 0 160px 0;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.tech-title {
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.marquee-wrapper {
    display: flex;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.tech-item {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: 0.3s;
}

.tech-item:hover {
    opacity: 1;
    color: var(--text-main);
}

.domain-section {
    margin-top: -120px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.domain-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.domain-form {
    display: flex;
    gap: 10px;
    margin: 30px auto;
    max-width: 700px;
    background: rgba(125, 125, 125, 0.05);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    flex-wrap: wrap;
}

.domain-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    color: var(--text-main);
}

.domain-select {
    background: transparent;
    border: none;
    color: var(--primary);
    font-weight: 700;
    border-left: 1px solid var(--glass-border);
    padding: 0 20px;
    cursor: pointer;
}

.domain-select option {
    background: var(--bg-body);
    color: var(--text-main);
}

.domain-prices {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.domain-prices strong {
    color: var(--accent);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card,
.price-card,
.faq-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.service-card:hover,
.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid var(--glass-border);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-card:hover .icon-box {
    background: var(--primary);
    color: #fff;
    transform: rotate(-5deg);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

.service-card.highlight {
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.05), rgba(0, 0, 0, 0));
    border-color: rgba(99, 102, 241, 0.3);
}

.spotlight-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.spotlight-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
}

.spotlight-card::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    pointer-events: none;
}

.spotlight-card:hover::before {
    opacity: 1;
}

.spotlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
}

.f-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.f-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 25px;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .f-icon-box {
    background: #eef2ff;
    color: var(--primary);
    border-color: #e0e7ff;
}

.f-icon-box i {
    font-size: 3rem;
    display: block;
    line-height: 1;
    color: inherit;
}

.spotlight-card:hover .f-icon-box {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

.f-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-main);
}

.f-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.testi-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(125, 125, 125, 0.1);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--text-main);
}

.testi-info {
    text-align: left;
}

.testi-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-main);
    font-weight: 700;
}

.testi-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testi-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
    width: 100%;
    justify-content: flex-start;
}

.testi-text {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: left;
    width: 100%;
}

.pricing-controller {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    margin-top: 30px;
}

.pricing-pill-container {
    background: rgba(125, 125, 125, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 5px;
    display: flex;
    position: relative;
    cursor: pointer;
    user-select: none;
    width: 320px;
}

.pill-bg {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    background: var(--primary);
    border-radius: 40px;
    transition: 0.3s cubic-bezier(0.5, 0, 0, 1.5);
    z-index: 1;
}

.pill-option {
    flex: 1;
    z-index: 2;
    font-weight: 600;
    color: var(--text-muted);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-checkbox-hidden {
    display: none;
}

.pricing-checkbox-hidden:checked~.pricing-pill-container .pill-bg {
    transform: translateX(100%);
}

.pricing-checkbox-hidden:checked~.pricing-pill-container .yearly {
    color: #fff;
}

.pricing-checkbox-hidden:not(:checked)~.pricing-pill-container .monthly {
    color: #fff;
}

.badge-discount {
    font-size: 0.7rem;
    background: var(--danger);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
}

.price-card {
    text-align: center;
}

.price-card.popular {
    border: 2px solid var(--primary);
}

.badge-pop {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.pc-head {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.pc-features {
    text-align: left;
    margin-bottom: 30px;
}

.pc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.pc-features li i {
    color: var(--success);
    font-size: 1.1rem;
}

.privilege-wrapper {
    padding: 80px 20px;
}

.slogan-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-box {
    margin-bottom: 15px;
    padding: 0;
    background: rgba(125, 125, 125, 0.05);
}

.faq-box[open] {
    background: rgba(99, 102, 241, 0.05);
    border-color: var(--primary);
}

.faq-box summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    color: var(--text-main);
}

.faq-box summary::-webkit-details-marker {
    display: none;
}

.faq-box summary i {
    transition: 0.3s;
    color: var(--primary);
}

.faq-box[open] summary i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 15px;
}

.footer-new {
    margin-top: 0;
    padding: 80px 0 30px;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
}

[data-theme="light"] .footer-new {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-box {
    background: rgba(125, 125, 125, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(125, 125, 125, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-main);
    margin-left: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-menu,
    .nav-actions .btn:not(.mobile-toggle) {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 600px) {
    .domain-form {
        flex-direction: column;
    }

    .domain-select {
        border-left: none;
        border-top: 1px solid var(--glass-border);
        padding: 10px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .pricing-pill-container {
        width: 100%;
    }
}

.floating-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px 10px 10px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.support-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.support-text {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.floating-support:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background: #25D366;
}

.floating-support:hover .support-icon {
    transform: rotate(360deg);
}

.coupon-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.coupon-wrapper:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(251, 191, 36, 0.3);
}

.coupon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #f59e0b, #d97706);
}

.cw-left {
    display: flex;
    flex-direction: column;
}

.cw-badge {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 4px;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
}

.cw-code {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fbbf24;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.cw-icon {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.05);
    transform: rotate(-15deg);
}

.price-display-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pdm-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: -5px;
    font-weight: 500;
    opacity: 0.6;
}

.pdm-main {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.pdm-amount {
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    line-height: 1.2;
}

.pdm-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.kdv-tag {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-left: 2px;
}

.dropdown-menu.wide-menu {
    width: 340px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.dropdown-menu {
    min-width: 260px;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--bg-body);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .dropdown-menu {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    width: 90%;
    max-width: 600px;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-banner p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner p a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.cookie-banner p a:hover {
    border-color: var(--color-primary);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 20px;
        width: calc(100% - 40px);
        padding: 20px;
    }

    .cookie-banner button {
        width: 100%;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 99999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 90%;
    max-width: 500px;
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
    flex: 1;
    font-family: 'Inter', sans-serif;
}

.cookie-banner a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.cookie-banner a:hover {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: 30px;
    white-space: nowrap;
    background: #6366f1;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cookie-banner .btn:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.5);
}

[data-theme="light"] .cookie-banner {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .cookie-banner p {
    color: #475569;
}

.cw-code {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fbbf24;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.cw-icon {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.05);
    transform: rotate(-15deg);
}

.price-display-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pdm-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: -5px;
    font-weight: 500;
    opacity: 0.6;
}

.pdm-main {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.pdm-amount {
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    line-height: 1.2;
}

.pdm-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.kdv-tag {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-left: 2px;
}

.dropdown-menu.wide-menu {
    width: 340px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}

.dropdown-menu {
    min-width: 260px;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--bg-body);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .dropdown-menu {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    width: 90%;
    max-width: 600px;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-banner p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner p a {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.cookie-banner p a:hover {
    border-color: var(--color-primary);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 20px;
        width: calc(100% - 40px);
        padding: 20px;
    }

    .cookie-banner button {
        width: 100%;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 99999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 90%;
    max-width: 500px;
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
    flex: 1;
    font-family: 'Inter', sans-serif;
}

.cookie-banner a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.cookie-banner a:hover {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    border-radius: 30px;
    white-space: nowrap;
    background: #6366f1;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cookie-banner .btn:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.5);
}

[data-theme="light"] .cookie-banner {
    background: rgba(255, 255, 255, 0.95);
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .cookie-banner p {
    color: #475569;
}

[data-theme="light"] .cookie-banner a {
    color: #4f46e5;
}




.theme-hint {
    position: absolute;
    top: 130%;
    
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    z-index: 1200;
    pointer-events: none;
    opacity: 0;
    animation: slideInHint 0.5s forwards, bounceHint 2s infinite 0.5s;
}

.theme-hint::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--primary);
}

.theme-hint.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    transition: 0.5s;
}

@keyframes slideInHint {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes bounceHint {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}
