/* ===== Rotlasjet 2026 Kurumsal Tasarım ===== */
:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-strong: #f9fbff;
    --text: #0b1220;
    --muted: #5f6b7a;
    --muted-2: #8a94a6;
    --border: #e4e9f2;
    --brand: #e42320;
    --brand-2: #ad1917;
    --accent: #e42320;
    --success: #22c55e;
    --dark: #0f172a;
    --shadow-sm: 0 6px 20px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.12);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.25s ease;
    --max: 1200px;
    --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: radial-gradient(1200px 600px at 85% -100px, rgba(29, 78, 216, 0.08), transparent 60%),
        radial-gradient(900px 500px at -10% 0, rgba(14, 165, 233, 0.08), transparent 55%),
        var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

/* ===== Background Particles ===== */
.particle-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.55;
    pointer-events: none;
}

main,
.header,
.topbar,
.footer,
.page-loader,
.promo-modal,
.quick-access {
    position: relative;
    z-index: 1;
}

/* ===== Page Loader ===== */
.page-loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(600px 280px at 50% 30%, rgba(228, 35, 32, 0.18), transparent 70%),
        var(--dark);
    display: grid;
    place-items: center;
    z-index: 2000;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow: hidden;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader::before,
.page-loader::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(228, 35, 32, 0.35), transparent 70%);
    filter: blur(8px);
    opacity: 0.7;
    animation: loader-glow 6.5s ease-in-out infinite;
}

.page-loader::before {
    top: -120px;
    left: -80px;
}

.page-loader::after {
    bottom: -140px;
    right: -90px;
    animation-delay: 1.2s;
}

.loader-inner {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.loader-logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(228, 35, 32, 0.35));
}

.loader-ring {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 4px solid rgba(228, 35, 32, 0.18);
    border-top-color: #e42320;
    box-shadow: 0 0 18px rgba(228, 35, 32, 0.6);
    animation: spin 1.1s linear infinite, glow 2.4s ease-in-out infinite;
}

.loader-text {
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== Popup ===== */
.promo-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1500;
    padding: 1.5rem;
}

.promo-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.promo-card {
    width: min(520px, 100%);
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transform: translateY(8px) scale(0.98);
    transition: transform 0.3s ease;
}

.promo-modal.is-visible .promo-card {
    transform: translateY(0) scale(1);
}

.promo-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-size: 1.1rem;
}

.promo-logo {
    width: 140px;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

.promo-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.promo-contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    background: var(--surface-strong);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    margin: 1.2rem 0;
}

.promo-contacts span {
    display: block;
    font-size: 0.8rem;
    color: var(--muted-2);
}

.promo-contacts strong {
    font-size: 1rem;
}

.promo-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 12px rgba(228, 35, 32, 0.4);
    }
    50% {
        box-shadow: 0 0 22px rgba(228, 35, 32, 0.8);
    }
}

@keyframes loader-glow {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.55;
    }
    50% {
        transform: translate(40px, -30px) scale(1.05);
        opacity: 0.85;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.muted {
    color: var(--muted);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand);
}

/* ===== Topbar ===== */
.topbar {
    background: var(--dark);
    color: #e2e8f0;
    font-size: 0.9rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.6rem 0;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar-left a {
    color: #fff;
    font-weight: 600;
}

.topbar-pill {
    background: rgba(255, 255, 255, 0.12);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.nav ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav a {
    font-weight: 600;
    color: var(--text);
}

.nav a:hover {
    color: var(--brand);
}

.nav-cta {
    margin-left: 0.5rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid var(--border);
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 22px;
    background: var(--text);
    margin: 5px auto;
    transition: transform var(--transition);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 998;
}

body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.22);
}

.btn-ghost {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
}

.btn-outline {
    border: 1px solid var(--brand);
    color: var(--brand);
    background: transparent;
}

.btn-small {
    padding: 0.55rem 1.1rem;
    font-size: 0.95rem;
}

/* ===== Hero ===== */
.hero-2026 {
    padding: 5rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    margin: 0.7rem 0 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.section-actions {
    margin-top: 2rem;
}

.hero-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.badge {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--muted);
}

