/* ============================================
   WESAL-DIGITAL.COM | Premium Domain Landing
   Split-hero variant with browser-mock domain card
   ============================================ */

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

:root {
    --cyan: #35D4EE;
    --cyan-dark: #006177;
    --cyan-glow: rgba(53, 212, 238, 0.15);
    --light: #F2F2F2;
    --dark: #0a0e14;
    --dark-2: #0d1219;
    --dark-3: #111820;
    --dark-surface: #151d28;
    --white: #ffffff;
    --gray: #7a8da3;
    --font-en: 'Outfit', sans-serif;
    --font-ar: 'Cairo', sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    --nav-height: 80px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-en);
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

html[dir="rtl"] body { font-family: var(--font-ar); }
html[dir="rtl"] { direction: rtl; }

html[dir="rtl"] .hero-desc,
html[dir="rtl"] .section-sub { text-align: right; }
html[dir="rtl"] .footer-grid { direction: rtl; }
html[dir="rtl"] .footer-brand p { text-align: right; }
html[dir="rtl"] .footer-contact { text-align: right; }
html[dir="rtl"] .section-tag::before { right: auto; left: 100%; }
html[dir="rtl"] .section-tag::after { left: auto; right: 100%; }
html[dir="rtl"] .hero-domain { direction: ltr; display: inline-flex; }
html[dir="rtl"] .domain-card { direction: ltr; }
html[dir="rtl"] .highlight-row { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .hero-stats { direction: ltr; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; }

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

.section {
    padding: 90px 0;
    position: relative;
    background: transparent;
    overflow: hidden;
}

/* ==================== CURSOR ==================== */
.cursor-follow {
    width: 20px; height: 20px;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background 0.3s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
.cursor-follow.hover {
    width: 44px; height: 44px;
    background: rgba(53, 212, 238, 0.15);
}
@media (pointer: coarse) { .cursor-follow { display: none; } }

/* ==================== NAVIGATION ==================== */
#navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 0 24px;
    height: var(--nav-height);
    transition: all var(--transition);
}
#navbar.scrolled {
    background: rgba(10, 14, 20, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; height: 100%;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; z-index: 1001; direction: ltr; }
.site-logo { height: 38px; width: auto; max-width: 160px; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
    background: transparent; border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); padding: 6px 14px; border-radius: 6px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    transition: all var(--transition); font-family: var(--font-en);
}
.lang-toggle:hover { border-color: var(--cyan); color: var(--cyan); }

.nav-cta {
    background: var(--cyan); color: var(--dark);
    padding: 10px 24px; border-radius: 8px;
    font-size: 14px; font-weight: 700;
    transition: all var(--transition); position: relative; overflow: hidden;
    z-index: 1; text-transform: uppercase;
}
.nav-cta::before {
    content: ''; position: absolute; inset: 0;
    background: var(--dark); border-radius: 8px;
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s var(--ease);
    z-index: -1;
}
.nav-cta:hover { color: var(--cyan); }
.nav-cta:hover::before { transform: scaleX(1); transform-origin: left; }

/* ==================== HERO (SPLIT LAYOUT) ==================== */
#hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; background: transparent;
    overflow: hidden; padding: calc(var(--nav-height) + 40px) 0 60px;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.hero-glow {
    position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.18;
    will-change: transform;
}
.hero-glow-1 {
    width: 500px; height: 500px; background: var(--cyan);
    top: 0%; left: -8%;
    animation: glowFloat1 11s ease-in-out infinite;
}
.hero-glow-2 {
    width: 420px; height: 420px; background: var(--cyan-dark);
    bottom: 0%; right: -5%;
    animation: glowFloat2 13s ease-in-out infinite;
}

@keyframes glowFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -40px) scale(1.15); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}
@keyframes glowFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 50px) scale(1.1); }
    66% { transform: translate(40px, -25px) scale(1.15); }
}

