* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazirmatn', 'Tahoma', system-ui, sans-serif;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent: #1e40af;
    --bg: #f8fafc;
    --card-bg: #ffffff;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --glow: 0 0 40px rgba(37, 99, 235, 0.3);
    --blue-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

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

/* ===== لودینگ ===== */
.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader-brain {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: breathe 1.5s ease-in-out infinite;
}

.loader-brain i {
    font-size: 2.5rem;
    color: #2563eb;
}

@keyframes breathe {
    0%, 100% {
        box-shadow: 0 0 30px rgba(37, 99, 235, 0.15);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 50px rgba(37, 99, 235, 0.3);
        transform: scale(1.08);
    }
}

.loader-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e40af;
}

.loader-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ===== رنگ‌های هایلایت برای متن تایپ شونده ===== */
.highlight-yar {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.highlight-mod {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* ===== پس‌زمینه ===== */
.bg-orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

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

.orb-1 {
    width: 700px;
    height: 700px;
    background: #3b82f6;
    top: -250px;
    right: -200px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: #2563eb;
    bottom: -250px;
    left: -200px;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(60px, -50px) scale(1.15);
    }
}

/* ===== هدر ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    box-shadow: var(--shadow-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e40af;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.nav-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.btn-glass {
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #1e293b;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.btn-glass:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-glass.primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-glass.primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* ===== بدنه ===== */
main {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 70px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    gap: 3rem;
    align-items: center;
}

/* ===== سمت راست ===== */
.hero-right {
    text-align: right;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #1e40af;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: blink 1.5s infinite;
    display: inline-block;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0 0.4rem;
    color: #1e293b;
}

.hero-title .highlight {
    color: #1e40af;
    white-space: nowrap;
}

.hero-title .typed-wrapper {
    display: inline-block;
    border-left: 3px solid #3b82f6;
    padding-left: 8px;
    animation: cursorBlink 0.8s step-end infinite;
    white-space: nowrap;
}

@keyframes cursorBlink {
    0%, 100% { border-color: #3b82f6; }
    50% { border-color: transparent; }
}

.hero-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.8rem;
    max-width: 480px;
}

/* سرویس‌ها */
.services-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.svc-mini {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.3rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.svc-mini:hover {
    border-color: #93c5fd;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.svc-mini .svc-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}

.svc-calc .svc-icon {
    background: #eff6ff;
    color: #2563eb;
}

.svc-book .svc-icon {
    background: #f0fdf4;
    color: #16a34a;
}

.svc-mini h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.svc-mini ul {
    list-style: none;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 0.9rem;
    padding: 0;
}

.svc-mini ul li::before {
    content: '•';
    color: #22c55e;
    margin-left: 6px;
    font-weight: 700;
}

.svc-link {
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s;
}

.svc-link.blue {
    color: #2563eb;
}

.svc-link.green {
    color: #16a34a;
}

.svc-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* ===== سمت چپ: مغز ===== */
.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.brain-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.1);
    animation: spin 20s linear infinite;
}

.ring-1 {
    width: 360px;
    height: 360px;
    border-color: rgba(37, 99, 235, 0.12);
    animation-duration: 25s;
}

.ring-2 {
    width: 280px;
    height: 280px;
    border-color: rgba(59, 130, 246, 0.15);
    animation-duration: 18s;
    animation-direction: reverse;
}

.ring-3 {
    width: 190px;
    height: 190px;
    border-color: rgba(96, 165, 250, 0.15);
    animation-duration: 14s;
}

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

.brain-core {
    position: relative;
    z-index: 5;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(37, 99, 235, 0.4), 0 10px 30px rgba(37, 99, 235, 0.2);
    animation: breathe 3s ease-in-out infinite;
}

.brain-core i {
    font-size: 3rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.brain-label {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.brain-label .brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e40af;
    line-height: 1.3;
}

.brain-label .tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.float-tag {
    position: absolute;
    background: #fff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #1e40af;
    white-space: nowrap;
    animation: floatTag 5s ease-in-out infinite;
    z-index: 10;
    box-shadow: var(--shadow);
    font-weight: 500;
}

.float-tag i {
    font-size: 1rem;
}

.ft-1 {
    top: 3%;
    left: -30px;
    animation-delay: 0s;
}

.ft-2 {
    bottom: 10%;
    right: -40px;
    animation-delay: -2.5s;
}

.ft-3 {
    top: 30%;
    right: -45px;
    animation-delay: -1s;
}

.ft-4 {
    bottom: 15%;
    left: -30px;
    animation-delay: -0.5s;
}

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

/* ===== مودال ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.8rem;
    max-width: 460px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
}

.close-modal {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.close-modal:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.modal-tabs {
    display: flex;
    gap: 4px;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 1.2rem;
}

.modal-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
    font-family: inherit;
}

.modal-tab.active {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    color: #1e293b;
    font-size: 0.85rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: #fff;
}

.form-submit {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.form-submit:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

.error-text {
    color: #dc2626;
    font-size: 0.7rem;
    margin-top: 4px;
    display: block;
    min-height: 0;
}

.error-input {
    border-color: #dc2626 !important;
}

.signup-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 0.75rem;
}

.signup-form-grid .full-width {
    grid-column: 1 / -1;
}

.switch-tab-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.switch-tab-btn {
    background: none;
    border: none;
    color: #2563eb;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    font-family: inherit;
    padding: 2px 6px;
    border-radius: 4px;
}

.switch-tab-btn:hover {
    background: #eff6ff;
}

/* ===== فوتر ===== */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0.8rem 2rem;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #2563eb;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 1024px) {
    .hero {
        gap: 2rem;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .brain-wrapper {
        width: 320px;
        height: 360px;
    }

    .ring-1 {
        width: 300px;
        height: 300px;
    }

    .ring-2 {
        width: 230px;
        height: 230px;
    }

    .ring-3 {
        width: 155px;
        height: 155px;
    }

    .brain-core {
        width: 115px;
        height: 115px;
    }

    .brain-core i {
        font-size: 2.4rem;
    }

    .brain-label {
        bottom: 5px;
        padding: 6px 16px;
    }

    .brain-label .brand {
        font-size: 1rem;
    }

    .brain-label .tagline {
        font-size: 0.6rem;
    }
}

@media (max-width: 900px) {
    body {
        overflow-y: auto;
        overflow-x: hidden;
    }

    main {
        padding: 100px 0 120px;
        min-height: auto;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }

    .hero-right {
        text-align: center;
        order: 2;
        padding-top: 0.5rem;
    }

    .hero-title {
        justify-content: center;
        font-size: 2rem;
        flex-wrap: wrap;
    }

    .hero-desc {
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }

    .services-row {
        max-width: 500px;
        margin: 0 auto 1.5rem;
    }

    .hero-left {
        order: 1;
        padding: 0;
        margin-bottom: 0;
    }

    .brain-wrapper {
        width: 280px;
        height: 320px;
        margin: 0 auto;
    }

    .ring-1 {
        width: 260px;
        height: 260px;
    }

    .ring-2 {
        width: 200px;
        height: 200px;
    }

    .ring-3 {
        width: 135px;
        height: 135px;
    }

    .brain-core {
        width: 95px;
        height: 95px;
    }

    .brain-core i {
        font-size: 2rem;
    }

    .brain-label {
        bottom: 10px;
        background: rgba(255, 255, 255, 0.95);
        padding: 8px 18px;
    }

    .brain-label .brand {
        font-size: 1.1rem;
    }

    .brain-label .tagline {
        font-size: 0.6rem;
    }

    .float-tag {
        display: none;
    }

    .hero-badge {
        display: inline-flex;
        margin: 0 auto 1rem;
    }

    footer {
        position: relative;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.6rem 1rem;
        height: auto;
        min-height: 60px;
    }

    .logo img {
        height: 30px;
    }

    .logo-main {
        font-size: 1rem;
    }

    .logo-sub {
        font-size: 0.5rem;
    }

    .btn-glass {
        padding: 7px 14px;
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 1.6rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: baseline;
        gap: 0.3rem;
        line-height: 1.5;
    }

    .hero-title .highlight {
        font-size: 1.6rem;
    }

    .hero-title .typed-wrapper {
        font-size: 1.4rem;
    }

    .hero-desc {
        font-size: 0.85rem;
    }

    .services-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hero {
        padding: 0.5rem;
    }

    .brain-wrapper {
        width: 240px;
        height: 280px;
    }

    .ring-1 {
        width: 220px;
        height: 220px;
    }

    .ring-2 {
        width: 165px;
        height: 165px;
    }

    .ring-3 {
        width: 110px;
        height: 110px;
    }

    .brain-core {
        width: 80px;
        height: 80px;
    }

    .brain-core i {
        font-size: 1.7rem;
    }

    .brain-label {
        bottom: 15px;
        padding: 6px 14px;
        border-radius: 12px;
    }

    .brain-label .brand {
        font-size: 1rem;
    }

    .brain-label .tagline {
        font-size: 0.55rem;
    }

    .modal-content {
        padding: 1.2rem;
        margin: 0.5rem;
    }

    .signup-form-grid {
        grid-template-columns: 1fr;
    }

    .signup-form-grid .full-width {
        grid-column: 1;
    }

    footer {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.5rem;
    }

    .logo-text-group {
        display: none;
    }

    .nav-buttons {
        gap: 4px;
    }

    .btn-glass {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 0.8rem;
        white-space: nowrap;
        display: inline-flex;
    }

    .hero-title {
        font-size: 1.3rem;
        gap: 0.2rem;
    }

    .hero-title .highlight {
        font-size: 1.3rem;
    }

    .hero-title .typed-wrapper {
        font-size: 1.1rem;
        padding-left: 4px;
        border-left-width: 2px;
    }

    .brain-wrapper {
        width: 200px;
        height: 240px;
    }

    .ring-1 {
        width: 180px;
        height: 180px;
    }

    .ring-2 {
        width: 135px;
        height: 135px;
    }

    .ring-3 {
        width: 90px;
        height: 90px;
    }

    .brain-core {
        width: 68px;
        height: 68px;
    }

    .brain-core i {
        font-size: 1.4rem;
    }

    .brain-label {
        bottom: 15px;
        padding: 5px 12px;
        border-radius: 10px;
    }

    .brain-label .brand {
        font-size: 0.85rem;
    }

    .brain-label .tagline {
        font-size: 0.5rem;
    }

    main {
        padding: 85px 0 100px;
    }

    .modal-content {
        padding: 1rem;
        border-radius: 14px;
    }

    .modal-title {
        font-size: 1rem;
    }

    .modal-tab {
        font-size: 0.75rem;
        padding: 8px;
    }

    .form-input {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    footer {
        font-size: 0.65rem;
    }
}

@media (max-height: 700px) and (max-width: 900px) {
    main {
        padding: 80px 0 90px;
    }

    .hero {
        gap: 0.5rem;
    }

    .brain-wrapper {
        width: 180px;
        height: 220px;
    }

    .ring-1 {
        width: 160px;
        height: 160px;
    }

    .ring-2 {
        width: 120px;
        height: 120px;
    }

    .ring-3 {
        width: 80px;
        height: 80px;
    }

    .brain-core {
        width: 60px;
        height: 60px;
    }

    .brain-core i {
        font-size: 1.3rem;
    }

    .brain-label {
        bottom: 10px;
        padding: 4px 10px;
    }

    .brain-label .brand {
        font-size: 0.8rem;
    }

    .brain-label .tagline {
        font-size: 0.5rem;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-desc {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .services-row {
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }

    .svc-mini {
        padding: 0.8rem;
    }

    .svc-mini h4 {
        font-size: 0.75rem;
    }

    .svc-mini ul {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .hero-badge {
        margin-bottom: 0.5rem;
    }
}
