:root {
    --primary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --secondary: #10b981;
    --accent: #f59e0b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-light: #0f172a;
    --bg-white: #1e293b;
    --text-dark: #f1f5f9;
    --text-light: #94a3b8;
    --border: #334155;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

[data-theme="dark"] .navbar {
    background: rgba(30, 41, 59, 0.95);
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 10px;
    flex-shrink: 0;
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-logo i,
.theme-toggle i,
.cta-button i,
.cta-secondary i,
.cs-button i,
.domain-btn i,
.fab i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    vertical-align: middle;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-dropdown {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-dark);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

[data-theme="dark"] .lang-dropdown {
    background: var(--bg-white);
    color: var(--text-dark);
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 99px;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-mockup-bg {
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
                linear-gradient(45deg, rgba(255,255,255,0.05) 0%, transparent 50%);
    height: 100%;
    animation: mockupFloat 6s ease-in-out infinite;
}

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

.hero-container {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.typing-marquee {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid white;
    min-height: 1.7em;
}

.typing-marquee span {
    display: inline-block;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.secondary-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.cta-button.primary {
    background: white;
    color: #3b82f6;
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
    transition: var(--transition);
}

.cta-secondary:hover {
    color: white;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.cs-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cs-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.cs-button.blue {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.cs-button.orange {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.cs-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Domain Checker */
.domain-checker {
    background: var(--bg-white);
    position: relative;
}

.domain-search {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

#domainInput {
    flex: 1;
    min-width: 300px;
    padding: 1.5rem 2rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1.1rem;
    transition: var(--transition);
}

#domainInput:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.domain-btn {
    padding: 1.5rem 2.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.domain-btn:hover {
    transform: translateY(-2px);
}

.domain-result {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    background: var(--bg-light);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Why Us */
.why-us {
    background: var(--bg-white);
}

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

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--radius);
    background: var(--bg-light);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.feature-icon {
    font-size: 4rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 24px;
    background-color: rgba(59, 130, 246, 0.08);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
}

/* Services Preview */
.services-preview {
    background: var(--bg-white);
}

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

.service-card {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border-top-color: #3b82f6;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 4.5rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 26px;
    background-color: rgba(59, 130, 246, 0.08);
    line-height: 1;
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .feature-icon,
[data-theme="dark"] .service-icon {
    border-color: rgba(148, 163, 184, 0.35);
    background-color: rgba(148, 163, 184, 0.14);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    opacity: 0.8;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 1rem;
}

.price-tag span {
    font-size: 1rem;
    opacity: 0.8;
}

.service-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.service-link:hover {
    border-bottom-color: #3b82f6;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
}

/* FAB */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 1001;
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 16px;
        gap: 0.75rem;
    }

    .nav-logo {
        font-size: 1.2rem;
        gap: 8px;
    }

    .nav-logo i {
        font-size: 1.55rem;
    }

    .hamburger {
        display: flex;
        order: 3;
        margin-left: 0.35rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 74px;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        width: 100%;
        text-align: center;
        padding: 1.5rem 0;
        height: calc(100vh - 74px);
        overflow-y: auto;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    [data-theme="dark"] .nav-menu {
        background: rgba(30, 41, 59, 0.98);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-right {
        order: 2;
        width: auto;
        margin-left: auto;
        gap: 0.5rem;
    }

    .lang-dropdown {
        padding: 0.5rem 0.8rem;
        min-width: 96px;
    }

    .theme-toggle {
        width: 42px;
        height: 42px;
    }

    .feature-icon {
        width: 74px;
        height: 74px;
        font-size: 3.15rem;
        border-radius: 20px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 3.35rem;
        border-radius: 22px;
    }

    .hero {
        min-height: auto;
        padding-top: 96px;
        padding-bottom: 72px;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(2rem, 11vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 5vw, 1.2rem);
        margin-bottom: 1.5rem;
    }

    .typing-marquee {
        font-size: 1.05rem;
        white-space: normal;
        border-right: 0;
        margin-bottom: 2rem;
    }

    .typing-marquee span {
        animation: none;
        display: inline;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .secondary-ctas {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .cta-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 0.85rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.08);
    }

    .cs-buttons {
        flex-direction: column;
    }

    .cs-button {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.1rem;
        font-size: 0.95rem;
    }

    #domainInput {
        min-width: 0;
        width: 100%;
        padding: 1rem 1.2rem;
    }

    .domain-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.2rem;
    }

    .floating-wa {
        width: 56px;
        height: 56px;
        right: 18px;
        bottom: 18px;
    }

    section {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 1.1rem;
    }

    .lang-dropdown {
        min-width: 90px;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .domain-search {
        flex-direction: column;
    }

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

/* Page Specific */
.page-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.consult-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   Futuristic Redesign Overrides
   =============================== */
:root {
    --primary: linear-gradient(135deg, #22d3ee 0%, #2563eb 55%, #1d4ed8 100%);
    --secondary: #14b8a6;
    --accent: #f59e0b;
    --bg-light: #f3f7ff;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-light: #475569;
    --border: #d9e2f2;
    --shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 28px 70px rgba(30, 64, 175, 0.2);
    --radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-light: #060b1a;
    --bg-white: #0f172a;
    --text-dark: #e2e8f0;
    --text-light: #94a3b8;
    --border: #1f3252;
    --shadow: 0 20px 45px rgba(2, 6, 23, 0.55);
    --shadow-hover: 0 26px 65px rgba(8, 47, 73, 0.5);
}

body {
    font-family: 'Space Grotesk', 'Sora', sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    background:
        radial-gradient(circle at 88% -10%, rgba(34, 211, 238, 0.2), transparent 42%),
        radial-gradient(circle at 8% 20%, rgba(37, 99, 235, 0.15), transparent 45%),
        var(--bg-light);
    overflow-x: hidden;
    transition: var(--transition);
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
    animation: floatOrb 9s ease-in-out infinite;
}

.orb-1 {
    width: 280px;
    height: 280px;
    top: 12%;
    left: -90px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.45), rgba(37, 99, 235, 0));
}

.orb-2 {
    width: 330px;
    height: 330px;
    right: -120px;
    bottom: 14%;
    animation-delay: 1.6s;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.35), rgba(37, 99, 235, 0));
}

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

.container,
.nav-container {
    width: min(1150px, 92%);
    margin: 0 auto;
}

.navbar {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    background: color-mix(in oklab, var(--bg-white) 86%, transparent);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

[data-theme="dark"] .navbar {
    background: rgba(6, 11, 26, 0.84);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.2px;
    color: #2563eb;
    text-decoration: none;
    white-space: nowrap;
}

.nav-logo i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    font-size: 1.2rem;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.16), rgba(34, 211, 238, 0.22));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 0.9rem;
    border-radius: 11px;
}

.nav-link::after {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.lang-dropdown,
.theme-toggle {
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 14px;
}

.lang-dropdown {
    min-width: 96px;
    height: 44px;
    padding: 0 0.9rem;
    font-weight: 600;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.theme-toggle i {
    line-height: 1;
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: var(--text-dark);
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    padding: 130px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: clip;
    background: linear-gradient(150deg, #123285 0%, #1f58cf 50%, #1c78cf 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.2), transparent 35%),
        linear-gradient(100deg, rgba(255, 255, 255, 0.12), transparent 36%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.75fr);
    gap: 2.6rem;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #e0f2fe;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    color: #f8fbff;
    font-size: clamp(2rem, 4.8vw, 4rem);
    line-height: 1.06;
    margin-bottom: 1.15rem;
}

.hero-subtitle {
    color: rgba(241, 245, 249, 0.95);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    max-width: 680px;
    margin-bottom: 1.4rem;
}

.hero-banner {
    width: min(640px, 100%);
    margin-bottom: 1.4rem;
}

.hero-banner-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    box-shadow: 0 16px 38px rgba(2, 6, 23, 0.32);
}

.typing-marquee {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    width: min(620px, 100%);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(226, 232, 240, 0.34);
    color: #dbeafe;
    background: rgba(15, 23, 42, 0.2);
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 1.7rem;
}

.hero-ctas {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.15rem;
}

.cta-button,
.cta-secondary,
.cs-button,
.domain-btn,
.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    font-weight: 700;
}

.cta-button {
    border-radius: 15px;
    padding: 0.95rem 1.35rem;
    border: 1px solid transparent;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.16);
}

.cta-button.primary {
    color: #1d4ed8;
    background: linear-gradient(130deg, #ffffff 0%, #dbeafe 100%);
}

.cta-button.full-width {
    color: #e2e8f0;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    border-color: rgba(148, 163, 184, 0.32);
}

.secondary-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.cta-secondary {
    border: 1px solid rgba(191, 219, 254, 0.5);
    color: #e2e8f0;
    padding: 0.7rem 1rem;
    border-radius: 13px;
    background: rgba(15, 23, 42, 0.24);
}

.cs-buttons {
    display: grid;
    gap: 0.75rem;
    max-width: 610px;
}

.cs-button {
    border-radius: 14px;
    padding: 0.88rem 1.2rem;
    border: 1px solid rgba(191, 219, 254, 0.4);
}

.cs-button.blue {
    color: #dbeafe;
    background: rgba(59, 130, 246, 0.23);
}

.cs-button.orange {
    color: #fde68a;
    background: rgba(245, 158, 11, 0.22);
}

.hero-panel {
    justify-self: end;
    width: min(100%, 370px);
    position: relative;
}

.panel-ring {
    position: absolute;
    inset: -12px;
    border-radius: 30px;
    background: conic-gradient(from 120deg, rgba(34, 211, 238, 0.25), rgba(59, 130, 246, 0.7), rgba(34, 211, 238, 0.25));
    filter: blur(6px);
    animation: rotateRing 8s linear infinite;
}

.panel-card {
    position: relative;
    border-radius: 26px;
    padding: 1.5rem;
    color: #dbeafe;
    border: 1px solid rgba(191, 219, 254, 0.4);
    background: rgba(8, 25, 74, 0.55);
    backdrop-filter: blur(9px);
}

.panel-card h3 {
    font-family: 'Sora', sans-serif;
    margin-bottom: 0.55rem;
    color: #f8fbff;
}

.panel-card p {
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 0.8rem;
}

.panel-card ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.panel-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.panel-card li i {
    color: #67e8f9;
}

@keyframes rotateRing {
    to { transform: rotate(360deg); }
}

section {
    position: relative;
    z-index: 1;
    padding: 90px 0;
}

.domain-checker,
.services-preview,
.why-us {
    background: var(--bg-white);
}

.why-us.bg-gradient {
    background:
        linear-gradient(180deg, color-mix(in oklab, var(--bg-light) 85%, var(--bg-white) 15%), var(--bg-white));
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    margin-bottom: 0.95rem;
    text-align: center;
    color: var(--text-dark);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.section-title::after {
    content: '';
    display: block;
    width: 94px;
    height: 4px;
    margin: 0.75rem auto 0;
    border-radius: 999px;
    background: var(--primary);
}

.section-lead {
    max-width: 680px;
    margin: 0 auto 1.7rem;
    text-align: center;
    color: var(--text-light);
}

.domain-search {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.7rem;
}

#domainInput {
    min-width: 0;
    height: 56px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 0 1rem;
    font-size: 1rem;
}

.domain-btn {
    height: 56px;
    border-radius: 14px;
    padding: 0 1.2rem;
    border: 1px solid transparent;
    color: #f8fbff;
    background: var(--primary);
}

.domain-result {
    margin: 1rem auto 0;
    max-width: 720px;
    border-radius: 15px;
    padding: 1rem;
    min-height: 76px;
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--bg-light) 75%, var(--bg-white));
}

.available-domain,
.taken-domain {
    width: 100%;
}

.domain-options,
.alt-suggestions {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.domain-option,
.alt-domain,
.buy-btn {
    border-radius: 11px;
    border: 1px solid var(--border);
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    background: var(--bg-white);
}

.buy-btn {
    margin-top: 0.8rem;
    cursor: pointer;
    color: #f8fbff;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    border: 0;
    font-weight: 700;
}

.features-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card,
.service-card {
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 1.4rem;
    background: linear-gradient(180deg, color-mix(in oklab, var(--bg-white) 95%, #e0e7ff 5%), var(--bg-white));
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.feature-card:hover,
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-card h3,
.service-card h3 {
    font-family: 'Sora', sans-serif;
    margin-bottom: 0.45rem;
}

.feature-card p,
.service-card p {
    color: var(--text-light);
}

.feature-icon,
.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1d4ed8;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(34, 211, 238, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.24);
    -webkit-text-fill-color: currentColor;
}

.service-card.featured {
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card.featured::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--primary);
}

.price {
    font-family: 'Sora', sans-serif;
    color: #0f766e;
    font-size: 1.5rem;
    margin: 0.35rem 0 0.45rem;
}

.price span {
    font-size: 0.9rem;
    color: #64748b;
}

.service-link {
    margin-top: 0.75rem;
    color: #1d4ed8;
    justify-content: flex-start;
    font-weight: 700;
}

.footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(150deg, #0b1221 0%, #0f1f45 55%, #102956 100%);
    color: #e2e8f0;
    padding: 70px 0 26px;
}

.footer .nav-logo {
    color: #93c5fd;
}

.footer .brand-logo {
    background: rgba(147, 197, 253, 0.16);
    padding: 4px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 1.2rem;
}

.footer-section h4 {
    margin-bottom: 0.6rem;
}

.footer-section ul {
    list-style: none;
    display: grid;
    gap: 0.3rem;
}

.footer-section a {
    color: #bfdbfe;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    margin-top: 1.4rem;
    padding-top: 1rem;
    color: #94a3b8;
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.6);
    background: rgba(255, 255, 255, 0.18);
    color: #dbeafe;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    margin-bottom: 1rem;
}

.page-wrap {
    padding: 68px 0;
    background: var(--bg-white);
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.info-card,
.contact-item,
.catalog-card,
.stat-box {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.2rem;
    background: linear-gradient(180deg, color-mix(in oklab, var(--bg-white) 95%, #e2e8f0 5%), var(--bg-white));
    box-shadow: var(--shadow);
}

.info-card h2,
.info-card h3,
.catalog-card h3,
.contact-item h3 {
    font-family: 'Sora', sans-serif;
    margin-bottom: 0.5rem;
}

.simple-list {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.simple-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-light);
}

.simple-list li i {
    color: #2563eb;
    margin-top: 0.2rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.stat-box h3 {
    font-family: 'Sora', sans-serif;
    color: #1d4ed8;
    font-size: 1.45rem;
    margin-bottom: 0.2rem;
}

.stat-box p {
    color: var(--text-light);
}

.timeline-list {
    display: grid;
    gap: 0.8rem;
}

.timeline-row {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    background: var(--bg-white);
}

.timeline-year {
    height: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.6rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.14);
}

.timeline-row h4 {
    margin-bottom: 0.25rem;
}

.timeline-row p {
    color: var(--text-light);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.catalog-card {
    display: grid;
    gap: 0.8rem;
}

.catalog-card p {
    color: var(--text-light);
}

.catalog-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.catalog-head i {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    border: 1px solid rgba(59, 130, 246, 0.28);
    background: rgba(59, 130, 246, 0.12);
}

.order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 0.78rem;
    border-radius: 11px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.order-btn.wa {
    background: rgba(37, 211, 102, 0.16);
    color: #166534;
    border-color: rgba(22, 163, 74, 0.35);
}

.order-btn.tg {
    background: rgba(56, 189, 248, 0.16);
    color: #0c4a6e;
    border-color: rgba(14, 165, 233, 0.35);
}

.order-btn.mail {
    background: rgba(59, 130, 246, 0.12);
    color: #1e3a8a;
    border-color: rgba(59, 130, 246, 0.32);
}

.contact-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.contact-item h3 {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: #1d4ed8;
}

.contact-stack {
    text-align: center;
}

.quick-links {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.floating-wa {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
    color: #fff;
    background: linear-gradient(145deg, #25d366, #16a34a);
    box-shadow: 0 14px 34px rgba(22, 163, 74, 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    text-decoration: none;
    z-index: 1200;
}

.floating-wa:hover {
    transform: translateY(-3px) scale(1.03);
}

.fade-in-up {
    animation: fadeInUp 0.95s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .hero-panel {
        justify-self: start;
        width: min(100%, 460px);
    }

    .features-grid,
    .services-grid,
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat-grid,
    .contact-grid-3,
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 768px) {
    .navbar {
        padding: 0.65rem 0;
    }

    .nav-logo {
        font-size: 1.05rem;
    }

    .brand-logo {
        width: 36px;
        height: 36px;
    }

    .hero-banner {
        margin-bottom: 1.15rem;
    }

    .hero-banner-image {
        border-radius: 14px;
    }

    .hamburger {
        display: inline-flex;
    }

    .nav-menu {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 100%;
        padding: 1rem 4%;
        display: grid;
        gap: 0.45rem;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background: color-mix(in oklab, var(--bg-white) 95%, transparent);
        backdrop-filter: blur(14px);
        transition: left 0.25s ease;
    }

    [data-theme="dark"] .nav-menu {
        background: rgba(6, 11, 26, 0.95);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-right {
        margin-left: auto;
    }

    .lang-dropdown {
        min-width: 84px;
        height: 40px;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding: 108px 0 70px;
    }

    .typing-marquee {
        width: 100%;
        font-size: 0.96rem;
        min-height: 48px;
    }

    .secondary-ctas,
    .domain-search {
        grid-template-columns: 1fr;
        display: grid;
    }

    .cta-button,
    .cta-secondary,
    .cs-button,
    .domain-btn {
        width: 100%;
    }

    .features-grid,
    .services-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .stat-grid,
    .catalog-grid,
    .contact-grid-3 {
        grid-template-columns: 1fr;
    }

    .timeline-row {
        grid-template-columns: 1fr;
    }

    .order-actions,
    .quick-links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .order-btn,
    .quick-links .cta-button,
    .quick-links .cta-secondary {
        width: 100%;
    }

    section {
        padding: 76px 0;
    }
}

@media (max-width: 520px) {
    .container,
    .nav-container {
        width: 93%;
    }

    .nav-container {
        gap: 0.45rem;
    }

    .nav-logo {
        font-size: 0.95rem;
        gap: 0.45rem;
        min-width: 0;
    }

    .nav-logo span {
        max-width: 92px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-logo i {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
        border-radius: 11px;
    }

    .nav-right {
        gap: 0.4rem;
    }

    .lang-dropdown {
        min-width: 72px;
        height: 36px;
        font-size: 0.85rem;
        padding: 0 0.55rem;
        border-radius: 11px;
    }

    .theme-toggle,
    .hamburger {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .nav-menu {
        top: 68px;
        padding: 0.85rem 3.5%;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: clamp(1.7rem, 9vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.96rem;
    }

    .hero-panel {
        display: none;
    }

    .hero-label {
        font-size: 0.72rem;
    }

    .typing-marquee {
        font-size: 0.9rem;
        min-height: 44px;
        padding: 0.65rem 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cs-buttons {
        gap: 0.55rem;
    }

    .cs-button {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .floating-wa {
        width: 54px;
        height: 54px;
        right: calc(14px + env(safe-area-inset-right));
        bottom: calc(14px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 380px) {
    .nav-logo span {
        display: none;
    }

    .lang-dropdown {
        min-width: 64px;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: clamp(1.55rem, 10vw, 2rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== AC APP REFRESH LAYER ===== */
body.ac-app {
    background: radial-gradient(circle at 12% 12%, #e0e7ff, #f8fafc 38%), #f8fafc;
    color: #0f172a;
}

body.ac-app[data-theme="dark"] {
    background: radial-gradient(circle at 12% 12%, #101b38, #020617 36%), #020617;
    color: #e2e8f0;
}

.ac-app .navbar {
    padding: 0.38rem 0;
    background: rgba(248, 250, 252, 0.82);
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}

.ac-app .nav-container {
    width: min(1080px, 94%);
    gap: 0.7rem;
}

.ac-app .navbar.is-scrolled {
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.ac-app[data-theme="dark"] .navbar {
    background: rgba(2, 6, 23, 0.76);
    border-bottom-color: rgba(100, 116, 139, 0.35);
}

.ac-app .nav-logo {
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem;
    line-height: 1;
    gap: 0.3rem;
    letter-spacing: 0.2px;
}

.ac-app .brand-logo {
    width: 0.5rem;
    height: 0.5rem;
    object-fit: contain;
    border-radius: 5px;
}

.ac-app .nav-menu {
    gap: 0.2rem;
}

.ac-app .nav-link {
    font-size: 0.72rem;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
}

.ac-app .nav-right {
    gap: 0.45rem;
}

.ac-app .lang-dropdown,
.ac-app .theme-toggle {
    height: 28px;
    border-radius: 9px;
}

.ac-app .lang-dropdown {
    min-width: 64px;
    font-size: 0.72rem;
    padding: 0 0.45rem;
}

.ac-app .theme-toggle {
    width: 28px;
    height: 28px;
}

.ac-app .hero {
    min-height: 56vh;
    padding: 74px 0 28px;
    background: linear-gradient(135deg, #1d4ed8, #0f172a 78%);
}

.ac-app .hero-content,
.ac-app .hero-panel,
.ac-app .page-hero,
.ac-app .page-wrap,
.ac-app .feature-card,
.ac-app .catalog-card,
.ac-app .contact-item,
.ac-app .info-card,
.ac-app .stat-box,
.ac-app .timeline-row {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.ac-app .is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ac-app .hero-banner {
    width: min(360px, 100%);
    margin: 0 0 0.7rem;
}

.ac-app .hero-banner-image {
    width: 100%;
    max-height: 90px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(191, 219, 254, 0.4);
}

.ac-app .page-hero {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    padding: 84px 0 24px;
}

.ac-app .page-wrap {
    padding: 44px 0;
}

.ac-app .feature-card,
.ac-app .catalog-card,
.ac-app .contact-item,
.ac-app .info-card,
.ac-app .stat-box,
.ac-app .timeline-row,
.ac-app .panel-card {
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.ac-app[data-theme="dark"] .feature-card,
.ac-app[data-theme="dark"] .catalog-card,
.ac-app[data-theme="dark"] .contact-item,
.ac-app[data-theme="dark"] .info-card,
.ac-app[data-theme="dark"] .stat-box,
.ac-app[data-theme="dark"] .timeline-row,
.ac-app[data-theme="dark"] .panel-card {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(100, 116, 139, 0.34);
    box-shadow: 0 18px 32px rgba(2, 6, 23, 0.35);
}

.ac-app .domain-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.7rem;
}

.ac-app .domain-result {
    margin-top: 0.8rem;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(248, 250, 252, 0.65);
    color: #0f172a;
}

.ac-app .domain-result.success {
    border-color: rgba(16, 185, 129, 0.4);
    color: #047857;
}

.ac-app .domain-result.error {
    border-color: rgba(239, 68, 68, 0.45);
    color: #b91c1c;
}

.ac-app .domain-result.checking {
    border-color: rgba(59, 130, 246, 0.45);
    color: #1d4ed8;
}

.ac-app[data-theme="dark"] .domain-result {
    background: rgba(2, 6, 23, 0.6);
    color: #e2e8f0;
}

.ac-app .footer {
    margin-top: 22px;
    padding: 40px 0 18px;
    background: linear-gradient(140deg, #020617, #0f1f45);
}

.ac-app .floating-wa {
    box-shadow: 0 10px 24px rgba(3, 105, 55, 0.42);
}

@media (max-width: 1024px) {
    .ac-app .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .ac-app .panel-card {
        max-width: 560px;
    }

    .ac-app .catalog-grid,
    .ac-app .features-grid,
    .ac-app .footer-content,
    .ac-app .contact-grid-3,
    .ac-app .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .ac-app .nav-container {
        width: 94%;
        gap: 0.45rem;
    }

    .ac-app .nav-logo {
        font-size: 0.82rem;
        gap: 0.28rem;
    }

    .ac-app .brand-logo {
        width: 0.5rem;
        height: 0.5rem;
    }

    .ac-app .nav-link {
        font-size: 0.84rem;
        padding: 0.5rem 0.65rem;
    }

    .ac-app .lang-dropdown,
    .ac-app .theme-toggle,
    .ac-app .hamburger {
        height: 26px;
        border-radius: 8px;
    }

    .ac-app .theme-toggle,
    .ac-app .hamburger {
        width: 26px;
    }

    .ac-app .lang-dropdown {
        min-width: 58px;
        font-size: 0.68rem;
    }

    .ac-app .hero {
        min-height: auto;
        padding: 66px 0 22px;
    }

    .ac-app .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.25rem);
    }

    .ac-app .hero-banner-image {
        max-height: 72px;
        border-radius: 8px;
    }

    .ac-app .page-hero {
        padding: 74px 0 20px;
    }

    .ac-app .footer {
        padding: 32px 0 14px;
    }

    .ac-app .domain-search {
        grid-template-columns: 1fr;
    }

    .ac-app .catalog-grid,
    .ac-app .features-grid,
    .ac-app .footer-content,
    .ac-app .contact-grid-3,
    .ac-app .stat-grid {
        grid-template-columns: 1fr;
    }
}
