/* ===== CSS VARIABLES ===== */
:root {
    --color-dark: #1a2744;
    --color-blue: #0054a6;
    --color-green: #27ae60;
    --color-bg: #f8f9fa;
    --color-text: #2c3e50;
    --color-secondary: #666666;
}

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

/* ===== TYPOGRAPHY ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
}

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

/* ===== FULL NAVIGATION ===== */
.nav-full {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-full .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-full .nav-logo img {
    display: block;
}

.nav-full .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-full .nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 15px;
    transition: color 0.2s;
}

.nav-full .nav-links a:hover {
    color: var(--color-blue);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: ' \25BE';
    font-size: 11px;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    padding: 8px 0;
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--color-text) !important;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.15s;
}

.nav-dropdown-menu a:hover {
    background: var(--color-bg);
    color: var(--color-blue) !important;
}

/* CTA button in full nav */
.nav-btn-cta {
    display: inline-block;
    background: var(--color-green);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-btn-cta:hover {
    background: #219a52 !important;
    color: #fff !important;
}

/* ===== MINIMAL NAVIGATION ===== */
.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.nav-minimal .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.nav-minimal .nav-logo img {
    display: block;
}

.nav-btn-back {
    display: inline-block;
    color: var(--color-secondary);
    border: 1px solid #ccc;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.nav-btn-back:hover {
    background: var(--color-bg);
    border-color: #aaa;
    color: var(--color-text);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-text);
    color: #aaa;
    padding: 40px 0 0;
}

.site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}


.footer-brand img {
    opacity: 0.85;
    height: 36px !important;
    width: auto !important;
    max-width: 160px !important;
    display: block;
}

.footer-brand p {
    color: #aaa;
    font-size: 14px;
    max-width: 280px;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
}

.footer-nav a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-copy {
    text-align: center;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    color: #888;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 6px 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--color-blue);
    color: #fff;
}

.btn-primary:hover {
    background: #003d7a;
    color: #fff;
}

.btn-secondary {
    background: #e9ecef;
    color: var(--color-text);
}

.btn-secondary:hover {
    background: #dee2e6;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.badge-growth {
    background: #dbeafe;
    color: #1d4ed8;
}

.badge-stack {
    background: #ffedd5;
    color: #c2410c;
}

.badge-domain {
    background: #ede9fe;
    color: #6d28d9;
}

.badge-management {
    background: #dcfce7;
    color: #15803d;
}

.badge-ready {
    background: #d1fae5;
    color: #065f46;
}

.badge-not-created {
    background: #f3f4f6;
    color: #6b7280;
}

/* ===== SPINNER ===== */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--color-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
