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

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

:root {
    --navbar-height: 88px;
    --bg-dark: #0a0e1a;
    --bg-navbar: #ffffff;
    --accent-blue: #1a56db;
    --accent-blue-hover: #1648b8;
    --text-dark: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-navbar: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    min-height: 100vh;
}

/* ========== NAVBAR (KOTA STYLE) ========== */
.site-navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.navbar-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-logo-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    border: 2.5px solid var(--text-dark);
    padding: 5px 7px;
    gap: 1px;
    width: 52px;
    height: 52px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
}

.navbar-logo-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--text-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-logo-link:hover .navbar-logo-box::before {
    transform: scaleX(1);
}

.navbar-logo-box span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.navbar-logo-link:hover .navbar-logo-box span {
    color: #ffffff;
}

.navbar-logo-name {
    margin-left: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1.5px;
    background: var(--text-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.04);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--text-dark);
    font-weight: 600;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: var(--text-dark);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.btn-contact:hover {
    background: var(--accent-blue);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(26, 86, 219, 0.25);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    flex-shrink: 0;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    background: #f5f5f0;
    padding: 48px 56px 64px 56px;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, #e879f9 0%, #818cf8 30%, #38bdf8 60%, transparent 80%);
    opacity: 0.45;
    pointer-events: none;
}

.hero-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-logo-link:hover .hero-logo-img {
    opacity: 0.7;
    transform: scale(0.96);
}

