@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --bg: #ffffff;
    --bg-2: #f8fafc;
    --bg-3: #f1f5f9;
    --surface: #e2e8f0;
    --surface-2: #cbd5e1;
    --border: rgba(15,31,53,0.08);
    --border-2: rgba(15,31,53,0.14);
    --text: #0f1f35;
    --text-2: #1e3a5f;
    --text-3: #475569;
    --text-4: #94a3b8;
    --gold: #b8922e;
    --gold-light: #9a7a24;
    --gold-dim: rgba(184,146,46,0.08);
    --blue: #2563eb;
    --emerald: #059669;
    --rose: #e11d48;
    --font: 'Inter', sans-serif;
    --heading: 'Playfair Display', 'Inter', sans-serif;
    --ease: cubic-bezier(0.22,1,0.36,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body { font-family:var(--font); color:var(--text); background:var(--bg); overflow-x:hidden; line-height:1.6; }
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; transition:all 0.3s; }
ul,ol { list-style:none; }

.container { width:100%; max-width:1280px; margin:0 auto; padding:0 clamp(16px,4vw,40px); }
.section { padding:clamp(64px,10vw,140px) 0; }
.section-label {
    display:inline-flex; align-items:center; gap:10px;
    font-size:0.7rem; font-weight:700; text-transform:uppercase; letter-spacing:0.2em; color:var(--gold);
}
.section-label::before { content:''; width:24px; height:1px; background:var(--gold); }
.section-title {
    font-family:var(--heading); font-size:clamp(2rem,4vw,3.25rem); font-weight:600;
    line-height:1.15; letter-spacing:-0.01em; color:var(--text); margin:12px 0 16px;
}
.section-desc { font-size:1.0625rem; color:var(--text-3); max-width:540px; line-height:1.75; }