.hero-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left { text-align: left; }
html[dir="rtl"] .hero-left { text-align: right; }

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(53, 212, 238, 0.08);
    border: 1px solid rgba(53, 212, 238, 0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 24px;
}

.hero-title {
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
}
.hero-line {
    display: block;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 600;
    color: rgba(255,255,255,0.78);
    text-transform: none;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.hero-domain {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 4.4vw, 3.2rem);
    letter-spacing: -1px;
    font-weight: 700;
}
.hero-domain .dom-part {
    background: linear-gradient(135deg, #fff 30%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-domain .dom-hyphen {
    color: var(--cyan);
    margin: 0 2px;
    animation: hyphenPulse 1.8s ease-in-out infinite;
    text-shadow: 0 0 20px var(--cyan);
}
@keyframes hyphenPulse {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.7; transform: translateY(-2px); }
}
.hero-domain .dom-tld {
    background: linear-gradient(135deg, var(--cyan), #28b8d0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.85;
    max-width: 520px;
    margin-bottom: 32px;
}
.hero-desc strong { color: var(--white); font-weight: 700; }
.hero-desc em { color: var(--cyan); font-style: normal; font-weight: 600; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    padding: 18px 24px;
    background: rgba(21, 29, 40, 0.5);
    border: 1px solid rgba(53, 212, 238, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: max-content;
    max-width: 100%;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
}
.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(53, 212, 238, 0.18);
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 12px;
    font-size: 15px; font-weight: 700;
    font-family: var(--font-en);
    cursor: pointer; border: none;
    transition: all var(--transition);
    position: relative; overflow: hidden;
}
html[dir="rtl"] .btn { font-family: var(--font-ar); }

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), #28b8d0);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(53, 212, 238, 0.25);
}
.btn-primary::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
}
.btn-primary:hover::before { width: 300px; height: 300px; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(53, 212, 238, 0.4); }
.btn-primary svg { transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateX(4px); }
html[dir="rtl"] .btn-primary:hover svg { transform: translateX(-4px) scaleX(-1); }

.btn-ghost {
    background: rgba(53, 212, 238, 0.04);
    color: var(--cyan);
    border: 1px solid rgba(53, 212, 238, 0.3);
}
.btn-ghost:hover {
    background: rgba(53, 212, 238, 0.12);
    border-color: var(--cyan);
    transform: translateY(-3px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== Domain Browser Card ===== */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.domain-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(155deg, rgba(21, 29, 40, 0.85), rgba(13, 18, 25, 0.85));
    border: 1px solid rgba(53, 212, 238, 0.22);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 80px rgba(53, 212, 238, 0.08);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.domain-card-glow {
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, transparent, var(--cyan), transparent, var(--cyan-dark), transparent);
    border-radius: 18px;
    opacity: 0.4;
    z-index: -1;
    animation: rotateGlow 8s linear infinite;
}
@keyframes rotateGlow { to { transform: rotate(360deg); } }

.domain-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(10, 14, 20, 0.6);
    border-bottom: 1px solid rgba(53, 212, 238, 0.12);
}
.window-dots { display: flex; gap: 6px; }
.window-dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.18);
}
.window-dots span:nth-child(1) { background: #ff5f57; }
.window-dots span:nth-child(2) { background: #febc2e; }
.window-dots span:nth-child(3) { background: #28c941; }
.window-url {
    flex: 1;
    background: rgba(53, 212, 238, 0.06);
    border: 1px solid rgba(53, 212, 238, 0.1);
    border-radius: 6px;
    padding: 4px 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray);
}

.domain-card-body {
    padding: 56px 28px;
    text-align: center;
    position: relative;
}
.dc-name {
    font-family: var(--font-mono);
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: baseline;
}
.dc-tld {
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(53, 212, 238, 0.4);
}
.dc-cursor {
    display: inline-block;
    width: 3px; height: 1.8rem;
    background: var(--cyan);
    margin-left: 6px;
    vertical-align: middle;
    animation: cursorBlink 1s steps(2) infinite;
}
@keyframes cursorBlink { to { opacity: 0; } }

.domain-card-footer {
    display: flex;
    gap: 8px;
    padding: 16px 18px;
    background: rgba(10, 14, 20, 0.5);
    border-top: 1px solid rgba(53, 212, 238, 0.08);
    flex-wrap: wrap;
}
.dc-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(40, 201, 65, 0.12);
    border: 1px solid rgba(40, 201, 65, 0.35);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #5feb6e;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.dc-pill svg { color: #5feb6e; }
.dc-pill-alt {
    background: rgba(53, 212, 238, 0.1);
    border-color: rgba(53, 212, 238, 0.3);
    color: var(--cyan);
}

/* ==================== SECTION HEADERS ==================== */
.section-header { text-align: center; margin-bottom: 72px; position: relative; z-index: 2; }

.section-tag {
    display: inline-block; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--cyan); margin-bottom: 16px;
    position: relative; padding: 0 24px;
}
.section-tag::before, .section-tag::after {
    content: ''; position: absolute; top: 50%;
    width: 40px; height: 1px; background: var(--cyan); opacity: 0.4;
}
.section-tag::before { right: 100%; }
.section-tag::after { left: 100%; }

.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800; line-height: 1.15; margin-bottom: 8px;
    color: var(--white);
}
.section-title.highlight {
    color: var(--cyan);
    text-shadow: 0 0 40px rgba(53, 212, 238, 0.2);
    font-family: var(--font-mono);
    letter-spacing: -1px;
}
.section-sub {
    font-size: 1.1rem; color: var(--gray);
    max-width: 600px; margin: 16px auto 0;
}

