:root {
    --bg-main: #0D1B3D;
    --bg-deep: #07142F;
    --bg-panel: rgba(255, 255, 255, 0.06);
    --border-panel: rgba(255, 255, 255, 0.10);
    --primary: #2563EB;
    --secondary: #00B3B3;
    --premium: #7C3AED;
    --whatsapp: #25D366;
    --text-main: #f7f9ff;
    --text-soft: rgba(235, 241, 255, 0.78);
    --text-muted: rgba(212, 223, 247, 0.56);
    --shadow-lg: 0 28px 80px rgba(2, 10, 30, 0.45);
    --shadow-md: 0 18px 50px rgba(3, 10, 28, 0.35);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body.website-body {
    margin: 0;
    color: var(--text-main);
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 30%),
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.2), transparent 28%),
        linear-gradient(180deg, #0d1b3d 0%, #08132d 48%, #07142f 100%);
    min-height: 100vh;
}

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

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

.container {
    width: min(var(--container), calc(100% - 2rem));
}

.website-main {
    overflow: hidden;
}

.website-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0 0.35rem;
    transition: background-color 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.website-navbar.is-scrolled {
    background: linear-gradient(180deg, rgba(8, 18, 44, 0.92), rgba(8, 18, 44, 0.58));
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.website-navbar__inner,
.website-mobile-menu {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.website-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 0.95rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid rgba(138, 168, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(20, 34, 77, 0.92), rgba(16, 28, 64, 0.84));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 22px 50px rgba(5, 10, 29, 0.28);
    backdrop-filter: blur(18px);
}

.website-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.website-brand__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.72rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 10px 26px rgba(4, 10, 28, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.website-brand__logo {
    height: 2.85rem;
    width: auto;
    display: block;
    object-fit: contain;
}

.website-brand__mark {
    width: 2.8rem;
    height: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--premium));
    font-family: "Sora", sans-serif;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.website-nav,
.website-navbar__actions {
    align-items: center;
    gap: 0.55rem;
}

.website-nav a,
.website-mobile-menu a {
    color: rgba(235, 241, 255, 0.86);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.website-nav a:hover,
.website-nav a.is-active,
.website-mobile-menu a:hover {
    color: #fff;
}

.website-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    font-weight: 600;
}

.website-nav a:hover {
    background: rgba(255, 255, 255, 0.04);
}

.website-nav a.is-active {
    background: rgba(37, 99, 235, 0.12);
}

.website-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.28rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary), #67a8ff);
}

.icon-action {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.92);
}

.icon-action:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(104, 159, 255, 0.32);
}

.language-select {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.15rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.92);
}

.language-select select {
    border: 0;
    background: transparent;
    color: var(--text-main);
    outline: 0;
    font-weight: 700;
}

.website-menu-toggle {
    width: 3.15rem;
    height: 3.15rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.2rem;
}

.website-mobile-menu {
    display: none;
    margin-top: 0.75rem;
    padding: 1rem;
    border-radius: 1.25rem;
    background: rgba(7, 20, 47, 0.9);
    border: 1px solid var(--border-panel);
    backdrop-filter: blur(18px);
}

.website-mobile-menu a {
    padding: 0.4rem 0;
    font-weight: 600;
}

.website-mobile-menu.is-open {
    display: grid;
    gap: 0.85rem;
}

.website-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0.92rem 1.35rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.website-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--premium));
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.28);
}

.website-btn--secondary {
    color: #fff;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(0, 179, 179, 0.18));
    border-color: rgba(121, 164, 255, 0.35);
}

.website-btn--ghost,
.website-btn--outline {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-panel);
    color: #fff;
}

.hero-section,
.page-hero {
    position: relative;
    padding: 4rem 0 3rem;
}

.hero-section {
    min-height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.cta-banner h2 {
    font-family: "Sora", sans-serif;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-copy h1 {
    font-size: clamp(2.9rem, 7vw, 5rem);
    margin: 1rem 0 1.2rem;
}

.hero-copy__lead,
.page-hero p,
.section-heading p {
    color: var(--text-soft);
    font-size: 1.05rem;
    max-width: 44rem;
}

.hero-copy__actions,
.success-panel__actions,
.cta-banner__actions,
.product-card__actions,
.product-detail-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(0, 179, 179, 0.26));
    border: 1px solid rgba(133, 178, 255, 0.22);
}

.trust-strip {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-panel);
}

.avatar-stack {
    display: flex;
    margin-right: 0.25rem;
}