.hero-visual {
    position: relative;
    min-height: 360px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.visual-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.visual-title {
    font-weight: 700;
    font-size: 1rem;
}

.chip-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chip {
    background: rgba(29, 78, 216, 0.08);
    color: var(--brand);
    border: 1px solid rgba(29, 78, 216, 0.2);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.chip-light {
    background: rgba(148, 163, 184, 0.16);
    color: var(--muted);
    border-color: rgba(148, 163, 184, 0.28);
}

.chip-success {
    background: rgba(34, 197, 94, 0.14);
    color: #15803d;
    border-color: rgba(34, 197, 94, 0.3);
}

.chip-warning {
    background: rgba(245, 158, 11, 0.18);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.35);
}

.visual-row {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.status-dot {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--success);
    font-weight: 600;
}

.status-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

.visual-route {
    height: 80px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(14, 165, 233, 0.12));
    border: 1px dashed rgba(29, 78, 216, 0.3);
    position: relative;
    margin-bottom: 1.5rem;
}

.route-labels {
    position: absolute;
    inset: auto 1rem 0.6rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--muted-2);
}

.route-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--brand);
    top: 50%;
    transform: translateY(-50%);
    left: 16%;
    box-shadow: 0 0 0 8px rgba(29, 78, 216, 0.12);
}

.route-dot.end {
    left: 76%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.18);
}

.visual-progress {
    margin-bottom: 1.4rem;
}

.progress-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--muted);
}

.progress {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.25);
    overflow: hidden;
}

.progress span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.visual-stats div {
    background: var(--surface-strong);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.9rem;
    text-align: center;
}

.visual-stats strong {
    display: block;
    font-size: 1.1rem;
}

.visual-plate {
    position: absolute;
    right: -30px;
    bottom: -20px;
    background: var(--dark);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.vehicle-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.vehicle-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.vehicle-card strong {
    display: block;
    font-size: 0.95rem;
}

.vehicle-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.15);
}

.vehicle-dot.busy {
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.2);
}

/* ===== Trust Band ===== */
.trust-band {
    padding: 2rem 0 1rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.trust-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
}

/* ===== Sections ===== */
.section {
    padding: 4rem 0;
}

.section.alt {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(29, 78, 216, 0.1);
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.5rem;
}

