
/* ============================================================
   Volta Aqui — Modern Dark Theme (2026 Redesign)
   ============================================================ */

/* --- Theme Variables --- */
:root {
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #2563eb;
    --accent: #8b5cf6;
    --accent-light: #a78bfa;
    --bg-deep: #030712;
    --bg-surface: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-hover: rgba(255, 255, 255, 0.07);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(148, 163, 184, 0.12);
    --border-hover: rgba(148, 163, 184, 0.22);
    --glow-blue: rgba(59, 130, 246, 0.35);
    --glow-purple: rgba(139, 92, 246, 0.25);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Manrope', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ambient background */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.15), transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.08), transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(59, 130, 246, 0.06), transparent 60%);
    pointer-events: none;
}

::selection {
    background: rgba(59, 130, 246, 0.3);
    color: #fff;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* --- Bootstrap Overrides --- */
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--text-secondary) !important;
}

.btn {
    font-weight: 700;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    transition: all 0.25s var(--ease);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 4px 24px var(--glow-blue), 0 0 0 1px rgba(59, 130, 246, 0.2);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    box-shadow: 0 8px 32px var(--glow-blue), 0 0 0 1px rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    color: var(--text-primary);
    backdrop-filter: blur(12px);
}
.btn-secondary:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-hover);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.bg-dark-subtle {
    background: transparent !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}
.navbar-toggler {
    border-color: var(--border);
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

/* --- Navbar --- */
.navbar {
    transition: all 0.35s var(--ease);
    border-bottom: 1px solid transparent;
    padding: 1rem 0;
}
.navbar-scrolled {
    background: rgba(3, 7, 18, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom-color: var(--border);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.3);
    padding: 0.6rem 0;
}
.navbar-brand {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}
.navbar-brand span {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar-brand:hover {
    color: #fff;
}

.nav-link {
    position: relative;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.5rem 0.9rem !important;
    transition: color 0.25s var(--ease);
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.2rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s var(--ease);
}
.nav-link:hover {
    color: #fff;
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

.nav-top-cta {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}
.nav-top-btn {
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    transition: all 0.2s var(--ease);
}
.nav-top-btn.is-current {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3), 0 4px 16px var(--glow-blue);
}
.nav-top-btn:not(.is-current) {
    opacity: 0.85;
}
.nav-top-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
}
.nav-top-btn:active {
    transform: translateY(1px) scale(0.98);
}

.navbar-collapse {
    background: transparent;
}

/* --- Hero Section --- */
.hero-section {
    padding: 160px 0 120px 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 60%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}
.hero-section h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-entry-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.entry-btn {
    font-weight: 800;
    padding: 0.9rem 1.5rem;
    min-width: 190px;
}

/* Marquee */
.hero-business-marquee {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}
.hero-business-marquee--full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 0.6rem 0;
}
.hero-business-marquee::before,
.hero-business-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.hero-business-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-deep), transparent);
}
.hero-business-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-deep), transparent);
}
.hero-business-track {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    width: max-content;
    padding-left: 0.65rem;
    animation: hero-marquee 34s linear infinite;
}
.hero-business-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: var(--bg-glass);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.45rem 0.85rem;
    transition: border-color 0.2s ease;
}

/* App Mockup */
.app-mockup {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.4));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 16px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.4),
        0 0 80px var(--glow-blue);
    backdrop-filter: blur(20px);
}
.app-mockup img {
    border-radius: var(--radius-md);
    width: 100%;
    display: block;
}
.app-mockup::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), transparent 50%, rgba(139, 92, 246, 0.2));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

/* --- Section Divider --- */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    border: none;
    margin: 0;
}

/* --- Stat Counter Section --- */
.stats-section {
    padding: 80px 0;
    position: relative;
}
.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}
.stat-number {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}
.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Cards (Glass) --- */
.card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    transform: translateZ(0);
    transition: all 0.35s var(--ease);
    height: 100%;
    overflow: hidden;
    position: relative;
}
.card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-md);
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), transparent 50%, rgba(139, 92, 246, 0.1));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}
.card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 30px var(--glow-blue);
}
.card:hover::before {
    opacity: 1;
}

.card-body {
    padding: 2rem 1.5rem;
}
.card-body i {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.card-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}
.card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Step Number Badge --- */
.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px var(--glow-blue);
}

/* --- Section Titles --- */
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* --- Sections Spacing --- */
#como-funciona, #negocios, #como-funciona-cliente, #beneficios-cliente {
    padding: 100px 0;
}
#casos-de-sucesso, #beneficios-dia-a-dia, #telas-reais-cliente {
    padding: 100px 0;
}