.avatar-stack span,
.testimonial-card__avatar {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid rgba(7, 20, 47, 0.9);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.avatar-stack span + span {
    margin-left: -0.75rem;
}

.glass-panel,
.dashboard-card,
.floating-metric,
.search-shell,
.client-mini-card,
.cta-banner,
.website-form,
.success-panel {
    border: 1px solid var(--border-panel);
    background: var(--bg-panel);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.dashboard-showcase {
    position: relative;
    min-height: 38rem;
}

.dashboard-card {
    border-radius: var(--radius-lg);
    padding: 1.7rem;
}

.dashboard-card__header,
.chart-card__head,
.organization-card,
.product-detail-card__top,
.website-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.status-chip,
.product-card__tag,
.mini-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #d8e6ff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-grid,
.visual-grid,
.service-grid,
.process-grid,
.stats-grid,
.booking-summary {
    display: grid;
    gap: 1rem;
}

.metric-grid {
    margin-top: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-grid article,
.chart-card,
.donut-card,
.mobile-preview,
.floating-metric,
.stats-grid article,
.service-grid article,
.process-grid article,
.info-card,
.product-card,
.product-detail-card,
.client-card,
.testimonial-card,
.organization-card,
.client-mini-card {
    border-radius: var(--radius-md);
}

.metric-grid article,
.chart-card,
.donut-card,
.mobile-preview {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-grid strong,
.stats-grid strong {
    font-family: "Sora", sans-serif;
    font-size: 1.75rem;
}

.metric-grid small,
.section-heading p,
.testimonial-card span,
.website-footer,
.footer-links,
.client-mini-card small,
.trust-strip small {
    color: var(--text-soft);
}

.visual-grid {
    margin-top: 1rem;
    grid-template-columns: 1.45fr 0.95fr;
}

.mobile-preview {
    grid-column: 1 / -1;
}

.line-chart {
    position: relative;
    height: 9rem;
    margin-top: 1rem;
    display: flex;
    align-items: end;
    gap: 0.5rem;
}

.line-chart span {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, rgba(0, 179, 179, 0.75), rgba(124, 58, 237, 0.35));
}

.line-chart span:nth-child(1) { height: 24%; }
.line-chart span:nth-child(2) { height: 42%; }
.line-chart span:nth-child(3) { height: 55%; }
.line-chart span:nth-child(4) { height: 76%; }
.line-chart span:nth-child(5) { height: 92%; }

.line-chart svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.line-chart path {
    fill: none;
    stroke: #80b7ff;
    stroke-width: 2.5;
}

.donut-card {
    display: grid;
    place-items: center;
    text-align: center;
}

.donut-ring {
    width: 8.8rem;
    aspect-ratio: 1;
    border-radius: 50%;
    margin: 1rem 0;
    background:
        radial-gradient(circle at center, rgba(7, 20, 47, 1) 35%, transparent 36%),
        conic-gradient(var(--primary) 0 38%, var(--secondary) 38% 64%, var(--premium) 64% 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mobile-preview__screen {
    min-height: 14rem;
    border-radius: 1.8rem;
    padding: 1.2rem;
    background: linear-gradient(180deg, rgba(9, 17, 38, 0.95), rgba(13, 27, 61, 0.95));
    border: 1px solid rgba(130, 163, 255, 0.18);
}

.mini-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 6rem;
    margin-top: 1.4rem;
}

.mini-bars span {
    flex: 1;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.95), rgba(0, 179, 179, 0.55));
}

.mini-bars span:nth-child(1) { height: 35%; }
.mini-bars span:nth-child(2) { height: 62%; }
.mini-bars span:nth-child(3) { height: 48%; }
.mini-bars span:nth-child(4) { height: 88%; }

.floating-metric {
    position: absolute;
    padding: 1rem 1.1rem;
}

.floating-metric--users { top: 8%; right: -2%; }
.floating-metric--uptime { bottom: 26%; left: -6%; }
.floating-metric--secure { right: 6%; bottom: 2%; }

.stats-section,
.content-section,
.cta-banner-section {
    padding: 2.5rem 0 5rem;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid article,
.service-grid article,
.process-grid article {
    padding: 1.5rem;
    text-align: center;
}

.content-section--muted {
    background: linear-gradient(180deg, rgba(5, 12, 30, 0.08), rgba(255, 255, 255, 0.02));
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading h2,
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 1rem 0;
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid i,
.client-card__logo,
.product-logo-fallback {
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(124, 58, 237, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card,
.product-detail-card,
.client-card,
.testimonial-card,
.success-panel,
.website-form,
.organization-card {
    padding: 1.6rem;
}

.product-card,
.client-card {
    height: 100%;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover,
.client-card:hover,
.organization-card:hover,
.client-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(121, 164, 255, 0.45);
}

.product-card:hover {
    box-shadow: 0 22px 56px rgba(37, 99, 235, 0.24);
}

.product-card__logo {
    width: 4.25rem;
    height: 4.25rem;
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__logo--large {
    width: 5.4rem;
    height: 5.4rem;
    flex-shrink: 0;
}

.product-logo-fallback {
    position: absolute;
    inset: 0;
    margin: auto;
    display: none;
}

.product-card__actions,
.organization-card__meta {
    margin-top: auto;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.7rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--text-soft);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.feature-list.compact {
    gap: 0.45rem;
}

.search-shell {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border-radius: 999px;
}

.search-shell input,
.website-form input,
.website-form textarea,
.website-form select {
    width: 100%;
    border: 0;
    outline: 0;
    color: #fff;
    font: inherit;
    background: transparent;
}

.toolbar-shell {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-pill {
    border: 1px solid var(--border-panel);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-radius: 999px;
    padding: 0.8rem 1.05rem;
    font-weight: 700;
}

.filter-pill.is-active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.88), rgba(124, 58, 237, 0.72));
}

.product-detail-card {
    display: grid;
    gap: 1rem;
    height: 100%;
    transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.product-detail-card.is-highlighted {
    border-color: rgba(102, 164, 255, 0.65);
    box-shadow: 0 0 0 1px rgba(126, 168, 255, 0.22), 0 24px 60px rgba(37, 99, 235, 0.26);
    transform: translateY(-4px);
}

.client-card__logo {
    margin-bottom: 1rem;
}

.organization-card {
    display: grid;
    gap: 1rem;
    height: 100%;
}

.organization-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.client-preview-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.client-mini-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.client-mini-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
}

.testimonial-card {
    display: grid;
    gap: 0.75rem;
    height: 100%;
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid strong {
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    color: #9fc3ff;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at left top, rgba(37, 99, 235, 0.4), transparent 45%),
        linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(124, 58, 237, 0.8));
}

.website-footer {
    padding: 4rem 0 7rem;
    background: rgba(2, 8, 22, 0.35);
}

.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.website-brand__logo--footer {
    height: 2.65rem;
    margin-top: 0.1rem;
}

.footer-brand__content {
    max-width: 22rem;
}

.footer-brand h3,
.website-footer h4 {
    font-family: "Sora", sans-serif;
}

.footer-links {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-socials a {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--border-panel);
}

.website-footer__bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

.website-form {
    border-radius: 2rem;
}

.website-form label {
    display: block;
    margin-bottom: 0.55rem;
    font-weight: 700;
}

.website-form input,
.website-form textarea,
.website-form select {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.website-form textarea {
    resize: vertical;
    min-height: 9rem;
}

.website-form__actions {
    margin-top: 1.5rem;
}

.form-feedback {
    display: block;
    min-height: 1.2rem;
    margin-top: 0.45rem;
    color: #fda4af;
    font-size: 0.88rem;
}

.field-invalid {
    border-color: rgba(248, 113, 113, 0.8) !important;
}

.success-panel {
    max-width: 62rem;
    margin: 0 auto;
    text-align: center;
    border-radius: 2rem;
}

.booking-summary {
    margin: 1.5rem 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-summary > div {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
}

.booking-summary span {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
}

.floating-whatsapp,
.floating-demo {
    position: fixed;
    right: 1.25rem;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.floating-whatsapp {
    bottom: 6.5rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    font-size: 1.5rem;
    background: var(--whatsapp);
    color: #fff;
}

.floating-demo {
    bottom: 2rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--premium));
    color: #fff;
    font-weight: 800;
}

.mobile-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 0.85rem;
    transform: translateX(-50%);
    width: min(96%, 30rem);
    display: flex;
    justify-content: space-between;
    gap: 0.3rem;
    padding: 0.55rem;
    border-radius: 1.3rem;
    background: rgba(7, 20, 47, 0.92);
    border: 1px solid var(--border-panel);
    backdrop-filter: blur(20px);
    z-index: 1050;
}

.mobile-bottom-nav a {
    flex: 1;
    display: grid;
    justify-items: center;
    gap: 0.2rem;
    padding: 0.5rem 0.25rem;
    color: var(--text-soft);
    font-size: 0.76rem;
}

.mobile-bottom-nav a.is-active {
    color: #fff;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-hidden="true"] {
    display: none !important;
}

@media (max-width: 1199px) {
    .service-grid,
    .process-grid,
    .client-preview-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-top: 2rem;
    }

    .website-navbar__inner {
        border-radius: 1.5rem;
        padding: 0.85rem 1rem;
    }

    .dashboard-showcase {
        min-height: auto;
        padding-bottom: 10rem;
    }

    .floating-metric--users { top: auto; bottom: 7.6rem; right: 1rem; }
    .floating-metric--uptime { left: 1rem; bottom: 4rem; }
    .floating-metric--secure { right: 1rem; bottom: 0; }

    .visual-grid,
    .booking-summary {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767px) {
    .container {
        width: min(var(--container), calc(100% - 1.25rem));
    }

    .website-navbar {
        padding-top: 0.75rem;
        padding-bottom: 0.25rem;
    }

    .website-brand__logo {
        height: 2.2rem;
    }

    .hero-copy h1,
    .page-hero h1,
    .section-heading h2,
    .cta-banner h2 {
        font-size: 2.25rem;
    }

    .stats-grid,
    .service-grid,
    .process-grid,
    .client-preview-row,
    .booking-summary {
        grid-template-columns: 1fr;
    }

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

    .hero-copy__actions,
    .success-panel__actions,
    .cta-banner__actions,
    .product-card__actions,
    .product-detail-card__actions {
        flex-direction: column;
    }

    .organization-card__meta {
        flex-direction: column;
        align-items: stretch;
    }

    .floating-whatsapp {
        bottom: 7rem;
    }

    .floating-demo {
        bottom: 11.4rem;
        right: 1rem;
    }

    .website-footer {
        padding-bottom: 9rem;
    }

    .website-footer__bottom {
        flex-direction: column;
    }
}
