/* ======================================================
   DIGITORA STUDIOCUTOUT
   Premium CSS - Final Optimized & Professional Version
====================================================== */

/* Google Fonts - Modern & Clean Pairings */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

/* ===============================
   Root Variables
================================*/
:root {
    --primary: #5B5CEB;
    --primary-dark: #494AE0;
    --accent: #38BDF8;

    --bg: #F8FAFC;
    --white: #ffffff;

    --text: #0F172A;
    --text-light: #475569;

    --border: #E2E8F0;

    --shadow-sm: 0 4px 12px rgba(15, 23, 42, .04);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, .06);
    --shadow-lg: 0 24px 50px rgba(15, 23, 42, .10);

    --radius: 20px;
    --transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===============================
   Reset & Base
================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* ===============================
   Selection & Scrollbar
================================*/
::selection {
    background: var(--primary);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #EEF2F7;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--accent));
    border-radius: 10px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.main-layout {
    width: min(1200px, 92%);
    margin: auto;
}

/* ===============================
   Background Glow Effects
================================*/
body::before {
    content: "";
    position: fixed;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: rgba(91, 92, 235, .06);
    filter: blur(140px);
    border-radius: 50%;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    right: -200px;
    bottom: -200px;
    width: 550px;
    height: 550px;
    background: rgba(56, 189, 248, .06);
    filter: blur(140px);
    border-radius: 50%;
    z-index: -2;
}

/* ===============================
   Typography (Professional Scaling)
================================*/
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    letter-spacing: -1.5px;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 14px;
    letter-spacing: -0.8px;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 10px;
    line-height: 1.6;
}

/* ===============================
   Glass Card & Containers
================================*/
.glass-box {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    padding: 40px 32px;
    transition: var(--transition);
}

.glass-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section {
    padding: 70px 0;
}

/* ======================================================
   NAVBAR & BRANDING (Professional Redesign)
======================================================*/
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Professional Logo Icon */
.brand-icon {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 8px 20px rgba(91, 92, 235, 0.2);
    color: white;
}

.brand-icon svg {
    width: 22px;
    height: 22px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text);
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(91, 92, 235, 0.25);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(91, 92, 235, 0.35);
}

/* ======================================================
   HERO SECTION
======================================================*/
.hero {
    text-align: center;
    padding: 70px 0 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(91, 92, 235, 0.06);
    border: 1px solid rgba(91, 92, 235, 0.12);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(91, 92, 235, 0.4); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(91, 92, 235, 0); }
    100% { transform: scale(0.9); }
}

.hero h1 {
    max-width: 850px;
    margin: auto auto 20px;
}

.hero p {
    max-width: 680px;
    margin: auto auto 30px;
    font-size: 1.05rem;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 10px 25px rgba(91, 92, 235, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(91, 92, 235, 0.35);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ======================================================
   EDITOR, DROPZONE & LOADER
======================================================*/
.editor-workspace {
    margin: 50px auto;
}

.dropzone {
    position: relative;
    background: #fff;
    border: 2px dashed #CBD5E1;
    border-radius: 26px;
    padding: 60px 30px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.dropzone:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dropzone.dragover {
    border-color: var(--accent);
    background: #F8FAFC;
}

.upload-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: auto auto 22px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 12px 25px rgba(91, 92, 235, 0.25);
    transition: var(--transition);
}

.dropzone:hover .upload-icon-wrapper {
    transform: scale(1.06);
}

.upload-icon-wrapper svg {
    width: 36px;
    height: 36px;
}

.dropzone h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.file-limits {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Loader Styles */
.loader-box {
    padding: 60px 30px;
    text-align: center;
}

.spinner-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.spinner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid rgba(91, 92, 235, 0.12);
    border-top-color: var(--primary);
    animation: spin 0.9s linear infinite;
}

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

.progress-bar-container {
    width: 100%;
    max-width: 380px;
    height: 8px;
    background: #E2E8F0;
    border-radius: 50px;
    margin: auto;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width .3s ease;
}

/* ======================================================
   RESULT BOX & COMPARISON SLIDER
======================================================*/
.result-box {
    padding: 24px;
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    user-select: none;
    touch-action: none;
}

.transparent-pattern {
    background-image: 
        linear-gradient(45deg, #f1f5f9 25%, transparent 25%), 
        linear-gradient(-45deg, #f1f5f9 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #f1f5f9 75%), 
        linear-gradient(-45deg, transparent 75%, #f1f5f9 75%);
    background-size: 24px 24px;
    background-position: 0 0, 0 12px, 12px -12px, -12px 0;
}

.img-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.layer-before {
    width: 50%;
    border-right: 2px solid var(--primary);
    z-index: 3;
}

.layer-after {
    z-index: 1;
}

.img-layer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.slider-handle {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.handle-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--primary);
}

.handle-button {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(91, 92, 235, 0.3);
}

.layer-before::before, .layer-after::before {
    content: "Before";
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(15, 23, 42, 0.8);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    z-index: 50;
}

.layer-after::before {
    content: "After";
    left: auto;
    right: 16px;
    background: var(--primary);
}

.action-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 25px;
    flex-wrap: wrap;
}

#btnDownload { min-width: 200px; }
#btnReset { min-width: 160px; }

/* ======================================================
   FEATURES, FOUNDER & FOOTER
======================================================*/
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 35px 25px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(91, 92, 235, 0.2);
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(91, 92, 235, 0.2);
}

.feature-icon-wrap svg {
    width: 28px;
    height: 28px;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 40px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.founder-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: 800;
    color: white;
    box-shadow: 0 15px 30px rgba(91, 92, 235, 0.25);
    flex-shrink: 0;
}

.founder-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(91, 92, 235, 0.08);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.founder-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    padding: 10px 18px;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.footer {
    margin-top: 80px;
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid var(--border);
}

.footer-container {
    width: min(1200px, 92%);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

/* ======================================================
   TABLES, FAQ & MODALS
======================================================*/
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

th {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 16px;
    font-weight: 700;
    font-size: 0.9rem;
}

td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

tr:hover {
    background: #F8FAFC;
}

#faq h3 {
    margin-top: 25px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

#faq h3:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: transparent;
}

#faq p {
    padding: 10px 10px 15px;
    margin-bottom: 15px;
}

.modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    padding: 20px;
    z-index: 9999;
}