/* ==================== HIGHLIGHTS LIST ==================== */
.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.highlight-row {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
    background: rgba(21, 29, 40, 0.55);
    border: 1px solid rgba(53, 212, 238, 0.08);
    border-radius: 20px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.highlight-row::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--cyan), var(--cyan-dark));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s var(--ease);
}
.highlight-row:hover {
    transform: translateX(8px);
    border-color: rgba(53, 212, 238, 0.25);
    box-shadow: 0 15px 40px rgba(53, 212, 238, 0.1);
}
html[dir="rtl"] .highlight-row:hover { transform: translateX(-8px); }
.highlight-row:hover::before { transform: scaleY(1); }

.highlight-num {
    font-family: var(--font-mono);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    min-width: 64px;
    opacity: 0.65;
    text-shadow: 0 0 20px rgba(53, 212, 238, 0.3);
    transition: opacity var(--transition), transform var(--transition);
}
.highlight-row:hover .highlight-num { opacity: 1; transform: scale(1.08); }

.highlight-body { flex: 1; }
.highlight-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.highlight-body p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

.highlight-icon {
    width: 56px; height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(53, 212, 238, 0.06);
    border: 1px solid rgba(53, 212, 238, 0.12);
    border-radius: 14px;
    transition: all var(--transition);
}
.highlight-row:hover .highlight-icon {
    background: rgba(53, 212, 238, 0.12);
    border-color: rgba(53, 212, 238, 0.3);
    transform: rotate(-6deg);
}
.highlight-icon svg { width: 28px; height: 28px; }

/* ==================== OFFER FORM ==================== */
#offer { background: transparent; }

.offer-grid {
    display: flex; justify-content: center;
    position: relative; z-index: 2;
}

