
:root {
    --bg: #020617;
    --bg-soft: #050816;
    --accent: #facc15;
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --border-soft: rgba(148, 163, 184, 0.25);
    --ksa-green: #15803d;
    --ksa-green-soft: #052e16;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body {
    background: radial-gradient(circle at top, #022c22, var(--bg-soft));
    color: var(--text-main);
    min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
.site-header {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(148,163,184,0.25);
    background: rgba(3, 20, 15, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 10;
}
.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-mark {
    width: 30px; height: 30px; border-radius: 999px;
    border: 2px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    background: radial-gradient(circle, rgba(250,204,21,0.16), transparent);
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-weight: 700; font-size: 16px; }
.logo-sub { font-size: 11px; color: var(--text-muted); }

.main-nav {
    display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px;
}
.main-nav a {
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: 999px;
}
.main-nav a:hover {
    color: var(--accent);
    background: rgba(15,118,110,0.35);
}
.page {
    max-width: 1180px;
    margin: 22px auto 32px;
    padding: 0 16px;
}
.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.6fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 22px;
}
.hero-text h1 {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 10px;
}
.hero-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 14px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: rgba(15,23,42,0.9);
    color: var(--text-muted);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 9px 18px; border-radius: 999px;
    font-size: 14px; border: 1px solid transparent;
    cursor: pointer; transition: 0.16s ease; white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), #f97316);
    color: #111827;
    box-shadow: 0 12px 28px rgba(0,0,0,0.7);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.85);
}
.btn-outline {
    background: rgba(15,23,42,0.95);
    color: var(--text-main);
    border-color: var(--border-soft);
}
.btn-outline:hover { background: rgba(22,101,52,0.8); }
.hero-note { font-size: 12px; color: var(--text-muted); }
.hero-note span { color: var(--accent); }

.hero-visual {
    position: relative;
    min-height: 260px;
    border-radius: 20px;
    overflow: hidden;
    background: radial-gradient(circle at top, #166534, var(--ksa-green-soft));
    border: 1px solid rgba(22,163,74,0.6);
    box-shadow: 0 20px 50px rgba(0,0,0,0.9);
}
.hero-bg-picture img {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.45;
}
.hero-visual-inner {
    position: absolute; inset: 0;
    padding: 16px 16px 14px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.hero-badge {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.35);
    font-size: 11px;
}
.hero-visual-bottom {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
}
.watch-card-3d {
    width: 58%; max-width: 260px; aspect-ratio: 3/4;
    border-radius: 18px;
    background: radial-gradient(circle at top, rgba(250,250,250,0.14), rgba(15,23,42,0.9));
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 18px 45px rgba(0,0,0,0.95);
    padding: 10px;
    transform-style: preserve-3d;
    transform: perspective(900px) rotateY(-10deg) rotateX(4deg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.watch-card-3d img { width: 100%; height: 100%; object-fit: contain; }
.watch-card-3d:hover {
    transform: perspective(900px) rotateY(8deg) rotateX(0deg) translateY(-4px);
    box-shadow: 0 26px 60px rgba(0,0,0,1);
}
.hero-visual-text { flex: 1; font-size: 12px; color: #e5e7eb; }

.form-box {
    background: rgba(15,23,42,0.96);
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 18px 45px rgba(0,0,0,0.9);
}
.form-title { font-size: 16px; margin-bottom: 4px; }
.form-subtitle { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.alert {
    font-size: 12px; border-radius: 8px;
    padding: 8px 10px; margin-bottom: 8px;
}
.alert-success {
    background: rgba(22,163,74,0.12);
    border: 1px solid rgba(22,163,74,0.9);
    color: #bbf7d0;
}
.alert-error {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.9);
    color: #fecaca;
}
.form-grid { display: grid; gap: 8px; margin-bottom: 8px; }
.form-field label { display: block; font-size: 12px; margin-bottom: 3px; }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%; padding: 7px 9px;
    border-radius: 10px;
    border: 1px solid rgba(55,65,81,0.9);
    background: #020617; color: var(--text-main); font-size: 13px;
}
.form-field textarea { min-height: 70px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(250,204,21,0.5);
}
.form-hint { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.form-footer-note { font-size: 10px; color: var(--text-muted); margin-top: 4px; }

.section { margin-top: 22px; }
.section-header {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; margin-bottom: 8px;
}
.section-header h2 { font-size: 18px; }
.section-header p { font-size: 12px; color: var(--text-muted); }
.section-body {
    font-size: 13px; color: var(--text-muted); line-height: 1.9;
}
.section-body ul, .section-body ol { padding-right: 18px; }

.brands-strip {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px;
}
.brand-item {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 10px; border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: rgba(15,23,42,0.95);
    font-size: 12px;
}
.brand-item img { width: 22px; height: 22px; object-fit: contain; }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px; margin-top: 10px;
}
.article-card {
    background: rgba(15,23,42,0.96);
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(31,41,55,0.9);
    transition: 0.16s ease;
}
.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.9);
    border-color: rgba(250,204,21,0.4);
}
.article-title { font-size: 14px; margin-bottom: 4px; }
.article-meta { font-size: 11px; color: var(--text-muted); margin-bottom: 5px; }
.article-excerpt { font-size: 12px; color: var(--text-muted); }

.site-footer {
    border-top: 1px solid rgba(148,163,184,0.25);
    padding: 12px 16px 18px;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    background: #020617;
}

.floating-buttons {
    position: fixed; bottom: 16px; left: 16px;
    display: flex; flex-direction: column; gap: 10px; z-index: 20;
}
.float-btn {
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
    border: 2px solid rgba(255,255,255,0.7);
    cursor: pointer; transition: 0.16s ease; font-size: 22px;
}
.float-btn.whatsapp { background: #16a34a; }
.float-btn.call { background: #0ea5e9; }
.float-btn.social { background: #3b82f6; }
.float-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 32px rgba(0,0,0,0.95);
}

@media (max-width: 900px) {
    .hero-layout { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
}
@media (max-width: 720px) {
    .main-nav { display: none; }
    .articles-grid { grid-template-columns: 1fr; }
}
