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

:root {
    --slate-950: #0B0F14;
    --slate-900: #111720;
    --slate-800: #1C2535;
    --slate-700: #2B3548;
    --slate-600: #3F506A;
    --slate-500: #5A6E8A;
    --slate-400: #7A90AA;
    --slate-300: #A4B4C8;
    --slate-200: #CBD5E1;
    --slate-100: #E2EAF2;
    --slate-50: #F0F4F8;
    --white: #FFFFFF;
    --accent: #1C1C;
    --accent-dim: rgba(26, 110, 255, .08);
    --accent-border: rgba(26, 110, 255, .2);
    --success: #10B981;
    --text-primary: #0B0F14;
    --text-secondary: #3F506A;
    --text-muted: #7A90AA;
    --border: #D4DDE8;
    --border-light: #E8EFF6;
    --font-display: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;
    --max-w: 1200px;
    --pad-x: clamp(20px, 5vw, 80px);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--pad-x);
    height: 64px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light)
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 21px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400
}

.nav-logo span {
    color: var(--accent)
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--accent)
}

.nav-cta {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    background: var(--slate-900);
    border: none;
    padding: 9px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap
}

.nav-cta:hover {
    background: var(--slate-700)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-secondary)
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 99;
    padding: 20px var(--pad-x)
}

.mobile-menu.open {
    display: block
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0
}

.mobile-menu ul li a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-light)
}

.mobile-menu ul li a:hover {
    color: var(--accent)
}

.mobile-menu .m-cta {
    display: inline-block;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    background: var(--slate-900);
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none
}

/* ── HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px var(--pad-x) 80px;
    background: var(--white);
    overflow: hidden
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--slate-50);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: .08em;
    animation: fadeUp .6s ease both
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 9vw, 100px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    color: var(--slate-900);
    animation: fadeUp .6s .1s ease both
}

.hero-title em {
    font-style: italic;
    color: var(--accent)
}

.hero-sub {
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.85;
    animation: fadeUp .6s .2s ease both
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp .6s .3s ease both
}

.btn-primary {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    background: var(--slate-900);
    border: none;
    padding: 13px 28px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .2s;
    display: inline-block
}

.btn-primary:hover {
    background: var(--slate-700);
    transform: translateY(-1px)
}

.btn-ghost {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-secondary);
    background: transparent;
    border: 1.5px solid var(--border);
    padding: 13px 28px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .2s, color .2s;
    display: inline-block
}

.btn-ghost:hover {
    border-color: var(--slate-400);
    color: var(--text-primary)
}

.btn-danger {
    background: #EF4444;
    color: white;
}

.btn-danger:hover {
    background: #DC2626;
}

.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-family: var(--font-mono)
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, var(--slate-400));
    animation: scrollAnim 2s 1s ease infinite
}

/* ── STATS ── */
.stats-bar {
    position: relative;
    z-index: 1;
    background: var(--slate-900);
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat-item {
    padding: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 24px);
    text-align: center;
    border-right: 1px solid var(--slate-700);
    transition: background .3s
}

.stat-item:last-child {
    border-right: none
}

.stat-item:hover {
    background: var(--slate-800)
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px
}

.stat-label {
    font-size: 11px;
    font-weight: 400;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: .1em
}

/* ── SECTIONS ── */
section {
    position: relative;
    z-index: 1
}

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(72px, 10vw, 128px) var(--pad-x)
}

.section-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px
}

.section-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 44px;
    height: 1px;
    background: var(--accent-border)
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 16px;
    color: var(--slate-900)
}

.section-desc {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.85
}

/* ── ABOUT ── */
#about {
    background: var(--slate-50)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
    margin-top: 56px
}

.value-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light)
}

.value-row:last-child {
    border-bottom: none
}

.value-num {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    padding-top: 3px;
    min-width: 22px
}

.value-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 6px
}

.value-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8
}

.about-visual {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    padding: clamp(32px, 4vw, 48px);
    text-align: center;
    position: sticky;
    top: 80px;
    border-radius: 6px
}

.about-quote {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    font-style: italic;
    color: var(--slate-800);
    line-height: 1.55;
    margin-bottom: 20px
}