.offer-form {
    display: flex; flex-direction: column; gap: 20px;
    width: 100%; max-width: 720px;
    padding: 40px;
    background: rgba(21, 29, 40, 0.55);
    border: 1px solid rgba(53, 212, 238, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 60px rgba(53, 212, 238, 0.05);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { position: relative; }
.form-group input, .form-group textarea {
    width: 100%; padding: 16px 20px;
    background: var(--dark-surface);
    border: 1px solid rgba(53, 212, 238, 0.08);
    border-radius: 12px; color: var(--white);
    font-size: 15px; font-family: var(--font-en);
    outline: none; transition: all var(--transition); resize: none;
}
html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group textarea { font-family: var(--font-ar); }

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(53, 212, 238, 0.08);
}
.form-group label {
    position: absolute; top: 16px; left: 20px;
    color: var(--gray); font-size: 15px;
    pointer-events: none; transition: all var(--transition);
}
html[dir="rtl"] .form-group label { left: auto; right: 20px; }

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px; left: 16px; font-size: 11px;
    color: var(--cyan); background: var(--dark);
    padding: 2px 8px; border-radius: 4px;
}
html[dir="rtl"] .form-group input:focus + label,
html[dir="rtl"] .form-group input:not(:placeholder-shown) + label,
html[dir="rtl"] .form-group textarea:focus + label,
html[dir="rtl"] .form-group textarea:not(:placeholder-shown) + label {
    left: auto; right: 16px;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none; margin: 0;
}
.form-group input[type="number"] { -moz-appearance: textfield; }

.price-wrap { position: relative; }
.price-wrap input { padding-left: 40px !important; }
html[dir="rtl"] .price-wrap input { padding-left: 20px !important; padding-right: 40px !important; }
.price-wrap label { left: 40px !important; }
html[dir="rtl"] .price-wrap label { left: auto !important; right: 40px !important; }
.price-wrap input:focus + label,
.price-wrap input:not(:placeholder-shown) + label {
    left: 16px !important;
}
html[dir="rtl"] .price-wrap input:focus + label,
html[dir="rtl"] .price-wrap input:not(:placeholder-shown) + label {
    left: auto !important; right: 16px !important;
}
.price-prefix {
    position: absolute; left: 20px; top: 50%;
    transform: translateY(-50%);
    color: var(--cyan); font-weight: 700; font-size: 16px;
    pointer-events: none; z-index: 2;
}
html[dir="rtl"] .price-prefix { left: auto; right: 20px; }

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 13px;
    margin-top: 8px;
}
.form-note a {
    color: var(--cyan);
    font-weight: 600;
}
.form-note a:hover { text-decoration: underline; }

/* ===== Global animated background ===== */
.bg-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
}

.bg-canvas .bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    will-change: transform;
}

.bg-canvas .bg-glow-1 {
    width: 380px; height: 380px;
    background: var(--cyan);
    top: 15%; left: 8%;
    animation: bgGlowDrift1 22s ease-in-out infinite;
}
.bg-canvas .bg-glow-2 {
    width: 340px; height: 340px;
    background: var(--cyan-dark);
    top: 55%; right: 6%;
    animation: bgGlowDrift2 26s ease-in-out infinite;
}
.bg-canvas .bg-glow-3 {
    width: 240px; height: 240px;
    background: var(--cyan);
    bottom: 12%; left: 42%;
    animation: bgGlowDrift1 18s ease-in-out infinite reverse;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(53, 212, 238, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(53, 212, 238, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
    mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
    opacity: 0.55;
}

@keyframes bgGlowDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(80px, -60px) scale(1.1); }
    50% { transform: translate(-40px, 80px) scale(0.9); }
    75% { transform: translate(60px, 40px) scale(1.05); }
}

@keyframes bgGlowDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-70px, 50px) scale(1.15); }
    66% { transform: translate(50px, -70px) scale(0.95); }
}

.bg-particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0;
    animation: bgParticleFloat linear infinite;
}

