/* ============================================
   AutoMan - Shared Stylesheet
   ============================================ */

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

:root {
    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --blue-dark: #1e40af;
    --purple: #8b5cf6;
    --cyan: #06b6d4;
    --green: #10b981;
    --amber: #f59e0b;
    --bg: #0a0a0f;
    --bg-card: rgba(15, 25, 45, 0.5);
    --border: rgba(59, 130, 246, 0.2);
    --border-hover: rgba(59, 130, 246, 0.5);
    --text: #eef5ff;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    --success: #10b981;
    --font: 'Space Grotesk', sans-serif;
    --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* ============ BACKGROUND ============ */
.circuit-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.grid-pattern {
    position: absolute;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0%   { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 { width: 40vw; height: 40vw; background: var(--blue);   top: -20vh; right: -10vw; animation-delay: 0s; }
.orb-2 { width: 35vw; height: 35vw; background: var(--purple); bottom: -15vh; left: -10vw; animation-delay: -5s; }
.orb-3 { width: 25vw; height: 25vw; background: var(--cyan);   top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: -10s; opacity: 0.15; }

@keyframes floatOrb {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%       { transform: translate(5%,5%) scale(1.1); }
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
    animation: moveLine 8s linear infinite;
}

@keyframes moveLine {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 20, 0.97);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-logo {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, var(--blue-light) 50%, var(--blue) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
    flex-shrink: 0;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 40px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue-light);
    background: rgba(59,130,246,0.1);
    border-color: var(--border);
}

/* CTA button in nav */
.nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
    color: white !important;
    border-color: transparent !important;
    padding: 9px 22px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    box-shadow: 0 0 24px rgba(59,130,246,0.45) !important;
    transform: translateY(-1px) !important;
    background: linear-gradient(135deg, #4f93f8, #2351c9) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.hamburger:hover { background: rgba(59,130,246,0.1); }

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

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

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8, 8, 18, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 12px 16px 20px;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 13px 18px;
    border-radius: 14px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--blue-light);
    background: rgba(59,130,246,0.1);
}

.mobile-menu a.nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white !important;
    text-align: center;
    justify-content: center;
    margin-top: 8px;
    font-weight: 600;
}

/* ============ PAGE WRAPPER ============ */
.page-content {
    position: relative;
    z-index: 10;
    padding-top: var(--nav-h);
}

/* ============ HERO ============ */
.hero {
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

/* ============ SECTION ============ */
.section {
    padding: 80px 20px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59,130,246,0.1);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ============ GLASS CARD ============ */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    padding: 40px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 32px 60px -12px rgba(0,0,0,0.6);
}

/* ============ GRADIENT TEXT ============ */
.gradient-text {
    background: linear-gradient(135deg, var(--blue-light), var(--blue), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 60px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(59,130,246,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--blue-light);
    border: 1.5px solid var(--border-hover);
}

.btn-outline:hover {
    background: rgba(59,130,246,0.1);
    transform: translateY(-2px);
}

/* ============ ICON BOX ============ */
.icon-box {
    width: 56px;
    height: 56px;
    background: rgba(59,130,246,0.1);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--blue-light);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* ============ SOCIAL LINKS ============ */
.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(59,130,246,0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(59,130,246,0.2);
    color: var(--blue-light);
    border-color: var(--blue);
    transform: translateY(-4px);
}

/* ============ FOOTER ============ */
.footer {
    position: relative;
    z-index: 10;
    padding: 60px 20px 30px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    font-size: 1.8rem;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover { color: var(--blue-light); }

.footer-links a i {
    font-size: 0.75rem;
    color: var(--blue);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p { color: var(--text-dim); font-size: 0.85rem; }
.footer-bottom a { color: var(--blue-light); text-decoration: none; }

/* ============ NOTIFICATION ============ */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--success);
    color: white;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(16,185,129,0.3);
    animation: slideInRight 0.4s ease-out;
}

.notification.show { display: flex; }

@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ DIVIDER ============ */
.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    border-radius: 2px;
    margin: 20px auto;
}

/* ============ SERVICE PAGE HERO ============ */
.service-hero {
    padding: 100px 20px 60px;
    text-align: center;
    position: relative;
}

.service-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--blue-light);
    margin: 0 auto 28px;
}

/* ============ PROCESS TIMELINE ============ */
.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 11px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -32px; top: 4px;
    width: 24px; height: 24px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: white;
    font-weight: 700;
    border: 3px solid #0a0a0f;
}

.timeline-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.timeline-item p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============ SPEC GRID ============ */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: rgba(59,130,246,0.05);
    border-radius: 12px;
    border: 1px solid rgba(59,130,246,0.1);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.spec-item i {
    color: #10b981;
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ============ SERVICES OVERVIEW GRID (services.html) ============ */
/* Clickable service overview cards */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svc-card {
    padding: 36px 28px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(139,92,246,0.04));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

.svc-card:hover::before { opacity: 1; }
.svc-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,0.45); }

.svc-card .icon-box { transition: all 0.3s ease; }
.svc-card:hover .icon-box {
    background: rgba(59,130,246,0.2);
    border-color: rgba(59,130,246,0.5);
    transform: scale(1.08);
}

.svc-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.svc-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}

.svc-card .svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.svc-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    color: var(--blue-light);
    letter-spacing: 0.3px;
}

.svc-card .svc-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue-light);
    transition: gap 0.2s ease;
}

.svc-card:hover .svc-cta { gap: 12px; }

/* Category divider label */
.svc-category-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 48px 0 24px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.svc-category-label::before,
.svc-category-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ============ CHATBOT ============ */
#chatbot-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 8px 24px rgba(59,130,246,0.4);
    transition: all 0.3s ease;
}

#chatbot-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(59,130,246,0.5);
}

#chatbot-window {
    position: fixed;
    bottom: 92px;
    right: 24px;
    z-index: 9000;
    width: 340px;
    max-height: 480px;
    background: rgba(10,15,30,0.97);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    transform: scale(0.95) translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
}

#chatbot-window.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.chatbot-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.1));
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: white; flex-shrink: 0;
}

.chatbot-header-info h4 { font-size: 0.9rem; font-weight: 700; }
.chatbot-header-info span { font-size: 0.75rem; color: var(--green); font-weight: 500; }

.chatbot-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.chatbot-close:hover { color: var(--text); }

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.chat-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.55;
    animation: msgIn 0.2s ease-out;
}

@keyframes msgIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.chat-msg.bot {
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.2);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    color: var(--text);
}

.chat-msg.user {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 16px 8px;
}

.quick-reply {
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(59,130,246,0.06);
    color: var(--blue-light);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font);
    font-weight: 500;
}

.quick-reply:hover {
    background: rgba(59,130,246,0.15);
    border-color: var(--border-hover);
}

.chatbot-input-area {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    background: rgba(59,130,246,0.07);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 9px 16px;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s;
}

.chatbot-input:focus { border-color: var(--blue); }
.chatbot-input::placeholder { color: var(--text-dim); }

.chatbot-send {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    transition: all 0.2s;
    flex-shrink: 0;
}

.chatbot-send:hover { transform: scale(1.1); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .services-overview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .section { padding: 56px 16px; }
    .glass-card { padding: 24px 18px; }

    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }

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

    #chatbot-window { width: calc(100vw - 32px); right: 16px; }
}

@media (max-width: 600px) {
    :root { --nav-h: 64px; }
    .navbar { padding: 0 16px; }
    .spec-grid { grid-template-columns: 1fr; }
    #chatbot-btn { bottom: 16px; right: 16px; }
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
    padding: 80px 20px 48px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.15;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}