.about-quote span {
    color: var(--accent)
}

.about-attr {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: .12em;
    text-transform: uppercase
}

/* ── SERVICES ── */
#services {
    background: var(--white)
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 60px);
    align-items: end;
    margin-bottom: clamp(48px, 6vw, 64px)
}

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

.service-card {
    background: var(--slate-50);
    border: 1px solid var(--border-light);
    padding: clamp(28px, 3vw, 36px) clamp(22px, 3vw, 32px);
    border-radius: 8px;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    position: relative;
    overflow: hidden
}

.service-card:hover {
    border-color: var(--accent-border);
    box-shadow: 0 4px 24px rgba(26, 110, 255, .06);
    transform: translateY(-2px)
}

.svc-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--accent-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--accent-dim)
}

.svc-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.service-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 10px
}

.service-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8
}

.svc-tag {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: .1em;
    text-transform: uppercase
}

/* ── PROCESS ── */
#process {
    background: var(--slate-900)
}

#process .section-eyebrow {
    color: var(--slate-300)
}

#process .section-eyebrow::after {
    background: rgba(255, 255, 255, .15)
}

#process .section-title {
    color: var(--white)
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: clamp(48px, 6vw, 72px);
    position: relative
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--slate-600), var(--slate-600), transparent)
}

.step {
    padding: 0 clamp(12px, 2vw, 24px);
    text-align: center
}

.step-dot {
    width: 54px;
    height: 54px;
    border: 1px solid var(--slate-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--slate-900);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--white);
    position: relative;
    z-index: 1
}

.step h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px
}

.step p {
    font-size: 13px;
    color: var(--slate-400);
    line-height: 1.75
}

/* ── CTA BLOCK ── */
.cta-block {
    position: relative;
    z-index: 1;
    background: var(--accent);
    border-top: none
}

.cta-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(64px, 8vw, 96px) var(--pad-x);
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 50px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white)
}

.cta-inner h2 em {
    font-style: italic;
    opacity: .85
}

.cta-inner .btn-cta {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    background: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    display: inline-block;
    white-space: nowrap
}

.cta-inner .btn-cta:hover {
    opacity: .92;
    transform: translateY(-1px)
}

/* ── LOCATIONS ── */
#locations {
    background: var(--slate-50)
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: clamp(40px, 5vw, 60px)
}

.loc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: clamp(28px, 3vw, 36px) clamp(22px, 3vw, 32px);
    transition: border-color .3s, box-shadow .3s, transform .3s
}

.loc-card:hover {
    border-color: rgba(26, 110, 255, .25);
    box-shadow: 0 4px 20px rgba(26, 110, 255, .05);
    transform: translateY(-2px)
}

.loc-card.hq {
    border-color: var(--accent-border);
    border-top: 3px solid var(--accent)
}

.loc-status {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 20px;
    display: inline-block
}

.s-hq {
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border)
}

.s-office {
    color: var(--text-muted);
    background: var(--slate-50);
    border: 1px solid var(--border)
}

.s-upcoming {
    color: #D97706;
    background: #FFFBEB;
    border: 1px solid #FCD34D
}

.loc-city {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    color: var(--slate-900);
    margin-bottom: 4px;
    line-height: 1
}

.loc-country {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px
}

.loc-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--border-light)
}

.meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px
}

.meta-k {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 10px
}

.meta-v {
    color: var(--text-secondary)
}

/* ── CONTACT ── */
#contact {
    background: var(--white)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
    margin-top: clamp(40px, 5vw, 60px)
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    color: var(--slate-900);
    margin-bottom: 14px
}

.contact-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 32px
}

.cdetail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 13.5px;
    color: var(--text-secondary)
}

.cdetail:last-of-type {
    border-bottom: none
}

.cdetail svg {
    width: 15px;
    height: 15px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0
}

.contact-form,
.email-form {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.fgroup {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.fgroup label {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--text-muted);
    letter-spacing: .1em;
    text-transform: uppercase
}

.fgroup input,
.fgroup select,
.fgroup textarea {
    background: var(--slate-50);
    border: 1.5px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 13px;
    padding: 11px 14px;
    border-radius: 5px;
    outline: none;
    transition: border-color .2s;
    width: 100%
}

.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
    border-color: var(--accent);
    background: var(--white)
}