.feature-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.feature-item {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.feature-item span {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(34, 197, 94, 0.12);
    color: var(--success);
    display: grid;
    place-items: center;
    font-weight: 700;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.4rem;
}

.stat-card strong {
    font-size: 1.6rem;
    display: block;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.step-card {
    border-left: 3px solid var(--brand);
    padding-left: 1rem;
}

.coverage-list {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.coverage-list span {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
}

/* ===== Gallery ===== */
.gallery-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(228, 35, 32, 0.08), rgba(173, 25, 23, 0.12));
    color: var(--muted);
    font-weight: 600;
}

.gallery-image.placeholder {
    border-bottom: 1px solid var(--border);
}

.gallery-info {
    padding: 1rem 1.1rem 1.2rem;
    display: grid;
    gap: 0.2rem;
}

.gallery-note {
    margin-top: 1.2rem;
    font-size: 0.9rem;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 3.5rem 0;
    border-radius: var(--radius-lg);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-modern {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 3rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: var(--shadow-md);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.cta-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 0.6rem 0 1rem;
}

.cta-copy .muted {
    color: rgba(226, 232, 240, 0.85);
}

.cta-points {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.cta-points span {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: #e2e8f0;
}

.cta-actions {
    display: grid;
    gap: 1.5rem;
    justify-items: end;
}

.cta-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.cta-mini {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    text-align: center;
    min-width: 320px;
}

.cta-mini strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
}

.cta-mini .muted {
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.85rem;
}

.cta-orb {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0.25;
    background: radial-gradient(circle, #60a5fa 0%, rgba(15, 23, 42, 0) 70%);
    z-index: 1;
}

.cta-orb-1 {
    top: -80px;
    right: 80px;
}

.cta-orb-2 {
    bottom: -100px;
    left: 60px;
    background: radial-gradient(circle, #38bdf8 0%, rgba(15, 23, 42, 0) 70%);
}

/* ===== Page Hero ===== */
.page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(14, 165, 233, 0.12));
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.page-content {
    padding: 3rem 0 4rem;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.contact-card,
.form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-family: var(--font);
    background: #fff;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.map-card {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(14, 165, 233, 0.12));
    border: 1px dashed rgba(29, 78, 216, 0.3);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    color: var(--muted);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: #e2e8f0;
    padding: 3rem 0 2rem;
    margin-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer h4 {
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer a {
    color: #cbd5f5;
}

.footer-copy {
    margin-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.credit-link {
    position: relative;
    color: #c7d2fe;
    font-weight: 600;
    padding-bottom: 2px;
}

.credit-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.credit-link:hover {
    color: #38bdf8;
}

.credit-link:hover::after {
    transform: scaleX(1);
}

/* ===== Quick Access ===== */
.quick-access {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    z-index: 999;
}

.quick-btn {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.quick-btn:hover {
    transform: translateY(-2px);
}

.quick-btn::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 999px;
    background: conic-gradient(from 0deg, var(--ring-1), var(--ring-2), var(--ring-1));
    opacity: 0.55;
    filter: blur(6px);
    animation: ring-spin 6s linear infinite;
    z-index: -2;
}

.quick-btn::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    animation: ring-pulse 2.8s ease-in-out infinite;
    z-index: -1;
}

.quick-icon {
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.quick-call {
    --ring-1: #2563eb;
    --ring-2: #0ea5e9;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
}

.quick-whatsapp {
    --ring-1: #25d366;
    --ring-2: #1faa59;
    background: linear-gradient(135deg, #25d366, #1faa59);
}

.icon-call {
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M21 16.5v3a2 2 0 0 1-2.2 2A19.8 19.8 0 0 1 3 6.2 2 2 0 0 1 5 4h3a2 2 0 0 1 2 1.7c.1.9.3 1.8.6 2.6a2 2 0 0 1-.5 2.1L9 11a16 16 0 0 0 4 4l.6-1.1a2 2 0 0 1 2.1-.5c.8.3 1.7.5 2.6.6a2 2 0 0 1 1.7 2z'/%3E%3C/svg%3E");
}

.icon-whatsapp {
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 3.5A11 11 0 0 0 3.1 17.9L2 22l4.2-1.1A11 11 0 1 0 20.5 3.5zm-8.5 17a9 9 0 0 1-4.6-1.3l-.3-.2-2.7.7.7-2.6-.2-.3A9 9 0 1 1 12 20.5zm5.1-6.8c-.3-.2-1.7-.8-2-.9s-.5-.2-.7.2-.8.9-1 .9-.4.1-.7-.1a7.3 7.3 0 0 1-2.1-1.3 8 8 0 0 1-1.5-1.9c-.2-.3 0-.5.1-.7l.5-.6c.2-.2.2-.4.3-.6s0-.4 0-.6c-.1-.2-.7-1.6-1-2.2-.3-.6-.6-.5-.7-.5h-.6c-.2 0-.6.1-.9.4s-1.2 1.1-1.2 2.7 1.2 3.1 1.4 3.3 2.3 3.5 5.5 4.9c.8.3 1.4.5 1.9.6.8.2 1.5.2 2.1.1.6-.1 1.7-.7 1.9-1.4.2-.7.2-1.3.2-1.4s-.2-.2-.5-.4z'/%3E%3C/svg%3E");
}

@keyframes ring-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes ring-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .visual-plate {
        right: 0;
    }

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

@media (max-width: 768px) {
    .header-inner {
        padding: 0.85rem 0.4rem;
    }

    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar-left,
    .topbar-right {
        width: 100%;
    }

    .nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(320px, 88%);
        background: #fff;
        padding: 5.2rem 1.5rem 2rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: var(--shadow-md);
        z-index: 1001;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .nav ul {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        width: 100%;
    }

    .nav li {
        width: 100%;
    }

    .nav a {
        width: 100%;
        padding: 0.6rem 0.2rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.4rem;
    }

    .nav-open .nav {
        transform: translateX(0);
    }

    .nav-toggle {
        display: block;
    }
}

@media (max-width: 600px) {
    .logo {
        margin-left: 0.6rem;
    }

    .logo-img {
        height: 48px;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .visual-stats {
        grid-template-columns: 1fr;
    }

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

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        justify-items: start;
    }

    .cta-mini {
        grid-template-columns: 1fr;
        min-width: 100%;
        text-align: left;
    }

    .promo-contacts {
        grid-template-columns: 1fr;
    }
}