.modal-content {
    background: #fff;
    width: min(700px, 100%);
    max-height: 85vh;
    overflow: auto;
    border-radius: 24px;
    padding: 35px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}

.close-btn:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.hidden {
    display: none !important;
}

/* ======================================================
   RESPONSIVE DESIGN (Mobile Fixes)
======================================================*/
@media(max-width: 900px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .founder-socials {
        justify-content: center;
    }
}

@media(max-width: 768px) {
    .navbar {
        padding: 14px 4%;
    }
    .nav-links {
        display: none; /* Mobile menu handler logic can be added */
    }
    .hero {
        padding: 40px 0 30px;
    }
    .glass-box {
        padding: 24px 18px;
    }
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .comparison-slider {
        height: 340px;
    }
    .action-bar {
        flex-direction: column;
    }
    #btnDownload, #btnReset {
        width: 100%;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}
@media(max-width: 768px) {
    .navbar {
        padding: 14px 4%;
    }
    .nav-links {
        display: none; /* Mobile menu handler logic can be added */
    }
    .hero {
        padding: 40px 0 30px;
    }
    .glass-box {
        padding: 24px 18px;
    }
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .comparison-slider {
        height: 340px;
    }
    .action-bar {
        flex-direction: column;
    }
    #btnDownload, #btnReset {
        width: 100%;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}
/* ==========================================
   WORKFLOW STEPS ANIMATION SECTION
========================================== */
.workflow-section {
    background: #0F172A;
    border-radius: 32px;
    padding: 60px 40px;
    margin: 60px auto;
    color: #fff;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.workflow-section .section-header h2 {
    color: #fff;
}

.workflow-section .section-header p {
    color: #94A3B8;
}

.workflow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.workflow-step {
    text-align: center;
    flex: 1;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.step-icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    background: rgba(91, 92, 235, 0.15);
    border: 1px solid rgba(91, 92, 235, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 0 30px rgba(91, 92, 235, 0.2);
    transition: var(--transition);
}

.workflow-step:hover .step-icon-box {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 0 40px rgba(91, 92, 235, 0.5);
}

.step-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.workflow-step h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.workflow-step p {
    color: #94A3B8;
    font-size: 0.9rem;
    margin: 0;
}

.workflow-connector {
    flex: 0.5;
    height: 2px;
    background-image: linear-gradient(to right, rgba(91, 92, 235, 0.5) 50%, transparent 50%);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.4); opacity: 1; }
}

/* Responsive Design for Mobile */
@media(max-width: 768px) {
    .workflow-container {
        flex-direction: column;
        gap: 30px;
    }
    .workflow-connector {
        width: 2px;
        height: 40px;
        background-image: linear-gradient(to bottom, rgba(91, 92, 235, 0.5) 50%, transparent 50%);
        background-size: 2px 10px;
    }
    .workflow-section {
        padding: 40px 20px;
    }
}
/* Premium Logo Styling */
.logo-container, .navbar .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(91, 92, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.logo-text h1, .logo-title {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0F172A 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 3px;
    display: block;
}
/* Luxury Upload Dropzone */
.upload-dropzone, .editor-workspace {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 2px dashed rgba(91, 92, 235, 0.25);
    border-radius: 28px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.upload-dropzone:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(91, 92, 235, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.upload-dropzone h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0F172A;
    margin: 16px 0 8px 0;
}

.upload-dropzone p {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 450px;
    margin: 0 auto 24px auto;
    line-height: 1.5;
}
/* Luxury Hero Description Typography */
.hero h1 {
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    max-width: 680px;
    margin: 0 auto 35px auto;
    font-weight: 400;
    letter-spacing: -0.1px;
}

.hero-description strong {
    color: #0F172A;
    font-weight: 600;
}