/* BUTTONS */
.btn {
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    padding:14px 32px; font-family:var(--font); font-weight:600; font-size:0.875rem;
    border-radius:8px; border:none; cursor:pointer; transition:all 0.35s var(--ease); white-space:nowrap;
}
.btn-gold { background:var(--gold); color:#fff; }
.btn-gold:hover { background:var(--gold-light); transform:translateY(-2px); box-shadow:0 8px 32px rgba(184,146,46,0.3); }
.btn-outline { background:transparent; color:#fff; border:1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color:rgba(255,255,255,0.7); background:rgba(255,255,255,0.08); }
.btn-dark { background:var(--bg-3); color:var(--text); border:1px solid var(--border); }
.btn-dark:hover { background:var(--surface); border-color:var(--border-2); }
.btn-lg { padding:16px 40px; font-size:0.9375rem; }
.btn-full { width:100%; }

/* TOP BAR */
.top-bar { background:#0f1f35; border-bottom:1px solid rgba(255,255,255,0.06); font-size:0.8125rem; height:44px; display:flex; align-items:center; }
.top-bar-inner { display:flex; justify-content:space-between; align-items:center; width:100%; }
.top-bar-left { display:flex; gap:24px; }
.top-bar-item { display:flex; align-items:center; gap:6px; color:rgba(255,255,255,0.45); transition:color 0.2s; }
.top-bar-item:hover { color:var(--gold); }
.top-bar-item svg { width:13px; height:13px; opacity:0.5; }
.social-links { display:flex; gap:12px; }
.social-links a { color:rgba(255,255,255,0.45); transition:color 0.2s; }
.social-links a:hover { color:var(--gold); }
.social-links svg { width:14px; height:14px; }

/* HEADER */
.main-header {
    position:sticky; top:0; z-index:1000; height:120px; display:flex; align-items:center;
    background:rgba(255,255,255,0.95); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
    border-bottom:1px solid var(--border); transition:box-shadow 0.3s;
}
.main-header.scrolled { box-shadow:0 2px 16px rgba(0,0,0,0.06); }
.header-inner { display:flex; align-items:center; justify-content:space-between; width:100%; }
.logo { display:flex; align-items:center; gap:10px; }
.logo-img { height:110px; width:auto; }
.main-nav { display:flex; gap:36px; }
.nav-link {
    font-size:0.9375rem; font-weight:500; color:var(--text-3); padding:6px 0; position:relative; transition:color 0.2s;
}
.nav-link:hover,.nav-link.active { color:var(--gold); }
.nav-link::after {
    content:''; position:absolute; bottom:0; left:0; width:100%; height:1px; background:var(--gold);
    transform:scaleX(0); transition:transform 0.3s var(--ease); transform-origin:right;
}
.nav-link:hover::after,.nav-link.active::after { transform:scaleX(1); transform-origin:left; }
.header-actions { display:flex; align-items:center; gap:12px; }
.menu-toggle { display:none; flex-direction:column; gap:5px; padding:8px; background:none; border:none; cursor:pointer; }
.hamburger-line { width:22px; height:1.5px; background:var(--text); border-radius:2px; transition:all 0.3s; }
.menu-toggle.active .hamburger-line:nth-child(1) { transform:rotate(45deg) translate(4px,4px); }
.menu-toggle.active .hamburger-line:nth-child(2) { opacity:0; }
.menu-toggle.active .hamburger-line:nth-child(3) { transform:rotate(-45deg) translate(4px,-4px); }

/* MOBILE MENU */
.mobile-menu {
    position:fixed; inset:0; z-index:999; background:#fff; display:none; flex-direction:column;
    justify-content:center; align-items:center; padding:48px; opacity:0; transition:opacity 0.3s;
}
.mobile-menu.active { display:flex; opacity:1; }
.mobile-nav-list { display:flex; flex-direction:column; gap:32px; text-align:center; }
.mobile-nav-link { font-family:var(--heading); font-size:1.75rem; font-weight:500; color:var(--text); }
.mobile-nav-link:hover { color:var(--gold); }

/* HERO */
.hero { position:relative; min-height:100vh; display:flex; align-items:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.hero-bg video, .hero video.hero-bg { width:100%; height:100%; object-fit:cover; }
.hero-overlay {
    position:absolute; inset:0;
    background:linear-gradient(135deg,rgba(15,31,53,0.88) 0%,rgba(15,31,53,0.7) 40%,rgba(15,31,53,0.5) 100%);
}
.hero-content { position:relative; z-index:2; max-width:720px; padding:100px 0; }
.hero-badge {
    display:inline-flex; align-items:center; gap:10px;
    background:rgba(184,146,46,0.15); border:1px solid rgba(184,146,46,0.3);
    color:var(--gold); padding:8px 18px; border-radius:6px;
    font-size:0.6875rem; font-weight:700; letter-spacing:0.15em; text-transform:uppercase; margin-bottom:28px;
}
.hero-badge::before { content:''; width:6px; height:6px; background:var(--gold); border-radius:50%; animation:pulse-dot 2s ease infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;}50%{opacity:0.3;} }
.hero-title {
    font-family:var(--heading); font-size:clamp(2.75rem,6vw,4.75rem); font-weight:600;
    line-height:1.06; margin-bottom:24px; letter-spacing:-0.02em; color:#fff;
}
.hero-title .gold { color:var(--gold); }
.hero-subtitle { font-size:clamp(1rem,1.25vw,1.125rem); color:rgba(255,255,255,0.65); line-height:1.8; margin-bottom:40px; max-width:520px; }
.hero-cta { display:flex; gap:14px; flex-wrap:wrap; }
.hero-stats {
    display:flex; gap:48px; margin-top:64px; padding-top:36px;
    border-top:1px solid rgba(255,255,255,0.1);
}
.hero-stat-num { font-family:var(--heading); font-size:2rem; font-weight:600; color:var(--gold); display:block; }
.hero-stat-label { font-size:0.8125rem; color:rgba(255,255,255,0.4); margin-top:2px; display:block; }

/* PAGE HEADER */
.page-header {
    position:relative; padding:clamp(100px,14vw,160px) 0 clamp(64px,10vw,100px);
    overflow:hidden;
}
.page-header-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.page-header-overlay {
    position:absolute; inset:0;
    background:linear-gradient(135deg,rgba(15,31,53,0.92) 0%,rgba(15,31,53,0.78) 100%);
}
.page-header-content { position:relative; z-index:1; text-align:center; }
.page-title {
    font-family:var(--heading); font-size:clamp(2.25rem,5vw,4rem); font-weight:600;
    color:#fff; margin-bottom:14px; letter-spacing:-0.01em;
}
.page-title .gold { color:var(--gold); }
.page-desc { font-size:1.0625rem; color:rgba(255,255,255,0.6); max-width:520px; margin:0 auto; line-height:1.75; }

/* IMAGE BLOCKS */
.img-block { position:relative; overflow:hidden; border-radius:12px; }
.img-block img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s var(--ease); }
.img-block:hover img { transform:scale(1.03); }
.img-block-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(15,31,53,0.7) 0%,transparent 60%); }