.fgroup textarea {
    resize: vertical;
    min-height: 110px
}

/* ── SUBSCRIPTION ── */
.sub-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    max-width: 400px;
    width: 100%;
}

.sub-form input {
    flex: 1;
}

.sub-message {
    margin-top: 10px;
    font-size: 12px;
    display: none;
}

.sub-message.success {
    color: var(--success);
    display: block;
}

.sub-message.error {
    color: #EF4444;
    display: block;
}

/* ── DASHBOARD & LOGIN ── */
.internal-page {
    padding-top: 120px;
    padding-bottom: 100px;
    min-height: 100vh;
}

.internal-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
    padding-top: 40px;
    padding-bottom: 40px;
}

.auth-box {
    max-width: 400px;
    margin: 100px auto;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.auth-box h2 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--slate-900);
    text-align: center;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.dash-header h1 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--slate-900);
}

.dash-stats {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}

.dash-section {
    margin-bottom: 40px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 30px;
    background: var(--slate-50);
}

.dash-section h2 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--slate-900);
}

table.slate-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 13px;
}

table.slate-table th {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid var(--border);
    color: var(--slate-600);
    font-weight: 600;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

table.slate-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
}

table.slate-table tr:last-child td {
    border-bottom: none;
}

table.slate-table tr:hover td {
    background: var(--white);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 15, 20, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--slate-400);
    line-height: 1;
}

.modal-close:hover {
    color: var(--slate-900);
}

.modal-body h2 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--slate-900);
}

.modal-subscriber-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 20px;
}

.modal-subscriber-item {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-light);
}

.modal-subscriber-item:last-child {
    border-bottom: none;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}


/* ── FOOTER ── */
footer {
    position: relative;
    z-index: 1;
    background: var(--slate-900);
    padding: clamp(48px, 7vw, 72px) var(--pad-x) clamp(24px, 4vw, 40px)
}

.footer-wrap {
    max-width: var(--max-w);
    margin: 0 auto
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(32px, 4vw, 60px);
    padding-bottom: 40px;
    border-bottom: 1px solid var(--slate-800);
    margin-bottom: 28px
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px
}

.footer-brand span {
    color: var(--accent)
}

.footer-tagline {
    font-size: 13px;
    color: var(--slate-400);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 240px
}

.socials {
    display: flex;
    gap: 10px
}

.social-a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--slate-700);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    text-decoration: none;
    font-size: 11px;
    transition: border-color .2s, color .2s
}

.social-a:hover {
    border-color: var(--slate-400);
    color: var(--white)
}

.footer-col h5 {
    font-size: 10px;
    font-family: var(--font-mono);
    color: var(--slate-500);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 18px
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--slate-400);
    text-decoration: none;
    transition: color .2s
}

.footer-col ul li a:hover {
    color: var(--white)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--slate-600);
    flex-wrap: wrap;
    gap: 10px
}

.footer-bottom a {
    color: var(--slate-600);
    text-decoration: none
}

.footer-bottom a:hover {
    color: var(--slate-400)
}