@keyframes bgParticleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0.5); }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ==================== FOOTER ==================== */
#footer {
    background: transparent; color: rgba(255,255,255,0.6);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(53, 212, 238, 0.08);
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
}
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; direction: ltr; max-width: 160px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 400px; }
.footer-contact {
    padding: 10px 20px;
}
.footer-contact h4 {
    color: var(--white); font-size: 14px;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
}
.footer-contact a {
    display: block; font-size: 14px; margin-bottom: 10px;
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--cyan); }
.footer-contact-item {
    display: flex !important; flex-direction: row !important; align-items: center; gap: 10px;
    margin-bottom: 10px;
}
.footer-contact-item svg {
    flex-shrink: 0; min-width: 16px; width: 16px; height: 16px;
}
.footer-contact-item a {
    margin-bottom: 0; display: inline !important; font-size: 13px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px; text-align: center; font-size: 13px;
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.stagger {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.stagger.visible { opacity: 1; transform: translateY(0); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-shell { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-left, .hero-right { min-width: 0; }
    .hero-left { text-align: center !important; }
    .domain-card { max-width: 440px; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-stats { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    .section { padding: 56px 0; }
    .site-logo { height: 32px; max-width: 130px; }
    .footer-logo { height: 36px; }

    #hero { padding: calc(var(--nav-height) + 24px) 0 40px; }
    .hero-shell { gap: 32px; padding: 0 16px; }
    .hero-tag { font-size: 10px; padding: 6px 14px; letter-spacing: 2px; }
    .hero-line { font-size: clamp(1.2rem, 5vw, 1.6rem); }
    .hero-domain { font-size: clamp(1.35rem, 7.4vw, 2.6rem); }
    .hero-desc { font-size: 14px; margin-bottom: 24px; }
    .hero-stats { width: 100%; justify-content: space-around; gap: 10px; padding: 14px 10px; }
    .stat-num { font-size: 1rem; }
    .stat-label { font-size: 9px; }
    .stat-divider { display: none; }
    .section-title { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
    .section-sub { font-size: 14px; }
    .section-header { margin-bottom: 48px; }

    .highlight-row { padding: 20px 18px; gap: 16px; }
    .highlight-num { font-size: 1.6rem; min-width: 40px; }
    .highlight-body h3 { font-size: 1.05rem; }
    .highlight-body p { font-size: 0.85rem; }
    .highlight-icon { width: 44px; height: 44px; }
    .highlight-icon svg { width: 22px; height: 22px; }

    .offer-form { padding: 28px 22px; gap: 16px; }
    .form-row { grid-template-columns: 1fr; gap: 16px; }
    .form-group input, .form-group textarea { font-size: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-contact { padding: 0; }
    .footer-contact h4 { font-size: 12px; margin-bottom: 12px; }

    .domain-card-body { padding: 40px 20px; }
    .dc-cursor { height: 1.4rem; }

    #footer { padding: 40px 0 20px; }
    .footer-grid { margin-bottom: 24px; }

    .hero-glow { display: none; }
    .bg-canvas .bg-glow { display: none; }
    .bg-grid { background-size: 40px 40px; }
}

@media (max-width: 480px) {
    .section { padding: 40px 0; }
    .site-logo { height: 28px; max-width: 120px; }
    .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    .nav-cta { padding: 8px 16px; font-size: 12px; }
    .hero-stats { gap: 6px; padding: 12px 8px; }
    .stat-num { font-size: 0.9rem; }
    .stat-label { font-size: 8px; letter-spacing: 0.5px; }
    .highlight-row {
        flex-wrap: wrap;
        text-align: left;
    }
    html[dir="rtl"] .highlight-row { text-align: right; }
    .highlight-icon { order: -1; margin-left: auto; }
    html[dir="rtl"] .highlight-icon { margin-left: 0; margin-right: auto; }
    .highlight-num { font-size: 1.4rem; min-width: 36px; }
    .domain-card-body { padding: 32px 16px; }
    .dc-name { font-size: 1.2rem; }
    .offer-form { padding: 22px 16px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-glow, .bg-canvas .bg-glow, .bg-particle { display: none; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--cyan-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }
::selection { background: var(--cyan); color: var(--dark); }