/* SPLIT SECTION */
.split { display:grid; grid-template-columns:1fr 1fr; gap:clamp(24px,4vw,64px); align-items:center; }
.split-reverse { direction:rtl; }
.split-reverse > * { direction:ltr; }
.split-content p { color:var(--text-3); line-height:1.85; margin-bottom:16px; font-size:1.0625rem; }
.split-image { border-radius:12px; overflow:hidden; aspect-ratio:4/3; }
.split-image img { width:100%; height:100%; object-fit:cover; }

/* SERVICE CARDS */
.services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:20px; }
.service-card {
    background:#fff; border:1px solid var(--border); border-radius:12px; overflow:hidden;
    transition:all 0.4s var(--ease);
}
.service-card:hover { transform:translateY(-6px); border-color:rgba(184,146,46,0.3); box-shadow:0 12px 40px rgba(0,0,0,0.08); }
.service-card-img { position:relative; height:200px; overflow:hidden; }
.service-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s var(--ease); }
.service-card:hover .service-card-img img { transform:scale(1.05); }
.service-card-body { padding:24px; }
.service-card-body h3 { font-family:var(--heading); font-size:1.25rem; font-weight:600; color:var(--text); margin-bottom:8px; }
.service-card-body p { font-size:0.875rem; color:var(--text-3); line-height:1.7; }
.service-card-link { display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-size:0.8125rem; font-weight:600; color:var(--gold); }
.service-card-link:hover { gap:10px; }

/* BENEFIT CARDS */
.benefits-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; }
.benefit-card {
    padding:32px; border-radius:12px; background:#fff; border:1px solid var(--border);
    transition:all 0.3s var(--ease);
}
.benefit-card:hover { border-color:rgba(184,146,46,0.3); box-shadow:0 8px 24px rgba(0,0,0,0.06); }
.benefit-icon {
    width:48px; height:48px; display:flex; align-items:center; justify-content:center;
    border-radius:10px; margin-bottom:20px; background:var(--gold-dim); color:var(--gold);
}
.benefit-content h3 { font-family:var(--heading); font-size:1.125rem; font-weight:600; color:var(--text); margin-bottom:8px; }
.benefit-content p { font-size:0.875rem; color:var(--text-3); line-height:1.7; }

/* BLOG */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(340px,1fr)); gap:20px; }
.blog-card {
    background:#fff; border:1px solid var(--border); border-radius:12px; overflow:hidden;
    transition:all 0.4s var(--ease); cursor:pointer;
}
.blog-card:hover { transform:translateY(-6px); border-color:rgba(184,146,46,0.3); box-shadow:0 12px 40px rgba(0,0,0,0.08); }
.blog-card-img { position:relative; height:210px; overflow:hidden; }
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s var(--ease); }
.blog-card:hover .blog-card-img img { transform:scale(1.05); }
.blog-card-badge {
    position:absolute; top:14px; left:14px; background:var(--gold); color:#fff;
    padding:4px 12px; border-radius:4px; font-size:0.6875rem; font-weight:700; text-transform:uppercase; letter-spacing:0.05em;
}
.blog-card-body { padding:24px; }
.blog-card-date { display:inline-flex; gap:6px; font-size:0.8125rem; color:var(--text-4); margin-bottom:10px; }
.blog-card-date strong { color:var(--gold); font-weight:700; font-size:1.125rem; }
.blog-card-body h3 { font-family:var(--heading); font-size:1.125rem; font-weight:600; color:var(--text); margin-bottom:8px; line-height:1.35; }
.blog-card-body p { font-size:0.875rem; color:var(--text-3); line-height:1.7; margin-bottom:12px; }
.blog-card-link { font-size:0.8125rem; font-weight:600; color:var(--gold); }