/* ── LEGAL & CONTENT PAGES ── */
.inner {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.inner h1,
.inner h2,
.inner h3 {
    color: var(--slate-900);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-family: var(--font-display);
    font-weight: 400;
}

.inner p {
    margin-bottom: 1em;
}

.inner ul {
    list-style-type: disc;
    padding-left: 2em;
    margin-bottom: 1.5em;
}

.inner ol {
    list-style-type: decimal;
    padding-left: 2em;
    margin-bottom: 1.5em;
}

.inner li {
    margin-bottom: 0.5em;
    padding-left: 0.5em;
}

.inner a {
    color: var(--accent);
    text-decoration: none;
}

.inner a:hover {
    text-decoration: underline;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

@keyframes scrollAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

/* ════════════ RESPONSIVE ════════════ */
@media(min-width:1440px) {
    :root {
        --max-w: 1320px
    }
}

@media(max-width:1279px) {
    :root {
        --max-w: 960px
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-top {
        grid-template-columns: 1fr 1fr 1fr
    }

    .footer-top>div:first-child {
        grid-column: 1/-1
    }
}

/* ── LEGAL PAGES ── */
.legal-page {
    padding: clamp(100px, 12vw, 140px) var(--pad-x) 80px;
}

.legal-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.legal-inner h1 {
    margin-bottom: 0.2em;
    font-family: var(--font-display);
    color: var(--slate-900);
    font-size: clamp(32px, 5vw, 48px);
}

.legal-date {
    color: var(--text-muted);
    font-size: 0.9em;
    margin-bottom: 3em;
    font-family: var(--font-mono);
}

.legal-inner h2 {
    font-size: 1.25em;
    margin-top: 2em;
    margin-bottom: 0.5em;
    color: var(--slate-800);
}

.legal-inner p,
.legal-inner ul {
    margin-bottom: 1.5em;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-inner ul {
    padding-left: 20px;
}

/* ── DASHBOARD ── */
.dash-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--pad-x);
    height: 64px;
    background: var(--slate-950);
    border-bottom: 1px solid var(--slate-800);
}

.dash-nav-brand .nav-logo {
    color: var(--white);
}

.dash-nav-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-email {
    font-size: 13px;
    color: var(--slate-300);
    font-family: var(--font-mono);
}

.dash-nav .btn-ghost {
    border-color: var(--slate-700);
    color: var(--white);
}

.dash-nav .btn-ghost:hover {
    background: var(--slate-800);
    border-color: var(--slate-600);
}

.dashboard-layout {
    max-width: var(--max-w);
    margin: 40px auto;
    padding: 0 var(--pad-x);
    min-height: 80vh;
}

.dash-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.dash-tab {
    background: none;
    border: none;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.dash-tab:hover {
    color: var(--slate-800);
}

.dash-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.dash-panel {
    display: none;
    animation: fadeUp 0.4s ease both;
}

.dash-panel.active {
    display: block;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.panel-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.panel-actions.right-align {
    margin-left: auto;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    color: var(--slate-900);
    background: var(--slate-50);
}

.btn-icon.text-danger:hover {
    color: #DC2626;
    background: #FEF2F2;
}

.table-container {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow-x: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.data-table th {
    background: var(--slate-50);
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: var(--slate-50);
}

.font-medium {
    font-weight: 500;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    font-family: var(--font-mono);
}

.badge-success {
    background: #ECFDF5;
    color: #059669;
    border: 1px solid #A7F3D0;
}

.badge-error {
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA;
}

.badge-info {
    background: #EFF6FF;
    color: #2563EB;
    border: 1px solid #BFDBFE;
}

.action-cell {
    display: flex;
    gap: 8px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.page-current {
    font-size: 13px;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.msg-content {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-secondary);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 20, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
}

.modal-overlay.open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
    font-size: 18px;
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--slate-900);
}

.modal-body {
    padding: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.modal-footer {
    padding: 16px 24px;
    background: var(--slate-50);
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

@media(max-width:1023px) {
    :root {
        --pad-x: clamp(20px, 4vw, 48px)
    }

    .nav-links,
    #desk-cta {
        display: none
    }

    .hamburger {
        display: flex
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .about-visual {
        position: static
    }

    .services-header {
        grid-template-columns: 1fr
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px
    }

    .process-steps::before {
        display: none
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-item:nth-child(2) {
        border-right: none
    }

    .stat-item:nth-child(3) {
        border-right: 1px solid var(--slate-700)
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid var(--slate-700)
    }

    .hero-shape {
        display: none
    }
}

@media(max-width:767px) {
    :root {
        --pad-x: 20px
    }

    .hero-actions {
        flex-direction: column;
        align-items: center
    }

    .hero-actions a {
        width: 100%;
        max-width: 280px;
        text-align: center
    }

    .scroll-hint {
        display: none
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .locations-grid {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .footer-top>div:first-child {
        grid-column: 1/-1
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:479px) {
    .stats-bar {
        grid-template-columns: 1fr 1fr
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--slate-700)
    }

    .stat-item:nth-child(even) {
        border-right: none
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid var(--slate-700)
    }

    .footer-top {
        grid-template-columns: 1fr
    }
}