.hero-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.hero-cta-btn {
    background: #111111;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.hero-cta-btn:hover { background: #333; }

.hero-top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-hamburger {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}

.hero-hamburger span {
    display: block;
    width: 20px;
    height: 1.8px;
    background: #1e293b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-hamburger:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hero-text-block {
    position: relative;
    z-index: 1;
    line-height: 0.95;
    margin-bottom: 40px;
}

.hero-line {
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 800;
    color: #111111;
    font-family: 'Inter', sans-serif;
    letter-spacing: -4px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-circle-wrap { display: inline-flex; align-items: center; }

.hero-circle {
    width: clamp(70px, 9vw, 135px);
    height: clamp(70px, 9vw, 135px);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    margin: 0 2px;
}

.circle-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.circle-slide.active { opacity: 1; }

.hero-description {
    position: relative;
    z-index: 1;
    max-width: 420px;
    margin-left: auto;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ========== MAIN CONTENT ========== */
.main-content {
    background-color: #ffffff;
    min-height: calc(100vh - 250px);
}

.magazine-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

.mag-col { display: flex; flex-direction: column; }
.col-left { border-right: 1px solid var(--border-color); padding-right: 40px; }
.col-center { border-right: 1px solid var(--border-color); padding-right: 40px; }
.mag-card { display: flex; flex-direction: column; }

.mag-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 24px;
}

.mag-meta {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.mag-meta span { color: var(--accent-blue); }

.mag-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.mag-title a { color: inherit; text-decoration: none; }
.mag-title a:hover { text-decoration: underline; }

.mag-card.featured .mag-title { font-size: 2.8rem; line-height: 1.15; text-align: center; }
.mag-card.featured .mag-meta { text-align: center; }
.mag-card.featured .mag-date { text-align: center; }
.mag-card.featured .mag-excerpt { text-align: center; max-width: 800px; margin: 0 auto 32px auto; }
.mag-card:not(.featured) .mag-title { font-size: 1.8rem; line-height: 1.2; }
.mag-card.small .mag-title { font-size: 1.4rem; }

.mag-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.mag-excerpt { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.mag-readmore { font-size: 0.8rem; font-weight: 600; color: var(--accent-blue); text-decoration: none; letter-spacing: 1px; }
.mag-readmore:hover { text-decoration: underline; }
.mag-card.small { margin-bottom: 32px; }
.mag-card.small.border-top { padding-top: 32px; border-top: 1px solid var(--border-color); }

/* ========== STRATEGY SECTION ========== */
.strategy-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.strategy-content { flex: 1; max-width: 600px; }

.strategy-title {
    font-size: 5rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.strategy-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.strategy-tag {
    padding: 8px 24px;
    border: 1px solid var(--border-color);
    border-radius: 40px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: transparent;
}

.strategy-desc { font-size: 1.15rem; line-height: 1.6; color: var(--text-dark); margin-bottom: 40px; }

.strategy-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border: 2px solid var(--text-dark);
    border-radius: 40px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.strategy-btn:hover { background: var(--text-dark); color: #ffffff; }

.strategy-image-container {
    flex: 1;
    background: #111111;
    border-radius: 16px 200px 16px 16px;
    overflow: hidden;
    height: 520px;
    position: relative;
}

/* ========== MOSAIC GRID ========== */
.mosaic { display: flex; align-items: flex-start; gap: 12px; padding: 16px; height: 100%; }
.mosaic-col { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.col-a { animation: scrollUp 8s linear infinite; }
.col-b { animation: scrollDown 10s linear infinite; }
.mosaic-img { width: 100%; height: auto; border-radius: 12px; display: block; flex-shrink: 0; }

@keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
@keyframes scrollDown { 0% { transform: translateY(-50%); } 100% { transform: translateY(0); } }

/* ========== EXPERTISE SECTION ========== */
.expertise-section {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    gap: 80px;
    background: #ffffff;
}

.expertise-left { flex: 0 0 40%; position: sticky; top: 120px; align-self: flex-start; }

.expertise-tag {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
}

.expertise-title {
    font-size: 5.5rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.expertise-title em {
    font-style: italic;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
    color: var(--text-secondary);
}

.expertise-desc { font-size: 1.2rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 40px; max-width: 90%; }
.expertise-right { flex: 1; display: flex; flex-direction: column; }

.expertise-row {
    display: flex;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.expertise-row:first-child { border-top: 1px solid var(--border-color); }
.expertise-row:hover { color: #000000; }
.expertise-num { font-size: 1.1rem; font-weight: 500; color: var(--text-muted); width: 60px; }

.expertise-name {
    font-size: 3.5rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1.5px;
    flex: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-arrow {
    font-size: 2.5rem;
    font-weight: 300;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-row:hover .expertise-name { transform: translateX(30px); }
.expertise-row:hover .expertise-arrow { opacity: 1; transform: translateX(0); }

/* ========== LATEST ARTICLES SECTION ========== */
.articles-section { max-width: 1400px; margin: 120px auto; padding: 0 40px; }

.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.articles-title {
    font-size: 5.5rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1.05;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.articles-title em {
    font-style: italic;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
    color: var(--text-secondary);
}

.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.article-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-dark);
}

.article-img-wrap { width: 100%; height: 350px; overflow: hidden; margin-bottom: 24px; }

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover .article-img { transform: scale(1.05); }
.article-category { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; color: var(--accent-blue); margin-bottom: 12px; }

.article-name {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.article-card:hover .article-name { color: var(--text-secondary); }
.article-link { font-size: 1rem; font-weight: 500; margin-top: auto; }

/* ========== FOOTER ========== */
.site-footer {
    background: #090d16;
    color: #ffffff;
    padding: 100px 48px 48px 48px;
    position: relative;
    border-top: 1px solid #1e293b;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    margin-bottom: 72px;
}

.footer-cta-text { max-width: 680px; }

.footer-cta-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #38bdf8;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-cta-headline {
    font-size: 2.8rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.footer-cta-headline em {
    font-style: italic;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
    color: #94a3b8;
}

.footer-cta-sub { font-size: 1.1rem; color: #94a3b8; line-height: 1.6; }

.footer-cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    flex-shrink: 0;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #090d16;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.footer-cta-btn:hover {
    background: #38bdf8;
    color: #090d16;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(56, 189, 248, 0.3);
}

.footer-cta-direct { font-size: 0.9rem; color: #64748b; }
.footer-cta-direct a { color: #94a3b8; text-decoration: none; transition: color 0.2s ease; }
.footer-cta-direct a:hover { color: #ffffff; text-decoration: underline; }

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 60px;
    padding: 40px 0 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-brand { padding-right: 32px; }

.footer-logo-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1;
}

.footer-tagline { font-size: 1rem; color: #94a3b8; line-height: 1.65; margin-bottom: 28px; max-width: 360px; }

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    color: #cbd5e1;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 28px;
}

.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.footer-nav-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.98rem;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-nav-list a:hover { color: #ffffff; transform: translateX(4px); }

.footer-col-newsletter { display: flex; flex-direction: column; }
.footer-newsletter-desc { font-size: 0.95rem; color: #94a3b8; line-height: 1.6; margin-bottom: 20px; }
.footer-newsletter-form { display: flex; gap: 8px; margin-bottom: 28px; }

.footer-email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.footer-email-input:focus { border-color: #38bdf8; background: rgba(255, 255, 255, 0.08); }
.footer-email-input::placeholder { color: #64748b; }

.footer-email-btn {
    background: #ffffff;
    color: #090d16;
    border: none;
    border-radius: 8px;
    padding: 0 18px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer-email-btn:hover { background: #38bdf8; transform: translateX(2px); }

.footer-social-row { display: flex; gap: 16px; flex-wrap: wrap; }

.footer-social-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-social-link svg {
    transition: transform 0.25s ease;
}

.footer-social-link:hover svg {
    transform: scale(1.1);
}

.footer-social-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-massive-brand {
    text-align: center;
    padding: 20px 0 0 0;
    user-select: none;
    pointer-events: none;
    overflow: hidden;
}

.footer-massive-brand span {
    display: block;
    font-size: clamp(3.5rem, 11.5vw, 9.5rem);
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    letter-spacing: -2px;
    line-height: 0.85;
    color: rgba(255, 255, 255, 0.035);
    text-transform: uppercase;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 0.88rem;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links { display: flex; gap: 28px; }
.footer-legal-links a { color: #64748b; text-decoration: none; transition: color 0.2s ease; }
.footer-legal-links a:hover { color: #94a3b8; }

.footer-back-to-top {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-back-to-top:hover { color: #ffffff; transform: translateY(-2px); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .navbar-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        gap: 4px;
    }

    .navbar-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-link { width: 100%; padding: 12px 16px; border-radius: 8px; }
    .nav-link.active::after { display: none; }
    .navbar-actions { display: none; }
    .mobile-toggle { display: flex; }
    .main-image { width: 260px; height: 260px; }

    .site-footer { padding: 60px 24px 32px 24px; }

    .footer-cta-card {
        padding: 40px 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        margin-bottom: 48px;
    }

    .footer-cta-headline { font-size: 2rem; }
    .footer-cta-action { align-items: flex-start; width: 100%; }
    .footer-cta-btn { width: 100%; justify-content: center; }
    .footer-main-grid { grid-template-columns: 1fr; gap: 40px; padding: 30px 0 40px 0; }
    .footer-col-brand { padding-right: 0; }
    .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-legal-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .footer-main-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
    .footer-cta-card { padding: 48px 40px; }
    .footer-cta-headline { font-size: 2.3rem; }
}

/* ========== HAMBURGER MENU MODAL ========== */
.menu-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
}

.menu-modal.active {
    pointer-events: all;
}

.menu-modal-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.menu-modal.active .menu-modal-overlay {
    background: rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.menu-modal-content {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 260px;
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 28px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    transform: translateX(calc(100% + 32px));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.menu-modal.active .menu-modal-content { transform: translateX(0); }

.menu-modal-close {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #000;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #000;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.menu-modal-close:hover { background: #f0f0f0; }

.menu-modal-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.menu-modal-link {
    font-size: 2.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    letter-spacing: -1px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.menu-modal-link:hover { color: var(--accent-blue); transform: translateX(5px); }

.menu-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border: 1.5px solid #000;
    border-radius: 40px;
    background: transparent;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.menu-modal-btn:hover { background: #000; color: #fff; }