/* FORMS */
.quote-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,64px); align-items:start; }
.quote-info p { color:var(--text-3); line-height:1.85; margin-bottom:28px; font-size:1.0625rem; }
.quote-check { display:flex; align-items:center; gap:10px; color:var(--text); font-weight:500; font-size:0.9375rem; margin-bottom:12px; }
.quote-check svg { color:var(--emerald); flex-shrink:0; }
.quote-form { background:#fff; border:1px solid var(--border); border-radius:16px; padding:36px; box-shadow:0 8px 32px rgba(0,0,0,0.06); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:0.8125rem; font-weight:600; color:var(--text-2); margin-bottom:6px; }
.form-group input,.form-group textarea,.form-group select {
    width:100%; padding:13px 16px; border:1px solid var(--border-2); border-radius:8px;
    font-size:0.9375rem; font-family:var(--font); color:var(--text); background:var(--bg-2);
    transition:border-color 0.2s,box-shadow 0.2s;
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus {
    outline:none; border-color:var(--gold); box-shadow:0 0 0 3px var(--gold-dim);
}
.form-group textarea { resize:vertical; min-height:120px; }
.form-group select { cursor:pointer; }
.form-group input.error,.form-group textarea.error,.form-group select.error { border-color:var(--rose); }
.form-error { font-size:0.75rem; color:var(--rose); margin-top:4px; }
button:disabled { opacity:0.6; cursor:not-allowed; }

/* ALLIES */
.allies-row { display:flex; justify-content:center; align-items:center; gap:clamp(32px,5vw,64px); flex-wrap:wrap; }
.ally-logo { opacity:0.4; transition:all 0.3s; }
.ally-logo:hover { opacity:1; transform:scale(1.08); }
.ally-logo img { height:52px; width:auto; }

/* FOOTER */
.main-footer { background:#e8ecf2; border-top:1px solid rgba(15,31,53,0.08); padding-top:72px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(15,31,53,0.1); }
.footer-brand p { color:var(--text-3); line-height:1.75; margin-bottom:20px; font-size:0.9375rem; max-width:280px; }
.footer-social { display:flex; gap:10px; }
.footer-social-icon {
    width:36px; height:36px; display:flex; align-items:center; justify-content:center;
    border-radius:8px; background:rgba(15,31,53,0.06); color:var(--text-3); transition:all 0.2s;
}
.footer-social-icon:hover { background:rgba(184,146,46,0.15); color:var(--gold); }
.footer-social-icon svg { width:16px; height:16px; }
.footer-col-title {
    font-family:var(--heading); font-size:0.875rem; font-weight:600; color:var(--text);
    margin-bottom:20px; text-transform:uppercase; letter-spacing:0.05em;
}
.footer-links li { margin-bottom:12px; }
.footer-links a { color:var(--text-3); font-size:0.875rem; }
.footer-links a:hover { color:var(--gold); }
.footer-contact li {
    display:flex; align-items:flex-start; gap:8px; margin-bottom:12px;
    color:var(--text-3); font-size:0.875rem; line-height:1.5;
}
.footer-contact a { color:var(--text-3); }
.footer-contact a:hover { color:var(--gold); }
.footer-bottom { padding:24px 0; }
.footer-bottom-inner { display:flex; justify-content:space-between; align-items:center; font-size:0.8125rem; color:var(--text-3); }
.footer-bottom a { color:var(--gold); }

/* TOAST */
.toast { position:fixed; top:20px; left:50%; transform:translateX(-50%); z-index:10000; min-width:300px; border-radius:10px; box-shadow:0 12px 32px rgba(0,0,0,0.15); animation:toast-in 0.4s var(--ease); }
@keyframes toast-in { from{opacity:0;transform:translateX(-50%) translateY(-12px);}to{opacity:1;transform:translateX(-50%) translateY(0);} }
.toast-inner { display:flex; align-items:center; gap:10px; padding:14px 20px; border-radius:10px; }
.toast-success { background:var(--emerald); color:#fff; }
.toast-error { background:var(--rose); color:#fff; }

/* LOGIN */
.login-page { min-height:100vh; display:flex; align-items:center; justify-content:center; background:var(--bg-2); padding:20px; position:relative; overflow:hidden; }
.login-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.login-bg-overlay { position:absolute; inset:0; background:rgba(255,255,255,0.92); backdrop-filter:blur(8px); }
.login-card {
    background:#fff; border:1px solid var(--border); border-radius:16px;
    width:100%; max-width:420px; padding:44px 36px; position:relative; z-index:1;
    box-shadow:0 16px 48px rgba(0,0,0,0.08);
}
.login-header { text-align:center; margin-bottom:32px; }
.login-logo { font-family:var(--heading); font-size:1.375rem; font-weight:600; color:var(--text); letter-spacing:0.05em; }
.login-logo span { color:var(--gold); }
.login-subtitle { color:var(--text-4); font-size:0.875rem; margin-top:8px; }
.btn-login {
    width:100%; padding:14px; background:var(--gold); color:#fff; border:none; border-radius:8px;
    font-size:0.9375rem; font-weight:600; cursor:pointer; transition:all 0.2s; font-family:var(--font);
}
.btn-login:hover { background:var(--gold-light); transform:translateY(-1px); }
.login-footer { display:block; text-align:center; margin-top:24px; color:var(--text-4); font-size:0.875rem; }
.login-footer a { color:var(--gold); }

/* READING PROGRESS */
.reading-progress {
    position:fixed; top:0; left:0; height:3px; background:var(--gold);
    z-index:10001; transition:width 0.1s linear; width:0%;
}

/* ARTICLE HERO */
.article-hero {
    position:relative; min-height:420px; display:flex; align-items:flex-end;
    overflow:hidden; padding-bottom:48px;
}
.article-hero-bg {
    position:absolute; inset:0; background-size:cover; background-position:center;
    filter:brightness(0.4); transform:scale(1.05); transition:transform 8s ease;
}
.article-hero:hover .article-hero-bg { transform:scale(1.1); }
.article-hero-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to top,rgba(15,31,53,0.95) 0%,rgba(15,31,53,0.4) 50%,rgba(15,31,53,0.2) 100%);
}
.article-hero-content { position:relative; z-index:2; max-width:760px; }
.article-cat-badge {
    display:inline-block; padding:6px 16px; border-radius:4px;
    background:var(--gold); color:#fff; font-size:0.6875rem; font-weight:700;
    text-transform:uppercase; letter-spacing:0.1em; margin-bottom:20px;
}
.article-hero-title {
    font-family:var(--heading); font-size:clamp(2rem,4.5vw,3rem); font-weight:700;
    line-height:1.15; color:#fff; margin-bottom:24px; letter-spacing:-0.01em;
}
.article-hero-meta { display:flex; align-items:center; gap:16px; }
.article-hero-author { display:flex; align-items:center; gap:12px; }
.article-hero-avatar {
    width:44px; height:44px; border-radius:50%; background:var(--gold);
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:0.8125rem; color:#fff; flex-shrink:0;
}
.article-hero-author-name { font-weight:600; color:#fff; font-size:0.9375rem; }
.article-hero-date { font-size:0.8125rem; color:rgba(255,255,255,0.5); margin-top:2px; }

/* ARTICLE LAYOUT */
.article-body { padding:clamp(48px,8vw,80px) 0; }
.article-layout {
    display:grid; grid-template-columns:1fr min(100%,720px) 1fr; gap:0;
}
.article-layout > * { grid-column:2; }
.article-sidebar {
    display:none; grid-column:1; grid-row:1;
    position:relative;
}
@media(min-width:1100px) {
    .article-layout {
        grid-template-columns:80px min(100%,720px) 1fr;
    }
    .article-sidebar {
        display:block; position:sticky; top:140px; align-self:start;
        padding-right:32px;
    }
}
.article-sidebar-inner { display:flex; flex-direction:column; align-items:center; gap:12px; }
.article-share-label {
    font-size:0.6875rem; font-weight:700; text-transform:uppercase;
    letter-spacing:0.1em; color:var(--text-4); margin-bottom:4px;
}
.article-share-icon {
    width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    color:#fff; transition:all 0.25s var(--ease);
}
.article-share-icon:hover { transform:translateY(-3px) scale(1.1); }
.article-share-icon.fb { background:#1877f2; }
.article-share-icon.tw { background:#1da1f2; }
.article-share-icon.li { background:#0077b5; }
.article-share-icon.wa { background:#25d366; }

/* ARTICLE CONTENT */
.article-main { padding:0 24px; }
.article-content {
    font-size:1.0625rem; line-height:1.9; color:var(--text-3);
}
.article-content h2 {
    font-family:var(--heading); font-size:1.5rem; font-weight:700;
    color:var(--text); margin:40px 0 16px; line-height:1.3;
    padding-bottom:8px; border-bottom:2px solid var(--gold-dim);
}
.article-content h3 {
    font-family:var(--heading); font-size:1.25rem; font-weight:600;
    color:var(--text); margin:32px 0 12px; line-height:1.35;
}
.article-content p { margin-bottom:20px; }
.article-content ul, .article-content ol {
    margin:16px 0 24px; padding-left:0;
}
.article-content li {
    position:relative; padding-left:24px; margin-bottom:10px; line-height:1.8;
}
.article-content li::before {
    content:''; position:absolute; left:0; top:10px;
    width:8px; height:8px; background:var(--gold); border-radius:50%;
}
.article-content strong { color:var(--text); font-weight:600; }
.article-content blockquote {
    margin:28px 0; padding:20px 24px; border-left:4px solid var(--gold);
    background:var(--gold-dim); border-radius:0 8px 8px 0;
    font-style:italic; color:var(--text-2);
}
.article-content a {
    color:var(--gold); font-weight:600; border-bottom:1px solid var(--gold-dim);
    transition:border-color 0.2s;
}
.article-content a:hover { border-bottom-color:var(--gold); }
.article-content img {
    border-radius:12px; margin:28px 0; width:100%;
}
.article-content code {
    background:var(--bg-3); padding:2px 8px; border-radius:4px;
    font-size:0.9em; color:var(--gold);
}

/* ARTICLE FOOTER TAGS */
.article-footer-tags {
    display:flex; flex-wrap:wrap; gap:8px; margin-top:40px;
    padding-top:24px; border-top:1px solid var(--border);
}
.article-tag {
    display:inline-block; padding:6px 16px; border-radius:20px;
    background:var(--gold-dim); color:var(--gold); font-size:0.8125rem;
    font-weight:600; transition:all 0.2s;
}
.article-tag:hover { background:var(--gold); color:#fff; }

/* AUTHOR BOX */
.article-author-box {
    display:flex; gap:20px; align-items:flex-start;
    margin-top:32px; padding:24px; background:var(--bg-2);
    border-radius:12px; border:1px solid var(--border);
}
.article-author-avatar {
    width:56px; height:56px; border-radius:50%; background:var(--gold);
    display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:1rem; color:#fff; flex-shrink:0;
}
.article-author-label { font-size:0.75rem; color:var(--text-4); text-transform:uppercase; letter-spacing:0.05em; }
.article-author-name { font-weight:700; color:var(--text); font-size:1rem; margin:2px 0 6px; }
.article-author-bio { font-size:0.875rem; color:var(--text-3); line-height:1.6; }

/* ARTICLE NAV */
.article-nav {
    display:grid; grid-template-columns:1fr 1fr; gap:16px;
    margin-top:40px; padding-top:32px; border-top:1px solid var(--border);
}
.article-nav-card {
    display:flex; flex-direction:column; gap:6px;
    padding:20px; border:1px solid var(--border); border-radius:10px;
    text-decoration:none; transition:all 0.25s var(--ease);
}
.article-nav-card:hover { border-color:var(--gold); box-shadow:0 4px 16px rgba(184,146,46,0.1); }
.article-nav-card.next { text-align:right; }
.article-nav-label { font-size:0.75rem; color:var(--text-4); font-weight:500; }
.article-nav-title { font-size:0.9375rem; font-weight:600; color:var(--text); line-height:1.4; }

/* ARTICLE RELATED */
.article-related { background:var(--bg-2); }

/* RESPONSIVE ARTICLE */
@media(max-width:768px) {
    .article-hero { min-height:340px; padding-bottom:32px; }
    .article-hero-title { font-size:1.75rem; }
    .article-main { padding:0; }
    .article-content { font-size:1rem; line-height:1.8; }
    .article-content h2 { font-size:1.3rem; }
    .article-nav { grid-template-columns:1fr; }
    .article-author-box { flex-direction:column; align-items:center; text-align:center; }
}

/* REVEAL */
.reveal { opacity:0; transform:translateY(32px); transition:opacity 0.7s var(--ease),transform 0.7s var(--ease); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-40px); transition:opacity 0.7s var(--ease),transform 0.7s var(--ease); }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px); transition:opacity 0.7s var(--ease),transform 0.7s var(--ease); }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* RESPONSIVE */
@media(max-width:1024px) { .footer-grid{grid-template-columns:1fr 1fr;} .split{grid-template-columns:1fr;} .split-reverse{direction:ltr;} .quote-grid{grid-template-columns:1fr;} }
@media(max-width:768px) {
    .top-bar{display:none;} .main-nav,.header-actions .btn{display:none;} .menu-toggle{display:flex;}
    .logo-img{height:70px;}
    .hero-stats{flex-direction:column;gap:16px;} .hero-cta{flex-direction:column;} .hero-cta .btn{width:100%;}
    .form-row{grid-template-columns:1fr;} .services-grid,.blog-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;} .footer-bottom-inner{flex-direction:column;gap:8px;text-align:center;}
}
@media(prefers-reduced-motion:reduce) { *,*::before,*::after{animation-duration:0.01ms!important;transition-duration:0.01ms!important;} .reveal,.reveal-left,.reveal-right{opacity:1;transform:none;} }

/* LOADING SCREEN */
.loading-screen {
    position: fixed; inset: 0; z-index: 99999;
    background: #0a1628;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-logo {
    animation: logoPulse 1.5s ease-in-out infinite;
}
.loading-logo img {
    height: 320px;
    filter: brightness(0) invert(1);
}
@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.7; }
}
.loading-bar {
    width: 200px; height: 3px; background: rgba(255,255,255,0.15);
    border-radius: 3px; margin-top: 32px; overflow: hidden;
}
.loading-bar-fill {
    height: 100%; width: 0%; background: var(--gold);
    border-radius: 3px; animation: loadingProgress 2s ease-in-out forwards;
}
@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* SCROLL TO TOP */
@keyframes heroZoom { 0%{transform:scale(1);} 100%{transform:scale(1.08);} }
.scroll-top {
    position:fixed; bottom:32px; right:32px; width:48px; height:48px; border-radius:50%;
    background:var(--gold); color:#fff; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center;
    box-shadow:0 4px 20px rgba(184,146,46,0.4); opacity:0; visibility:hidden; transform:translateY(20px);
    transition:all 0.35s var(--ease); z-index:999;
}
.scroll-top.visible { opacity:1; visibility:visible; transform:translateY(0); }
.scroll-top:hover { background:var(--gold-light); transform:translateY(-3px); box-shadow:0 6px 24px rgba(184,146,46,0.5); }
.scroll-top svg { width:20px; height:20px; }

/* WHATSAPP */
.whatsapp-float {
    position:fixed; bottom:32px; left:32px; width:56px; height:56px; border-radius:50%;
    background:#25d366; color:#fff; display:flex; align-items:center; justify-content:center;
    box-shadow:0 4px 20px rgba(37,211,102,0.4); z-index:999; transition:all 0.35s var(--ease);
}
.whatsapp-float:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width:28px; height:28px; }
@media(max-width:768px) {
    .scroll-top { bottom:20px; right:20px; width:42px; height:42px; }
    .whatsapp-float { bottom:20px; left:20px; width:50px; height:50px; }
    .whatsapp-float svg { width:24px; height:24px; }
}