/* --- Case Studies --- */
#casos-de-sucesso .nav-pills .nav-link {
    background: var(--bg-glass);
    color: var(--text-secondary);
    margin: 0 4px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.6rem 1.1rem;
    backdrop-filter: blur(8px);
    transition: all 0.25s var(--ease);
}
#casos-de-sucesso .nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px var(--glow-blue);
}
#casos-de-sucesso .tab-content {
    margin-top: 2rem;
    background: var(--bg-glass);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}
#cases-tab-content .tab-pane {
    transition: opacity 0.36s var(--ease), transform 0.36s var(--ease);
}
#cases-tab-content .tab-pane.fade {
    transform: translateY(10px);
}
#cases-tab-content .tab-pane.fade.show {
    transform: translateY(0);
}

.case-story h5 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.case-story p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.case-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.case-shot {
    margin: 0;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    border: 1px solid var(--border);
    padding: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateZ(0);
    transition: all 0.32s var(--ease);
}
.case-shot:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 20px var(--glow-blue);
}

.case-expand-btn {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    text-align: left;
    cursor: zoom-in;
    position: relative;
}
.case-shot img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.4));
    border-radius: var(--radius-sm);
    transition: transform 0.25s ease;
}
.case-expand-btn:hover img {
    transform: scale(1.02);
}
.case-expand-hint {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.case-shot:hover .case-expand-hint {
    opacity: 1;
}
.case-shot figcaption {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.7rem;
    text-align: left;
}

.case-placeholder {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border);
    background: var(--bg-glass);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: var(--text-muted);
    text-align: center;
    padding: 1rem;
}
.case-placeholder i {
    font-size: 1.3rem;
    color: var(--primary);
}

/* --- Modal --- */
.case-modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.case-modal-content .modal-header {
    border-bottom: 1px solid var(--border);
}
.case-modal-content .modal-title {
    color: var(--text-primary);
    font-weight: 700;
}
.case-modal-image {
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border);
}
.case-modal-caption {
    margin-top: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.case-modal-content .btn-close.btn-close-white {
    filter: invert(1);
    opacity: 0.6;
}
.case-modal-content .btn-close.btn-close-white:hover {
    opacity: 1;
}

/* --- Feature List (negocios) --- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
}
.feature-list li i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 1.2rem;
}
.feature-icon-check {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Lead Contact Section --- */
.lead-contact-section {
    padding: 100px 0;
    position: relative;
}
.lead-contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 60%);
    pointer-events: none;
}
.lead-contact-list {
    display: grid;
    gap: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.lead-form-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    backdrop-filter: blur(16px);
    position: relative;
    transform: translateZ(0);
    transition: all 0.35s var(--ease);
}
.lead-form-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), transparent 50%, rgba(139, 92, 246, 0.15));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}
.lead-form-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px var(--glow-blue);
}

.lead-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lead-form-card .form-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lead-input {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.lead-input::placeholder {
    color: var(--text-muted);
}
.lead-input:focus {
    color: var(--text-primary);
    background-color: rgba(15, 23, 42, 0.8);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15), 0 0 20px var(--glow-blue);
    outline: none;
}

.lead-form-status {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}
.lead-form-status.is-error {
    color: #f87171;
}
.lead-form-status.is-success {
    color: #4ade80;
}

/* --- Footer --- */
footer {
    background: var(--bg-surface);
    padding: 60px 0 40px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
}
footer a {
    color: var(--text-secondary);
}
footer a:hover {
    color: #fff;
}
.footer-main {
    border-top: 1px solid var(--border);
}
.footer-title {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1rem;
}
.footer-links-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}
.footer-links-list a {
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-divider {
    border-color: var(--border);
    margin: 1.5rem 0 1rem;
}
.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.98);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    .hero-business-track {
        animation: none;
    }
}

@keyframes hero-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.3333%);
    }
}

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

.float-anim {
    animation: float 6s ease-in-out infinite;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .navbar-brand {
        font-size: 1.6rem;
    }
    .navbar-collapse {
        background: rgba(3, 7, 18, 0.95);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-md);
        padding: 1rem;
        margin-top: 0.5rem;
        border: 1px solid var(--border);
    }
    .nav-top-cta {
        margin-top: 0.9rem;
        width: 100%;
        justify-content: stretch;
    }
    .nav-top-btn {
        flex: 1 1 0;
        text-align: center;
    }
    .hero-section {
        padding: 130px 0 80px 0;
    }
    .hero-entry-actions {
        justify-content: center;
    }
    .entry-btn {
        width: 100%;
        max-width: 320px;
    }
    .case-gallery {
        grid-template-columns: 1fr;
    }
    .case-shot img {
        height: 260px;
    }
    .case-placeholder {
        height: 260px;
    }
    .stat-item {
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .lead-form-card {
        padding: 1.2rem;
    }
}
