:root {
    --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ink: #0b1220;
    --ink-soft: #24334d;
    --muted: #607089;
    --muted-strong: #42526b;
    --white: #ffffff;
    --surface: #f6f9ff;
    --surface-soft: #eef6ff;
    --surface-violet: #f5f3ff;
    --line: #dbe6f5;
    --line-strong: #c8d8ef;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --cyan: #06b6d4;
    --indigo: #4f46e5;
    --violet: #7c3aed;
    --pink: #e879f9;
    --green: #059669;
    --amber: #d97706;
    --rose: #e11d48;
    --gradient: linear-gradient(135deg, #2563eb 0%, #4f46e5 46%, #7c3aed 100%);
    --gradient-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.11), rgba(6, 182, 212, 0.08), rgba(124, 58, 237, 0.10));
    --shadow-xs: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-sm: 0 16px 42px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 24px 70px rgba(37, 99, 235, 0.14);
    --shadow-lg: 0 34px 100px rgba(15, 23, 42, 0.14);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;
    --container: 1180px;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 0%, rgba(37, 99, 235, 0.08), transparent 30%),
        radial-gradient(circle at 88% 4%, rgba(6, 182, 212, 0.07), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 44%, #ffffff 100%);
    font-family: var(--font-sans);
    line-height: 1.55;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

svg {
    flex: 0 0 auto;
}

.ui-icon {
    display: block;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.container.narrow {
    --container: 940px;
}

.section {
    position: relative;
    padding: 96px 0;
}

.section-white {
    background: var(--white);
}

.section-soft {
    background:
        radial-gradient(circle at 12% 12%, rgba(37, 99, 235, 0.08), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(124, 58, 237, 0.07), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-blue {
    background:
        linear-gradient(180deg, #eff7ff 0%, #ffffff 100%);
}

.section-heading {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.section-heading.align-left {
    margin-inline: 0;
    text-align: left;
}

.section-heading h2,
.split-copy h2,
.content-copy h2 {
    margin: 18px 0 0;
    color: var(--ink);
    font-size: 3.2rem;
    line-height: 1.08;
    font-weight: 900;
    text-wrap: balance;
}

.section-heading p,
.split-copy p,
.content-copy p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.78;
}

.eyebrow,
.chip,
.badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 9px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 999px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-xs);
    font-size: 0.88rem;
    font-weight: 850;
}

.eyebrow {
    min-height: 40px;
    padding: 0 14px;
}

.eyebrow svg,
.chip svg,
.badge svg {
    width: 17px;
    height: 17px;
}

.chip-row,
.badge-row,
.hero-actions,
.section-actions,
.tag-row,
.trust-strip,
.stat-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.chip {
    min-height: 38px;
    padding: 0 13px;
    color: var(--ink-soft);
    background: #ffffff;
}

.chip-blue {
    color: var(--blue);
    background: #eff6ff;
    border-color: #bfdbfe;
}

.chip-cyan {
    color: #0e7490;
    background: #ecfeff;
    border-color: #a5f3fc;
}

.chip-violet {
    color: var(--violet);
    background: #f5f3ff;
    border-color: #ddd6fe;
}

.chip-green {
    color: var(--green);
    background: #ecfdf5;
    border-color: #bbf7d0;
}

.gradient-text {
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.lead {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.78;
}

.lead-center {
    margin-inline: auto;
}

.flow-stack,
.mt-18 {
    margin-top: 18px;
}

.mt-22 {
    margin-top: 22px;
}

.mt-auto {
    margin-top: auto;
}

.trust-left {
    justify-content: flex-start;
    margin-top: 22px;
}

.scope-heading {
    margin: 18px 0 0;
    font-size: 2rem;
    line-height: 1.12;
}

.muted-note {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.footer-cta-button {
    margin-top: 18px;
}

.btn,
.blog-btn,
.blog-submit-btn,
.form-submit,
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn svg,
.blog-btn svg,
.blog-submit-btn svg {
    width: 18px;
    height: 18px;
}

.btn:hover,
.blog-btn:hover,
.blog-submit-btn:hover,
.form-submit:hover,
.btn-submit:hover {
    transform: translateY(-3px);
}

.btn-primary,
.blog-btn,
.blog-submit-btn,
.form-submit,
.btn-submit {
    color: #ffffff;
    background: var(--gradient);
    box-shadow: 0 18px 46px rgba(37, 99, 235, 0.24);
}

.btn-secondary {
    border: 1px solid var(--line);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
    color: var(--blue);
    border-color: rgba(37, 99, 235, 0.28);
}

.btn-light {
    color: var(--blue-dark);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-dark {
    color: #ffffff;
    background: #0f172a;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.btn-whatsapp {
    color: #ffffff;
    background: linear-gradient(135deg, #128c4a 0%, #16a34a 100%);
    box-shadow: 0 18px 40px rgba(22, 163, 74, 0.22);
}

.btn-sm {
    min-height: 40px;
    padding: 9px 15px;
    font-size: 0.9rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--blue);
    font-weight: 850;
}

.topbar {
    position: fixed;
    inset: 16px 0 auto;
    z-index: 80;
    padding-inline: 16px;
    transition: transform 220ms ease;
}

.topbar.is-scrolled .nav-shell {
    border-color: rgba(203, 213, 225, 0.92);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
}

.nav-shell {
    width: min(100%, var(--container));
    margin-inline: auto;
    border: 1px solid rgba(219, 230, 245, 0.82);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 52px rgba(15, 23, 42, 0.09);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
    padding: 9px 12px 9px 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand img {
    width: auto;
    height: 56px;
    object-fit: contain;
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 1rem;
    font-weight: 900;
}

.brand-text span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 750;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--muted-strong);
    font-size: 0.9rem;
    font-weight: 800;
}

.nav-links a,
.mobile-links a:not(.btn) {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 11px 13px;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-links a:hover,
.mobile-links a.active {
    color: var(--blue);
    background: #eff6ff;
}

.nav-links a.active {
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.nav-ai-link {
    color: var(--violet) !important;
    background: #f5f3ff;
}

.nav-ai-link .nav-badge {
    border-radius: 999px;
    padding: 3px 7px;
    color: #ffffff;
    background: var(--gradient);
    font-size: 0.68rem;
    font-weight: 900;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span {
    opacity: 0;
}

.menu-toggle.is-open::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open::after {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
    display: none;
}

.hero,
.page-hero,
.home-hero {
    position: relative;
    overflow: hidden;
    padding: 154px 0 92px;
    background:
        radial-gradient(circle at 8% 12%, rgba(37, 99, 235, 0.14), transparent 30%),
        radial-gradient(circle at 86% 16%, rgba(6, 182, 212, 0.12), transparent 28%),
        radial-gradient(circle at 50% 90%, rgba(124, 58, 237, 0.09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero::before,
.page-hero::before,
.home-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.055) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-grid,
.home-hero-grid,
.split,
.cta-grid,
.contact-grid,
.platform-hero-grid,
.mobile-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    align-items: center;
    gap: 48px;
}

.hero-grid > *,
.home-hero-grid > *,
.split > *,
.contact-grid > *,
.cta-grid > * {
    min-width: 0;
}

.headline,
.page-headline,
.home-hero-title {
    max-width: 900px;
    margin: 20px 0 0;
    color: var(--ink);
    font-size: 4.25rem;
    line-height: 1.02;
    font-weight: 950;
    text-wrap: balance;
}

.page-headline {
    font-size: 3.95rem;
    line-height: 1.03;
}

.hero-actions,
.section-actions {
    margin-top: 32px;
}

.hero-visual,
.visual-shell,
.dashboard-visual,
.glass-panel {
    border: 1px solid rgba(219, 230, 245, 0.82);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-visual,
.visual-shell {
    overflow: hidden;
    padding: 16px;
}

.hero-text-visual {
    padding: 18px;
}

.automation-panel {
    display: grid;
    min-height: 560px;
    align-content: center;
    border: 1px solid rgba(219, 230, 245, 0.9);
    border-radius: 26px;
    padding: 38px;
    background:
        radial-gradient(circle at 12% 14%, rgba(37, 99, 235, 0.10), transparent 30%),
        radial-gradient(circle at 86% 16%, rgba(6, 182, 212, 0.09), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.automation-panel h2 {
    max-width: 520px;
    margin: 18px 0 0;
    color: var(--ink);
    font-size: 2.75rem;
    line-height: 1.08;
    font-weight: 950;
    text-wrap: balance;
}

.automation-panel p {
    max-width: 560px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.automation-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.automation-feature-grid span {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 14px 14px 34px;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-xs);
    font-weight: 850;
    line-height: 1.4;
}

.automation-feature-grid span::before {
    position: absolute;
    top: 20px;
    left: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: var(--gradient);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08);
}

.browser-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.browser-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    padding: 15px 18px;
    background: #f8fbff;
}

.browser-dots {
    display: flex;
    gap: 7px;
}

.browser-dots span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
}

.dot-red {
    background: #fb7185;
}

.dot-yellow {
    background: #fbbf24;
}

.dot-green {
    background: #34d399;
}

.browser-title {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
}

.dashboard-preview {
    display: grid;
    gap: 18px;
    padding: 20px;
}

.dashboard-preview img,
.visual-shell img,
.image-card img {
    width: 100%;
    border-radius: 20px;
    background: #eef6ff;
}

.dashboard-stats,
.metric-grid,
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.dashboard-stats div,
.metric-card,
.stat-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    background: #f8fbff;
}

.dashboard-stats span,
.metric-card span,
.stat-card span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.dashboard-stats strong,
.metric-card strong,
.stat-card strong {
    display: block;
    margin-top: 5px;
    color: var(--ink);
    font-size: 1.45rem;
    font-weight: 950;
}

.trust-band {
    padding: 24px 0;
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.84);
}

.trust-strip {
    justify-content: center;
}

.trust-strip .chip {
    min-height: 44px;
    padding-inline: 16px;
}

.card-grid,
.feature-grid,
.service-grid,
.pricing-grid,
.blog-grid,
.contact-methods,
.platform-grid,
.app-feature-grid,
.app-platform-grid,
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
    margin-top: 46px;
}

.card-grid.four,
.feature-grid.four,
.service-grid.four,
.platform-grid.four,
.comparison-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.service-card,
.module-card,
.pricing-card,
.case-card,
.contact-method,
.platform-card,
.app-feature-card,
.app-platform-card,
.blog-card,
.mini-card,
.timeline-item,
.faq-item,
.related-blog-list a,
.contact-info-card,
.form-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(219, 230, 245, 0.9);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-xs);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card,
.service-card,
.module-card,
.pricing-card,
.case-card,
.platform-card,
.app-feature-card,
.app-platform-card,
.mini-card,
.contact-method,
.contact-info-card {
    padding: 24px;
}

.feature-card::before,
.service-card::before,
.pricing-card::before,
.platform-card::before,
.app-feature-card::before,
.app-platform-card::before,
.mini-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    content: "";
    background: var(--gradient);
    opacity: 0;
    transition: opacity 220ms ease;
}

.feature-card:hover,
.service-card:hover,
.module-card:hover,
.pricing-card:hover,
.case-card:hover,
.platform-card:hover,
.app-feature-card:hover,
.app-platform-card:hover,
.blog-card:hover,
.mini-card:hover,
.contact-method:hover,
.related-blog-list a:hover,
.contact-info-card:hover {
    transform: translateY(-7px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before,
.service-card:hover::before,
.pricing-card:hover::before,
.platform-card:hover::before,
.app-feature-card:hover::before,
.app-platform-card:hover::before,
.mini-card:hover::before {
    opacity: 1;
}

.icon-box,
.home-icon-box,
.app-icon-box,
.flow-icon,
.cta-highlight-icon,
.contact-icon,
.footer-badge-icon {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 18px;
    color: var(--blue);
    background: #eff6ff;
    box-shadow: inset 0 0 0 1px #bfdbfe;
}

.icon-box svg,
.home-icon-box svg,
.app-icon-box svg,
.flow-icon svg,
.cta-highlight-icon svg,
.contact-icon svg {
    width: 27px;
    height: 27px;
}

.icon-box.violet,
.app-icon-box.violet {
    color: var(--violet);
    background: #f5f3ff;
    box-shadow: inset 0 0 0 1px #ddd6fe;
}

.icon-box.cyan,
.app-icon-box.cyan {
    color: #0e7490;
    background: #ecfeff;
    box-shadow: inset 0 0 0 1px #a5f3fc;
}

.icon-box.green,
.app-icon-box.green {
    color: var(--green);
    background: #ecfdf5;
    box-shadow: inset 0 0 0 1px #bbf7d0;
}

.feature-card h3,
.service-card h3,
.module-card h3,
.pricing-card h3,
.case-card h3,
.platform-card h3,
.app-feature-card h3,
.app-platform-card h3,
.mini-card h3,
.contact-method h3,
.contact-info-card h3 {
    margin: 18px 0 0;
    color: var(--ink);
    font-size: 1.16rem;
    line-height: 1.25;
    font-weight: 900;
}

.feature-card p,
.service-card p,
.module-card p,
.pricing-card p,
.case-card p,
.platform-card p,
.app-feature-card p,
.app-platform-card p,
.mini-card p,
.contact-method p,
.contact-info-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.68;
}

.review-avatar {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gradient);
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.2);
    font-weight: 950;
}

.case-card .chip {
    margin-top: 18px;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--blue);
    background: #eff6ff;
    font-size: 0.76rem;
    font-weight: 850;
}

.filter-bar,
.billing-toggle,
.tab-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.filter-btn,
.billing-btn,
.tab-btn {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 16px;
    color: var(--muted-strong);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-xs);
    font-weight: 850;
    cursor: pointer;
    transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-btn:hover,
.billing-btn:hover,
.tab-btn:hover {
    transform: translateY(-2px);
}

.filter-btn.is-active,
.billing-btn.is-active,
.tab-btn.is-active {
    color: var(--blue);
    border-color: rgba(37, 99, 235, 0.32);
    background: #eff6ff;
}

.split-copy .feature-list,
.feature-list,
.check-list,
.clean-list,
.ai-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list.two,
.check-list.two,
.clean-list.two,
.ai-list.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list li,
.check-list li,
.clean-list li,
.ai-list li,
.feature-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 13px 14px;
    color: var(--ink-soft);
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    font-weight: 800;
}

.feature-list svg,
.check-list svg,
.clean-list svg,
.ai-list svg,
.feature-link svg {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--green);
}

.ai-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 18%, rgba(6, 182, 212, 0.13), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(124, 58, 237, 0.12), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.ai-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 36px;
    border: 1px solid rgba(191, 219, 254, 0.9);
    border-radius: var(--radius-lg);
    padding: 36px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-md);
}

.ai-orbit {
    position: relative;
    display: grid;
    min-height: 440px;
    place-items: center;
}

.ai-core {
    display: grid;
    width: min(100%, 290px);
    min-height: 290px;
    place-items: center;
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: 50%;
    color: #ffffff;
    background: var(--gradient);
    box-shadow: 0 28px 76px rgba(37, 99, 235, 0.24);
    text-align: center;
}

.ai-core svg {
    width: 48px;
    height: 48px;
    margin-inline: auto;
}

.ai-core strong {
    display: block;
    margin-top: 12px;
    font-size: 1.45rem;
    font-weight: 950;
}

.ai-core span {
    display: block;
    max-width: 200px;
    margin: 8px auto 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 750;
}

.ai-floating-card {
    position: absolute;
    display: grid;
    gap: 4px;
    width: 178px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.ai-floating-card strong {
    font-size: 0.86rem;
    font-weight: 900;
}

.ai-floating-card span {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.35;
    font-weight: 700;
}

.ai-floating-card:nth-child(2) {
    top: 26px;
    left: 8px;
}

.ai-floating-card:nth-child(3) {
    top: 56px;
    right: 0;
}

.ai-floating-card:nth-child(4) {
    bottom: 68px;
    left: 0;
}

.ai-floating-card:nth-child(5) {
    right: 22px;
    bottom: 30px;
}

.platform-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
    align-items: stretch;
    margin-top: 46px;
}

.platform-nav {
    display: grid;
    gap: 12px;
}

.platform-nav .mini-card {
    padding: 18px;
}

.platform-console {
    padding: 20px;
}

.console-header,
.panel-top,
.blog-card-meta,
.related-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.console-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 14px;
    margin-top: 18px;
}

.console-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    background: #f8fbff;
}

.console-card.large {
    min-height: 250px;
}

.progress-track {
    height: 10px;
    margin-top: 16px;
    overflow: hidden;
    border-radius: 999px;
    background: #dbeafe;
}

.progress-track span,
.progress-track i {
    display: block;
    width: var(--value, 72%);
    height: 100%;
    border-radius: inherit;
    background: var(--gradient);
}

.progress-82 {
    width: 82% !important;
}

.mini-flow {
    display: grid;
    gap: 12px;
}

.flow-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    background: #ffffff;
}

.flow-row strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 900;
}

.flow-row span:not(.flow-icon):not(.status-pill) {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--green);
    background: #ecfdf5;
    font-size: 0.74rem;
    font-weight: 900;
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.pricing-card.featured {
    border-color: rgba(37, 99, 235, 0.34);
    box-shadow: var(--shadow-md);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    border-radius: 999px;
    padding: 7px 10px;
    color: #ffffff;
    background: var(--gradient);
    font-size: 0.72rem;
    font-weight: 900;
}

.price-line {
    display: grid;
    gap: 6px;
    margin-top: 22px;
    border-block: 1px solid var(--line);
    padding: 18px 0;
}

.price-line strong {
    color: var(--ink);
    font-size: 1.85rem;
    line-height: 1;
    font-weight: 950;
}

.price-line span {
    color: var(--muted);
    font-weight: 800;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
}

.timeline-marker {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    background: var(--gradient);
    font-weight: 950;
}

.timeline-item h3 {
    margin: 0;
    font-size: 1.06rem;
    font-weight: 900;
}

.timeline-item p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.faq-grid {
    display: grid;
    gap: 13px;
    max-width: 900px;
    margin: 44px auto 0;
}

.faq-item {
    padding: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 18px;
    border: 0;
    padding: 20px 22px;
    color: var(--ink);
    background: transparent;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 0 22px 22px;
    color: var(--muted);
    line-height: 1.7;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.mobile-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.app-device-stage {
    position: relative;
    min-height: 560px;
}

.phone-frame {
    position: absolute;
    overflow: hidden;
    width: 260px;
    border: 10px solid #0f172a;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
}

.phone-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.phone-primary {
    top: 8px;
    left: 86px;
    z-index: 2;
}

.phone-secondary {
    right: 18px;
    bottom: 12px;
    width: 230px;
    transform: rotate(4deg);
}

.app-floating-card {
    position: absolute;
    left: 0;
    bottom: 80px;
    z-index: 3;
    max-width: 260px;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
}

.app-floating-card strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 950;
}

.app-floating-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.55;
}

.app-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 46px;
}

.app-screenshot-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.app-screenshot-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.app-screenshot-card figcaption {
    padding: 16px 18px;
    color: var(--ink);
    font-weight: 900;
}

.contact-hero .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.contact-info-card {
    text-align: center;
}

.contact-info-card a {
    display: inline-block;
    margin-top: 10px;
    color: var(--blue);
    font-weight: 850;
}

.contact-grid {
    align-items: start;
}

.form-card {
    padding: 30px;
}

.form-card h2,
.blog-project-form h2 {
    margin: 0;
    color: var(--ink);
    font-size: 2.4rem;
    line-height: 1.12;
    font-weight: 950;
}

.form-card p,
.blog-project-form p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.72;
}

.contact-form-modern,
.modal-form,
.blog-form-grid {
    display: grid;
    gap: 18px;
}

.form-row,
.blog-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field,
.form-group {
    display: grid;
    gap: 8px;
}

.form-field.full-width,
.form-field-full {
    grid-column: 1 / -1;
}

.field-label,
.form-field label,
.form-group label {
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 850;
}

.field-input,
.form-input,
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    padding: 13px 15px;
    color: var(--ink);
    background: #ffffff;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea.field-input,
.form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.field-input:focus,
.form-input:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(37, 99, 235, 0.62);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.11);
}

.error-text,
.text-danger,
.form-field small {
    color: var(--rose);
    font-size: 0.8rem;
    font-weight: 750;
}

.alert,
.premium-alert,
.blog-form-success {
    border: 1px solid rgba(5, 150, 105, 0.22);
    border-radius: 16px;
    padding: 14px 16px;
    color: #047857;
    background: #ecfdf5;
    font-weight: 800;
}

.alert-danger {
    border-color: rgba(225, 29, 72, 0.22);
    color: #be123c;
    background: #fff1f2;
}

.mb-4 {
    margin-bottom: 16px;
}

.contact-aside {
    display: grid;
    gap: 16px;
}

.contact-snapshot {
    padding: 24px;
}

.module-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.module-options label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 13px;
    background: #f8fbff;
    color: var(--ink-soft);
    font-weight: 800;
}

.blog-main-section {
    padding: 146px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.blog-header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.blog-page-logo,
.blog-hero-logo img {
    width: min(100%, 240px);
    height: auto;
    margin-inline: auto;
}

.blog-header h1,
.blog-detail-head h1 {
    margin: 22px 0 0;
    color: var(--ink);
    font-size: 4rem;
    line-height: 1.05;
    font-weight: 950;
    text-wrap: balance;
}

.blog-card {
    cursor: pointer;
}

.blog-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #eef6ff, #f5f3ff);
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.045);
}

.blog-image-placeholder,
.related-image-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 210px;
    place-items: center;
    color: var(--blue);
    background: linear-gradient(135deg, #eef6ff, #f5f3ff);
}

.social-icon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-xs);
}

.blog-card-body,
.blog-card .card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 22px;
}

.blog-category {
    width: fit-content;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--blue);
    background: #eff6ff;
    font-size: 0.78rem;
    font-weight: 850;
}

.blog-title {
    margin: 15px 0 0;
    color: var(--ink);
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 900;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 750;
}

.blog-text {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.blog-card-cta {
    margin-top: auto;
    padding-top: 20px;
}

.blog-empty-state {
    grid-column: 1 / -1;
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    text-align: center;
}

.blog-detail-shell {
    background: #ffffff;
}

.blog-detail-hero {
    padding: 146px 0 72px;
    background:
        radial-gradient(circle at 14% 12%, rgba(37, 99, 235, 0.12), transparent 28%),
        radial-gradient(circle at 84% 16%, rgba(124, 58, 237, 0.10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.blog-detail-head {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.blog-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--blue);
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    font-weight: 850;
}

.blog-detail-meta {
    justify-content: center;
    margin-top: 18px;
}

.blog-article-wrap {
    max-width: 1040px;
}

.blog-article-content {
    display: grid;
    gap: 28px;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.85;
}

.blog-content-section {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    background:
        radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.06), transparent 30%),
        #ffffff;
    box-shadow: var(--shadow-xs);
}

.blog-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.blog-section-marker {
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: var(--gradient);
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.08);
}

.blog-content-section h2 {
    margin: 0;
    color: var(--ink);
    font-size: 2.4rem;
    line-height: 1.16;
    font-weight: 950;
}

.blog-content-section h3 {
    margin: 28px 0 12px;
    color: var(--ink-soft);
    font-size: 1.35rem;
    font-weight: 900;
}

.blog-content-section p {
    margin: 0 0 17px;
}

.blog-content-list {
    margin: 0 0 18px;
    padding-left: 24px;
}

.blog-inline-media {
    overflow: hidden;
    margin: 26px 0;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #f8fbff;
}

.blog-inline-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-inline-media--feature {
    aspect-ratio: 16 / 8.8;
}

.blog-inline-media--standard {
    aspect-ratio: 16 / 9.4;
}

.related-blogs,
.blog-project-form {
    margin-top: 64px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px;
    background:
        radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.07), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: var(--shadow-sm);
}

.form-heading {
    margin-bottom: 24px;
}

.form-heading h2 {
    margin: 16px 0 0;
}

.related-heading h2 {
    margin: 0;
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 950;
}

.related-blog-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.related-blog-list a {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.related-blog-list img,
.related-image-placeholder {
    width: 100%;
    height: 170px;
    border-radius: 18px;
    object-fit: cover;
}

.related-blog-list span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
}

.related-blog-list strong {
    color: var(--ink);
    line-height: 1.35;
}

.related-blog-list em {
    color: var(--blue);
    font-style: normal;
    font-weight: 900;
}

.cta-section {
    background:
        radial-gradient(circle at 12% 16%, rgba(37, 99, 235, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.cta-band {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(191, 219, 254, 0.9);
    border-radius: var(--radius-lg);
    padding: 42px;
    background:
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.14), transparent 30%),
        radial-gradient(circle at 92% 18%, rgba(124, 58, 237, 0.11), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #eff7ff 100%);
    box-shadow: var(--shadow-md);
}

.cta-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
}

.cta-band h2 {
    margin: 18px 0 0;
    color: var(--ink);
    font-size: 3.1rem;
    line-height: 1.08;
    font-weight: 950;
}

.cta-band p {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.cta-highlight-panel {
    display: grid;
    gap: 14px;
}

.cta-highlight-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-xs);
}

.cta-highlight-card h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
}

.cta-highlight-card p {
    margin: 6px 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.footer {
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.8fr 0.9fr 0.9fr;
    gap: 34px;
    padding: 62px 0 38px;
}

.footer p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.72;
}

.footer h4 {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 950;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: var(--muted-strong);
    font-weight: 750;
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 18px 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-row a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue);
    background: #f8fbff;
    font-weight: 900;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    position: relative;
    width: min(100%, 520px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    background:
        radial-gradient(circle at 18% 8%, rgba(37, 99, 235, 0.09), transparent 30%),
        #ffffff;
    box-shadow: 0 34px 100px rgba(15, 23, 42, 0.24);
    animation: modalIn 260ms ease;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: #ffffff;
    cursor: pointer;
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-header {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.modal-logo {
    width: auto;
    height: 78px;
}

.modal-body {
    text-align: center;
}

.modal-body h2 {
    margin: 0;
    color: var(--ink);
    font-size: 2rem;
    line-height: 1.12;
    font-weight: 950;
}

.modal-body p,
.modal-secure-note {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.modal-form {
    margin-top: 22px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    padding: 12px 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #128c4a, #16a34a);
    box-shadow: 0 18px 46px rgba(22, 163, 74, 0.3);
    font-weight: 900;
}

.floating-whatsapp svg {
    width: 20px;
    height: 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 620ms ease, transform 620ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1160px) {
    .nav-links {
        display: none;
    }

    .nav-actions .btn-whatsapp {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-panel {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 260ms ease;
    }

    .mobile-panel.is-open {
        max-height: calc(100vh - 100px);
    }

    .mobile-links {
        display: grid;
        gap: 8px;
        border-top: 1px solid var(--line);
        padding: 14px;
    }

    .mobile-links a:not(.btn) {
        justify-content: space-between;
        border-radius: 18px;
        padding: 13px 14px;
        background: #f8fbff;
    }

    .mobile-links .btn {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 78px 0;
    }

    .hero,
    .page-hero,
    .home-hero,
    .blog-main-section,
    .blog-detail-hero {
        padding-top: 132px;
    }

    .hero-grid,
    .contact-hero .hero-grid,
    .home-hero-grid,
    .split,
    .cta-grid,
    .contact-grid,
    .platform-hero-grid,
    .mobile-hero-grid,
    .ai-panel,
    .platform-showcase,
    .console-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .feature-grid,
    .service-grid,
    .pricing-grid,
    .blog-grid,
    .contact-methods,
    .platform-grid,
    .app-feature-grid,
    .app-platform-grid,
    .comparison-grid,
    .card-grid.four,
    .feature-grid.four,
    .service-grid.four,
    .platform-grid.four,
    .comparison-grid.four,
    .contact-info-grid,
    .related-blog-list,
    .app-screenshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .container {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }

    .topbar {
        inset: 10px 0 auto;
        padding-inline: 10px;
    }

    .nav-shell {
        border-radius: 26px;
    }

    .nav-inner {
        min-height: 66px;
        padding: 8px 10px 8px 13px;
    }

    .brand img {
        height: 48px;
    }

    .brand-text {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .hero,
    .page-hero,
    .home-hero {
        padding: 122px 0 70px;
    }

    .headline,
    .home-hero-title {
        font-size: 2.65rem;
    }

    .page-headline {
        font-size: 2.35rem;
    }

    .hero-actions,
    .section-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn,
    .section-actions .btn,
    .cta-band .btn,
    .form-submit,
    .btn-submit {
        width: 100%;
    }

    .automation-panel {
        min-height: auto;
        padding: 26px;
    }

    .automation-panel h2 {
        font-size: 2rem;
    }

    .automation-feature-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .feature-grid,
    .service-grid,
    .pricing-grid,
    .blog-grid,
    .contact-methods,
    .platform-grid,
    .app-feature-grid,
    .app-platform-grid,
    .comparison-grid,
    .card-grid.four,
    .feature-grid.four,
    .service-grid.four,
    .platform-grid.four,
    .comparison-grid.four,
    .contact-info-grid,
    .related-blog-list,
    .app-screenshot-grid,
    .dashboard-stats,
    .metric-grid,
    .stat-grid,
    .feature-list.two,
    .check-list.two,
    .clean-list.two,
    .ai-list.two,
    .form-row,
    .blog-form-grid {
        grid-template-columns: 1fr;
    }

    .ai-panel,
    .cta-band,
    .related-blogs,
    .blog-project-form,
    .form-card {
        padding: 24px;
        border-radius: 24px;
    }

    .ai-orbit {
        min-height: auto;
        place-items: stretch;
        gap: 12px;
    }

    .ai-core {
        width: 100%;
        min-height: 220px;
        border-radius: 24px;
    }

    .ai-floating-card {
        position: static;
        width: 100%;
    }

    .app-device-stage {
        min-height: 560px;
    }

    .phone-primary {
        left: 14px;
    }

    .phone-secondary {
        right: 0;
        width: 210px;
    }

    .app-floating-card {
        left: 0;
        right: 0;
        bottom: 24px;
    }

    .related-heading,
    .console-header,
    .panel-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding-top: 48px;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 420px) {
    .headline,
    .home-hero-title {
        font-size: 2.25rem;
    }

    .page-headline {
        font-size: 2rem;
    }

    .section-heading h2,
    .split-copy h2,
    .content-copy h2,
    .cta-band h2 {
        font-size: 1.85rem;
    }

    .phone-frame {
        width: 226px;
    }

    .phone-frame img {
        height: 455px;
    }

    .phone-secondary {
        right: 4px;
        width: 168px;
    }

    .floating-whatsapp__text {
        display: none;
    }

    .flow-row {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .flow-row .status-pill {
        grid-column: 2;
        width: fit-content;
    }
}

/* Premium dark AI/SaaS theme */
:root {
    --bg-main: #050b16;
    --bg-soft: #081527;
    --card-bg: #071426;
    --card-bg-soft: #0b1b32;
    --text-main: #f8fafc;
    --text-muted: #b8c4d8;
    --primary-blue: #0ea5e9;
    --primary-cyan: #22d3ee;
    --accent-gold: #f59e0b;
    --accent-orange: #fb923c;
    --border-blue: rgba(14, 165, 233, 0.45);
    --border-gold: rgba(245, 158, 11, 0.45);
    --whatsapp: #16a34a;
    --ink: var(--text-main);
    --ink-soft: #dbeafe;
    --muted: var(--text-muted);
    --muted-strong: #cbd5e1;
    --surface: var(--bg-soft);
    --surface-soft: #0a1a30;
    --surface-violet: #111c34;
    --line: rgba(56, 189, 248, 0.22);
    --line-strong: rgba(125, 211, 252, 0.34);
    --blue: var(--primary-blue);
    --blue-dark: #0284c7;
    --cyan: var(--primary-cyan);
    --indigo: #38bdf8;
    --violet: #60a5fa;
    --pink: var(--accent-orange);
    --green: var(--whatsapp);
    --amber: var(--accent-gold);
    --gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 52%, #2563eb 100%);
    --gradient-soft: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(34, 211, 238, 0.12), rgba(245, 158, 11, 0.10));
    --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    --shadow-xs: 0 12px 30px rgba(0, 0, 0, 0.28);
    --shadow-sm: 0 18px 48px rgba(0, 0, 0, 0.34);
    --shadow-md: 0 26px 72px rgba(0, 0, 0, 0.42), 0 0 42px rgba(14, 165, 233, 0.08);
    --shadow-lg: 0 34px 100px rgba(0, 0, 0, 0.5);
}

body {
    color: var(--text-main);
    background:
        linear-gradient(rgba(14, 165, 233, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 15% 85%, rgba(14, 165, 233, 0.22), transparent 35%),
        radial-gradient(circle at 95% 10%, rgba(245, 158, 11, 0.12), transparent 28%),
        linear-gradient(135deg, #050b16 0%, #081527 55%, #020617 100%);
    background-attachment: fixed;
    background-size: 48px 48px, 48px 48px, auto, auto, auto;
}

.section-white,
.section-soft,
.section-blue,
.hero,
.page-hero,
.home-hero,
.ai-section,
.cta-section,
.blog-main-section,
.blog-detail-hero,
.footer {
    background:
        linear-gradient(rgba(14, 165, 233, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.032) 1px, transparent 1px),
        radial-gradient(circle at 12% 12%, rgba(14, 165, 233, 0.16), transparent 30%),
        radial-gradient(circle at 92% 10%, rgba(245, 158, 11, 0.08), transparent 28%),
        linear-gradient(135deg, var(--bg-main) 0%, var(--bg-soft) 58%, #020617 100%);
    background-size: 48px 48px, 48px 48px, auto, auto, auto;
}

.hero::before,
.page-hero::before,
.home-hero::before,
.blog-detail-hero::before {
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.055) 1px, transparent 1px);
    opacity: 0.9;
}

.section-heading h2,
.split-copy h2,
.content-copy h2,
.headline,
.page-headline,
.blog-header h1,
.blog-detail-head h1,
.blog-content-section h2,
.related-heading h2,
.cta-band h2,
.form-card h2,
.blog-project-form h2,
.automation-panel h2,
.feature-card h3,
.service-card h3,
.module-card h3,
.pricing-card h3,
.case-card h3,
.platform-card h3,
.app-feature-card h3,
.app-platform-card h3,
.mini-card h3,
.contact-method h3,
.contact-info-card h3,
.console-header h3,
.blog-title,
.timeline-item h3,
.faq-question,
.flow-row strong {
    color: var(--text-main);
}

.home-hero-title {
    color: transparent;
    background: linear-gradient(135deg, #f8fafc 0%, #f8fafc 36%, var(--primary-cyan) 58%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.lead,
.section-heading p,
.split-copy p,
.content-copy p,
.automation-panel p,
.feature-card p,
.service-card p,
.module-card p,
.pricing-card p,
.case-card p,
.platform-card p,
.app-feature-card p,
.app-platform-card p,
.mini-card p,
.contact-method p,
.contact-info-card p,
.timeline-item p,
.faq-answer,
.blog-text,
.blog-content-section,
.blog-content-section p,
.form-card p,
.blog-project-form p,
.cta-band p,
.modal-body p,
.modal-secure-note,
.footer p,
.muted-note,
.flow-row span:not(.flow-icon):not(.status-pill),
.dashboard-stats span,
.metric-card span,
.stat-card span,
.price-line span {
    color: var(--text-muted);
}

.nav-shell {
    border-color: rgba(56, 189, 248, 0.24);
    background: rgba(7, 20, 38, 0.82);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38), 0 0 42px rgba(14, 165, 233, 0.08);
}

.topbar.is-scrolled .nav-shell {
    border-color: rgba(56, 189, 248, 0.34);
    background: rgba(7, 20, 38, 0.94);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.46);
}

.brand-text strong {
    color: var(--text-main);
}

.brand-text span {
    color: var(--text-muted);
}

.nav-links {
    color: #dbeafe;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-links a:hover,
.mobile-links a.active {
    color: var(--primary-cyan);
    background: rgba(14, 165, 233, 0.12);
    box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.18);
}

.nav-ai-link {
    color: var(--primary-cyan) !important;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.16);
}

.nav-ai-link .nav-badge {
    color: #111827;
    background: var(--gradient-gold);
}

.mobile-panel {
    background: rgba(7, 20, 38, 0.92);
}

.mobile-links a:not(.btn) {
    color: var(--text-main);
    background: rgba(11, 27, 50, 0.9);
    border: 1px solid rgba(56, 189, 248, 0.18);
}

.menu-toggle {
    color: var(--text-main);
    border-color: rgba(56, 189, 248, 0.28);
    background: rgba(11, 27, 50, 0.92);
}

.eyebrow,
.chip,
.badge,
.tag,
.blog-category {
    color: var(--primary-cyan);
    border-color: rgba(34, 211, 238, 0.28);
    background: rgba(7, 20, 38, 0.78);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.chip-blue,
.chip-cyan,
.chip-violet {
    color: var(--primary-cyan);
    background: rgba(14, 165, 233, 0.12);
    border-color: rgba(34, 211, 238, 0.28);
}

.chip-green,
.status-pill {
    color: #86efac;
    background: rgba(22, 163, 74, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.22);
}

.btn-primary,
.blog-btn,
.blog-submit-btn,
.form-submit,
.btn-submit {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-blue), #2563eb 58%, var(--primary-cyan));
    box-shadow: 0 18px 48px rgba(14, 165, 233, 0.24);
}

.btn-secondary,
.filter-btn,
.billing-btn,
.tab-btn,
.btn-light {
    color: var(--text-main);
    border-color: rgba(56, 189, 248, 0.26);
    background: rgba(11, 27, 50, 0.82);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover,
.filter-btn:hover,
.billing-btn:hover,
.tab-btn:hover {
    color: var(--primary-cyan);
    border-color: rgba(34, 211, 238, 0.48);
    background: rgba(14, 165, 233, 0.14);
}

.filter-btn.is-active,
.billing-btn.is-active,
.tab-btn.is-active {
    color: #111827;
    border-color: var(--border-gold);
    background: var(--gradient-gold);
}

.btn-dark {
    color: #111827;
    background: var(--gradient-gold);
    box-shadow: 0 18px 44px rgba(245, 158, 11, 0.22);
}

.btn-whatsapp,
.floating-whatsapp {
    color: #ffffff;
    background: linear-gradient(135deg, #15803d, var(--whatsapp));
    box-shadow: 0 18px 44px rgba(22, 163, 74, 0.28);
}

.hero-visual,
.visual-shell,
.dashboard-visual,
.glass-panel,
.ai-panel,
.cta-band,
.browser-card,
.automation-panel,
.feature-card,
.service-card,
.module-card,
.pricing-card,
.case-card,
.contact-method,
.platform-card,
.app-feature-card,
.app-platform-card,
.blog-card,
.mini-card,
.timeline-item,
.faq-item,
.related-blog-list a,
.contact-info-card,
.form-card,
.blog-content-section,
.related-blogs,
.blog-project-form,
.modal-content,
.app-screenshot-card,
.contact-snapshot {
    border-color: rgba(56, 189, 248, 0.22);
    background:
        linear-gradient(180deg, rgba(11, 27, 50, 0.9), rgba(7, 20, 38, 0.92));
    box-shadow: var(--shadow-sm);
}

.hero-visual,
.ai-panel,
.cta-band,
.automation-panel,
.platform-console {
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 28px 88px rgba(0, 0, 0, 0.42), 0 0 52px rgba(14, 165, 233, 0.11);
}

.feature-card::before,
.service-card::before,
.pricing-card::before,
.platform-card::before,
.app-feature-card::before,
.app-platform-card::before,
.mini-card::before {
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent-gold));
}

.feature-card:hover,
.service-card:hover,
.module-card:hover,
.pricing-card:hover,
.case-card:hover,
.platform-card:hover,
.app-feature-card:hover,
.app-platform-card:hover,
.blog-card:hover,
.mini-card:hover,
.contact-method:hover,
.related-blog-list a:hover,
.contact-info-card:hover {
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.5), 0 0 42px rgba(14, 165, 233, 0.12);
}

.automation-feature-grid span,
.feature-list li,
.check-list li,
.clean-list li,
.ai-list li,
.feature-link,
.dashboard-stats div,
.metric-card,
.stat-card,
.console-card,
.flow-row,
.cta-highlight-card,
.module-options label {
    color: var(--text-main);
    border-color: rgba(56, 189, 248, 0.22);
    background: rgba(7, 20, 38, 0.72);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.automation-feature-grid span::before {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-gold));
    box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.13);
}

.icon-box,
.home-icon-box,
.app-icon-box,
.flow-icon,
.cta-highlight-icon,
.contact-icon,
.footer-badge-icon {
    color: var(--primary-cyan);
    background: rgba(14, 165, 233, 0.13);
    box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.28), 0 12px 30px rgba(14, 165, 233, 0.12);
}

.icon-box.violet,
.app-icon-box.violet,
.icon-box.cyan,
.app-icon-box.cyan {
    color: var(--primary-cyan);
    background: rgba(14, 165, 233, 0.13);
    box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.28);
}

.icon-box.green,
.app-icon-box.green {
    color: var(--accent-gold);
    background: rgba(245, 158, 11, 0.13);
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.28);
}

.ai-core,
.review-avatar,
.timeline-marker {
    color: #06111f;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-gold));
    box-shadow: 0 24px 70px rgba(14, 165, 233, 0.18);
}

.ai-core span {
    color: rgba(6, 17, 31, 0.78);
}

.ai-floating-card,
.app-floating-card {
    border-color: rgba(56, 189, 248, 0.22);
    background: rgba(7, 20, 38, 0.9);
    box-shadow: var(--shadow-sm);
}

.ai-floating-card strong,
.app-floating-card strong,
.dashboard-stats strong,
.metric-card strong,
.stat-card strong,
.price-line strong {
    color: var(--text-main);
}

.browser-top {
    border-color: rgba(56, 189, 248, 0.22);
    background: rgba(11, 27, 50, 0.9);
}

.browser-title,
.app-screenshot-card figcaption,
.related-blog-list strong,
.form-field label,
.field-label,
.form-group label {
    color: var(--text-main);
}

.dashboard-preview img,
.visual-shell img,
.image-card img,
.app-screenshot-card img,
.blog-image-wrap,
.blog-image-placeholder,
.related-image-placeholder {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(245, 158, 11, 0.08));
}

.field-input,
.form-input,
.form-field input,
.form-field select,
.form-field textarea {
    color: var(--text-main);
    border-color: rgba(56, 189, 248, 0.28);
    background: rgba(5, 11, 22, 0.86);
}

.field-input::placeholder,
.form-input::placeholder,
.form-field textarea::placeholder {
    color: #7f91ac;
}

.field-input:focus,
.form-input:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(34, 211, 238, 0.72);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16);
}

.footer {
    border-color: rgba(56, 189, 248, 0.18);
}

.footer h4,
.footer-links a,
.footer-bottom {
    color: var(--text-muted);
}

.footer-links a:hover,
.footer-bottom-links a:hover,
.link-arrow,
.related-blog-list em {
    color: var(--primary-cyan);
}

.footer-bottom,
.trusted-band,
.trust-band {
    border-color: rgba(56, 189, 248, 0.18);
    background: rgba(5, 11, 22, 0.78);
}

.social-row a {
    color: var(--primary-cyan);
    border-color: rgba(56, 189, 248, 0.24);
    background: rgba(11, 27, 50, 0.82);
}

.popular-badge {
    color: #111827;
    background: var(--gradient-gold);
}

.price-line,
.mobile-panel,
.browser-top,
.footer-bottom {
    border-color: rgba(56, 189, 248, 0.18);
}

.modal-overlay {
    background: rgba(2, 6, 23, 0.74);
}

.modal-close {
    color: var(--text-main);
    border-color: rgba(56, 189, 248, 0.24);
    background: rgba(11, 27, 50, 0.92);
}

.alert,
.premium-alert,
.blog-form-success {
    color: #bbf7d0;
    border-color: rgba(34, 197, 94, 0.28);
    background: rgba(22, 163, 74, 0.14);
}

.alert-danger {
    color: #fecdd3;
    border-color: rgba(244, 63, 94, 0.34);
    background: rgba(225, 29, 72, 0.14);
}

.blog-breadcrumb {
    color: var(--primary-cyan);
    border-color: rgba(56, 189, 248, 0.26);
    background: rgba(7, 20, 38, 0.82);
}

.blog-breadcrumb:hover {
    color: var(--accent-gold);
}

.phone-frame {
    border-color: #020617;
    background: var(--card-bg-soft);
    box-shadow: var(--shadow-lg);
}

/* Dark theme refinements for secondary surfaces */
.home-hero-title {
    -webkit-text-fill-color: transparent;
}

.blog-empty-state,
.blog-detail-shell,
.cta-highlight-card,
.platform-console,
.console-card,
.mobile-panel,
.trust-card,
.comparison-card,
.package-note,
.service-category,
.contact-map-card {
    color: var(--text-main);
    border-color: rgba(56, 189, 248, 0.22);
    background:
        linear-gradient(180deg, rgba(11, 27, 50, 0.88), rgba(7, 20, 38, 0.92));
    box-shadow: var(--shadow-sm);
}

.blog-meta,
.blog-card-meta,
.app-floating-card span,
.footer-bottom-links a,
.modal-body p,
.modal-secure-note,
.cta-highlight-card p,
.contact-snapshot p {
    color: var(--text-muted);
}

.modal-body h2,
.cta-highlight-card h3,
.footer h4,
.blog-empty-state h2,
.blog-empty-state h3,
.platform-console h3,
.comparison-card h3,
.trust-card h3,
.service-category h3,
.package-note strong {
    color: var(--text-main);
}

.social-icon-badge,
.blog-image-placeholder,
.related-image-placeholder,
.image-card,
.dashboard-preview,
.platform-console::before {
    color: var(--primary-cyan);
    border-color: rgba(56, 189, 248, 0.2);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(245, 158, 11, 0.08));
}

.blog-card img,
.blog-detail-cover img,
.image-card img,
.dashboard-preview img {
    filter: saturate(1.04) contrast(1.02);
}

.nav-actions .btn-primary,
.mobile-links .btn-primary,
.cta-band .btn-dark {
    color: #111827;
    background: var(--gradient-gold);
    box-shadow: 0 18px 44px rgba(245, 158, 11, 0.24);
}

.nav-actions .btn-primary:hover,
.mobile-links .btn-primary:hover,
.cta-band .btn-dark:hover {
    box-shadow: 0 22px 54px rgba(245, 158, 11, 0.3);
}

.btn-light:hover,
.btn-secondary:hover,
.blog-btn:hover,
.form-submit:hover,
.btn-submit:hover,
.btn-primary:hover {
    transform: translateY(-2px);
}

::selection {
    color: #06111f;
    background: var(--primary-cyan);
}

/* Homepage cover background */
.home-hero {
    background:
        linear-gradient(90deg, rgba(9, 17, 31, 0.9) 0%, rgba(13, 24, 42, 0.78) 48%, rgba(13, 24, 42, 0.62) 100%),
        linear-gradient(180deg, rgba(8, 15, 28, 0.12) 0%, rgba(8, 15, 28, 0.42) 100%),
        url("../../uploads/P1778754121.jpg") center center / cover no-repeat;
}

/* Premium blue-gold SaaS theme polish */
:root {
    --bg-main: #071426;
    --bg-soft: #0b1f38;
    --card-bg: #0f233c;
    --card-bg-soft: #12385a;
    --text-main: #fbfdff;
    --text-muted: #d4dfef;
    --primary-blue: #38bdf8;
    --primary-cyan: #67e8f9;
    --accent-gold: #ffd36b;
    --accent-orange: #f7b733;
    --border-blue: rgba(80, 170, 255, 0.28);
    --border-gold: rgba(255, 211, 107, 0.34);
    --ink: var(--text-main);
    --ink-soft: #eef6ff;
    --muted: var(--text-muted);
    --muted-strong: #e4edf8;
    --surface: #0b1f38;
    --surface-soft: #102b4c;
    --surface-violet: #11294d;
    --line: rgba(80, 170, 255, 0.24);
    --line-strong: rgba(103, 232, 249, 0.38);
    --blue: var(--primary-blue);
    --blue-dark: #0ea5e9;
    --cyan: var(--primary-cyan);
    --indigo: #60a5fa;
    --violet: #8b5cf6;
    --pink: #f7b733;
    --amber: var(--accent-gold);
    --gradient: linear-gradient(135deg, #38bdf8 0%, #67e8f9 48%, #ffd36b 100%);
    --gradient-gold: linear-gradient(135deg, #ffd36b 0%, #ffc857 45%, #f7b733 100%);
    --gradient-soft: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(103, 232, 249, 0.12), rgba(255, 211, 107, 0.14));
    --shadow-xs: 0 10px 28px rgba(3, 12, 28, 0.2);
    --shadow-sm: 0 18px 48px rgba(3, 12, 28, 0.26);
    --shadow-md: 0 26px 76px rgba(3, 12, 28, 0.32), 0 0 44px rgba(56, 189, 248, 0.08);
    --shadow-lg: 0 36px 110px rgba(3, 12, 28, 0.38);
}

body {
    color: var(--text-main);
    background:
        radial-gradient(circle at 18% 8%, rgba(56, 189, 248, 0.22), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(255, 211, 107, 0.11), transparent 30%),
        radial-gradient(circle at 50% 92%, rgba(20, 184, 166, 0.14), transparent 38%),
        linear-gradient(135deg, #071426 0%, #0b1f38 46%, #102b4c 100%);
}

.section-white,
.section-soft,
.section-blue,
.hero,
.page-hero,
.ai-section,
.cta-section,
.blog-main-section,
.blog-detail-hero,
.footer {
    background:
        radial-gradient(circle at 14% 10%, rgba(56, 189, 248, 0.18), transparent 31%),
        radial-gradient(circle at 92% 12%, rgba(255, 211, 107, 0.1), transparent 28%),
        linear-gradient(135deg, #071426 0%, #0b1f38 54%, #102b4c 100%);
}

.home-hero {
    background:
        linear-gradient(90deg, rgba(7, 20, 38, 0.82) 0%, rgba(11, 31, 56, 0.68) 48%, rgba(16, 43, 76, 0.54) 100%),
        radial-gradient(circle at 20% 22%, rgba(56, 189, 248, 0.18), transparent 34%),
        radial-gradient(circle at 88% 16%, rgba(255, 211, 107, 0.12), transparent 30%),
        url("../../uploads/P1778754121.jpg") center center / cover no-repeat;
}

.hero::before,
.page-hero::before,
.home-hero::before,
.blog-detail-hero::before {
    background-image:
        linear-gradient(rgba(103, 232, 249, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(103, 232, 249, 0.065) 1px, transparent 1px);
    opacity: 0.74;
}

.home-hero-title,
.headline,
.page-headline {
    color: transparent;
    background: linear-gradient(135deg, #fff8df 0%, #ffd36b 34%, #ffc857 62%, #ffe08a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 18px 58px rgba(255, 200, 87, 0.14);
}

.section-heading h2,
.split-copy h2,
.content-copy h2,
.cta-band h2,
.form-card h2,
.blog-project-form h2,
.automation-panel h2,
.blog-header h1,
.blog-detail-head h1,
.blog-content-section h2,
.related-heading h2 {
    color: #fff7dc;
}

.lead,
.section-heading p,
.split-copy p,
.content-copy p,
.automation-panel p,
.feature-card p,
.service-card p,
.module-card p,
.pricing-card p,
.case-card p,
.platform-card p,
.app-feature-card p,
.app-platform-card p,
.mini-card p,
.contact-method p,
.contact-info-card p,
.timeline-item p,
.faq-answer,
.blog-text,
.blog-content-section,
.blog-content-section p,
.form-card p,
.blog-project-form p,
.cta-band p,
.modal-body p,
.modal-secure-note,
.footer p,
.muted-note {
    color: var(--text-muted);
}

.nav-shell {
    border-color: rgba(103, 232, 249, 0.24);
    background: rgba(10, 29, 52, 0.72);
    box-shadow: 0 20px 70px rgba(3, 12, 28, 0.32), 0 0 42px rgba(56, 189, 248, 0.09);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.topbar.is-scrolled .nav-shell {
    border-color: rgba(103, 232, 249, 0.34);
    background: rgba(10, 29, 52, 0.86);
    box-shadow: 0 22px 78px rgba(3, 12, 28, 0.36), 0 0 46px rgba(56, 189, 248, 0.1);
}

.brand-text strong,
.browser-title,
.app-screenshot-card figcaption,
.related-blog-list strong,
.form-field label,
.field-label,
.form-group label,
.footer h4 {
    color: var(--text-main);
}

.brand-text span,
.nav-links,
.footer-links a,
.footer-bottom {
    color: #c4d5e8;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-links a:hover,
.mobile-links a.active {
    color: #fff7dc;
    background: rgba(255, 211, 107, 0.13);
    box-shadow: inset 0 0 0 1px rgba(255, 211, 107, 0.18), 0 12px 34px rgba(255, 211, 107, 0.08);
}

.nav-ai-link {
    color: var(--primary-cyan) !important;
    background: rgba(56, 189, 248, 0.14);
    border: 1px solid rgba(103, 232, 249, 0.26);
    box-shadow: 0 14px 36px rgba(56, 189, 248, 0.1);
}

.nav-ai-link .nav-badge,
.popular-badge {
    color: #081221;
    background: var(--gradient-gold);
}

.eyebrow,
.chip,
.badge,
.tag,
.blog-category {
    color: #dffbff;
    border-color: rgba(103, 232, 249, 0.26);
    background: rgba(15, 35, 60, 0.64);
    box-shadow: 0 12px 32px rgba(3, 12, 28, 0.2);
}

.hero-visual,
.visual-shell,
.dashboard-visual,
.glass-panel,
.ai-panel,
.cta-band,
.browser-card,
.automation-panel,
.feature-card,
.service-card,
.module-card,
.pricing-card,
.case-card,
.contact-method,
.platform-card,
.app-feature-card,
.app-platform-card,
.blog-card,
.mini-card,
.timeline-item,
.faq-item,
.related-blog-list a,
.contact-info-card,
.form-card,
.blog-content-section,
.related-blogs,
.blog-project-form,
.modal-content,
.app-screenshot-card,
.contact-snapshot,
.blog-empty-state,
.blog-detail-shell,
.cta-highlight-card,
.platform-console,
.console-card,
.mobile-panel,
.trust-card,
.comparison-card,
.package-note,
.service-category,
.contact-map-card {
    border-color: rgba(80, 170, 255, 0.25);
    background:
        linear-gradient(180deg, rgba(18, 56, 90, 0.72), rgba(15, 35, 60, 0.78));
    box-shadow: 0 20px 56px rgba(3, 12, 28, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-visual,
.ai-panel,
.cta-band,
.automation-panel,
.platform-console {
    border-color: rgba(103, 232, 249, 0.3);
    box-shadow: 0 30px 92px rgba(3, 12, 28, 0.34), 0 0 60px rgba(56, 189, 248, 0.1);
}

.feature-card:hover,
.service-card:hover,
.module-card:hover,
.pricing-card:hover,
.case-card:hover,
.platform-card:hover,
.app-feature-card:hover,
.app-platform-card:hover,
.blog-card:hover,
.mini-card:hover,
.contact-method:hover,
.related-blog-list a:hover,
.contact-info-card:hover {
    border-color: rgba(255, 211, 107, 0.36);
    box-shadow: 0 28px 82px rgba(3, 12, 28, 0.36), 0 0 46px rgba(255, 211, 107, 0.1);
}

.feature-card::before,
.service-card::before,
.pricing-card::before,
.platform-card::before,
.app-feature-card::before,
.app-platform-card::before,
.mini-card::before {
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent-gold));
}

.automation-feature-grid span,
.feature-list li,
.check-list li,
.clean-list li,
.ai-list li,
.feature-link,
.dashboard-stats div,
.metric-card,
.stat-card,
.flow-row,
.cta-highlight-card,
.module-options label {
    color: var(--text-main);
    border-color: rgba(80, 170, 255, 0.25);
    background: rgba(15, 35, 60, 0.75);
}

.icon-box,
.home-icon-box,
.app-icon-box,
.flow-icon,
.cta-highlight-icon,
.contact-icon,
.footer-badge-icon {
    color: #ffe08a;
    background: rgba(255, 211, 107, 0.13);
    box-shadow: inset 0 0 0 1px rgba(255, 211, 107, 0.28), 0 14px 34px rgba(255, 211, 107, 0.1);
}

.icon-box.violet,
.app-icon-box.violet,
.icon-box.cyan,
.app-icon-box.cyan {
    color: var(--primary-cyan);
    background: rgba(56, 189, 248, 0.14);
    box-shadow: inset 0 0 0 1px rgba(103, 232, 249, 0.28), 0 14px 34px rgba(56, 189, 248, 0.1);
}

.btn-primary,
.btn-dark,
.blog-btn,
.blog-submit-btn,
.form-submit,
.btn-submit,
.nav-actions .btn-primary,
.mobile-links .btn-primary,
.cta-band .btn-dark {
    color: #081221;
    background: var(--gradient-gold);
    box-shadow: 0 18px 48px rgba(255, 200, 87, 0.24);
}

.btn-primary:hover,
.btn-dark:hover,
.blog-btn:hover,
.blog-submit-btn:hover,
.form-submit:hover,
.btn-submit:hover,
.nav-actions .btn-primary:hover,
.mobile-links .btn-primary:hover,
.cta-band .btn-dark:hover {
    box-shadow: 0 22px 58px rgba(255, 200, 87, 0.32);
}

.btn-secondary,
.filter-btn,
.billing-btn,
.tab-btn,
.btn-light {
    color: #eaf6ff;
    border-color: rgba(103, 232, 249, 0.28);
    background: rgba(15, 35, 60, 0.7);
}

.filter-btn.is-active,
.billing-btn.is-active,
.tab-btn.is-active {
    color: #081221;
    border-color: var(--border-gold);
    background: var(--gradient-gold);
}

.btn-whatsapp,
.floating-whatsapp {
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 55%, #86efac 100%);
    box-shadow: 0 18px 44px rgba(34, 197, 94, 0.28);
}

.field-input,
.form-input,
.form-field input,
.form-field select,
.form-field textarea {
    color: var(--text-main);
    border-color: rgba(80, 170, 255, 0.28);
    background: rgba(8, 18, 33, 0.74);
}

.field-input:focus,
.form-input:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(255, 211, 107, 0.7);
    box-shadow: 0 0 0 4px rgba(255, 211, 107, 0.14);
}

/* Logo Visual Adjustments & Sizing Overrides */
.brand img {
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.06));
}

.brand img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.12));
}

/* Header logo specific sizes */
.topbar .brand img {
    height: 72px; /* Increased from 56px */
    max-height: 72px;
}

/* Footer logo specific sizes */
.footer .brand img {
    height: 80px; /* Increased from 56px */
    max-height: 80px;
    margin-bottom: 6px;
}

/* Popup/modal logo sizes */
.modal-logo {
    max-width: 100%;
    height: 96px; /* Increased from 72px */
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
}

/* Blog page / hero logos sizes */
.blog-page-logo,
.blog-hero-logo img {
    max-width: 320px; /* Increased from 220px */
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Ensure the header brand link layout is tight and perfectly aligned */
.topbar .brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .topbar .brand img {
        height: 58px; /* Increased from 48px */
        max-height: 58px;
    }
}

@media (max-width: 768px) {
    .topbar .brand img {
        height: 52px;
        max-height: 52px;
    }
    .footer .brand img {
        height: 70px;
        max-height: 70px;
        margin-inline: auto;
    }
    .footer .brand {
        justify-content: center;
        width: 100%;
    }
}

/* Final header fit polish */
.nav-shell,
.topbar.is-scrolled .nav-shell {
    width: min(calc(100% - 32px), 1280px);
}

.nav-links {
    gap: 2px;
    font-size: 0.88rem;
}

.nav-links a,
.nav-actions .btn {
    white-space: nowrap;
}

.nav-links a {
    padding-inline: 12px;
}

.nav-actions {
    gap: 8px;
}

/* Heading and logo polish */
:root {
    --heading-blue: #2563eb;
    --heading-gold: #d89412;
    --heading-navy: #071833;
    --heading-duo-gradient: linear-gradient(90deg, #2563eb 0%, #2563eb 52%, #d89412 100%);
}

.topbar .brand {
    align-items: center;
}

.topbar .brand img {
    height: 68px;
    max-height: 68px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(37, 99, 235, 0.10));
}

.footer .brand {
    align-items: center;
}

.footer .brand img {
    height: 92px;
    max-height: 92px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: drop-shadow(0 12px 24px rgba(7, 24, 51, 0.10));
}

.modal-header {
    justify-content: center;
}

.modal-logo {
    height: 112px;
    max-height: 112px;
    object-fit: contain;
    margin: 0 auto 18px;
    filter: drop-shadow(0 12px 24px rgba(7, 24, 51, 0.10));
}

.home-hero-title,
.headline,
.page-headline {
    color: transparent;
    background: var(--heading-duo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}

.section-heading h2,
.split-copy h2,
.content-copy h2,
.cta-band h2,
.form-card h2,
.blog-project-form h2,
.automation-panel h2,
.blog-header h1,
.blog-detail-head h1,
.blog-content-section h2,
.related-heading h2 {
    color: transparent;
    background: var(--heading-duo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 24px rgba(37, 99, 235, 0.06);
}

.feature-card h3,
.service-card h3,
.module-card h3,
.pricing-card h3,
.case-card h3,
.platform-card h3,
.app-feature-card h3,
.app-platform-card h3,
.mini-card h3,
.contact-method h3,
.contact-info-card h3,
.console-header h3,
.blog-title,
.timeline-item h3,
.faq-question,
.flow-row strong {
    color: var(--heading-navy);
    background: none;
    -webkit-text-fill-color: currentColor;
    text-shadow: none;
}

.gradient-text,
.link-arrow,
.related-blog-list em {
    color: var(--heading-blue);
    background: none;
    -webkit-text-fill-color: currentColor;
}

@media (max-width: 1024px) {
    .topbar .brand img {
        height: 58px;
        max-height: 58px;
    }
}

@media (max-width: 768px) {
    .topbar .brand img {
        height: 52px;
        max-height: 52px;
    }

    .footer .brand img {
        height: 82px;
        max-height: 82px;
        margin-inline: auto;
    }

    .modal-logo {
        height: 96px;
        max-height: 96px;
        margin-bottom: 16px;
    }
}

/* Reference screenshot palette: premium AI SaaS light theme */
:root {
    --ref-navy: #071833;
    --ref-deep-navy: #0b1633;
    --ref-blue: #2563eb;
    --ref-blue-dark: #1d4ed8;
    --ref-cyan: #06b6d4;
    --ref-purple: #5b5fef;
    --ref-gold: #d89412;
    --ref-gold-light: #f6c45b;
    --ref-cream: #fff8ea;
    --ref-bg: #f8fbff;
    --ref-white: #ffffff;
    --ref-border: #e8edf5;
    --ref-whatsapp: #16a34a;
    --ref-ai-gradient: linear-gradient(90deg, #2563eb, #06b6d4, #5b5fef);
    --ref-gold-gradient: linear-gradient(135deg, #f6c45b, #d89412);
    --ref-headline-gradient: linear-gradient(90deg, #2563eb, #06b6d4, #d89412, #5b5fef);
    --ink: var(--ref-navy);
    --ink-soft: #243452;
    --muted: #64748b;
    --muted-strong: #475569;
    --surface: var(--ref-bg);
    --surface-soft: #eef6ff;
    --surface-violet: #f4f5ff;
    --line: var(--ref-border);
    --line-strong: #d8e2f0;
    --blue: var(--ref-blue);
    --blue-dark: var(--ref-blue-dark);
    --cyan: var(--ref-cyan);
    --indigo: var(--ref-purple);
    --violet: var(--ref-purple);
    --amber: var(--ref-gold);
    --gradient: var(--ref-ai-gradient);
    --gradient-gold: var(--ref-gold-gradient);
    --gradient-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.07), rgba(91, 95, 239, 0.08));
    --shadow-xs: 0 10px 26px rgba(7, 24, 51, 0.05);
    --shadow-sm: 0 18px 46px rgba(7, 24, 51, 0.08);
    --shadow-md: 0 24px 62px rgba(7, 24, 51, 0.1);
    --shadow-lg: 0 32px 90px rgba(7, 24, 51, 0.14);
    --radius-sm: 16px;
    --radius-md: 22px;
    --radius-lg: 28px;
}

body {
    color: var(--ref-navy);
    background:
        radial-gradient(circle at 12% 4%, rgba(37, 99, 235, 0.08), transparent 28%),
        radial-gradient(circle at 86% 6%, rgba(6, 182, 212, 0.07), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 52%, #ffffff 100%);
}

.topbar {
    inset: 16px 0 auto;
    padding-inline: 16px;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

.topbar.is-scrolled {
    background: transparent;
    box-shadow: none;
}

.nav-shell,
.topbar.is-scrolled .nav-shell {
    width: min(calc(100% - 32px), 1280px);
    margin-inline: auto;
    border: 1px solid rgba(232, 237, 245, 0.86);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 46px rgba(7, 24, 51, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.topbar.is-scrolled .nav-shell {
    border-color: rgba(216, 148, 18, 0.22);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 54px rgba(7, 24, 51, 0.1), 0 10px 28px rgba(37, 99, 235, 0.08);
}

.nav-inner {
    width: auto;
    min-height: 74px;
    padding: 9px 12px 9px 18px;
}

.topbar .brand img {
    height: 62px;
    max-height: 62px;
    filter: drop-shadow(0 8px 18px rgba(37, 99, 235, 0.09));
}

.nav-links {
    gap: 5px;
    color: #334155;
}

.nav-links a,
.mobile-links a:not(.btn) {
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--ref-navy);
    font-weight: 850;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-links a:hover,
.mobile-links a.active {
    color: var(--ref-deep-navy);
    border-color: rgba(216, 148, 18, 0.22);
    background: var(--ref-cream);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 10px 24px rgba(216, 148, 18, 0.1);
}

.nav-ai-link {
    color: var(--ref-blue-dark) !important;
    border-color: rgba(91, 95, 239, 0.18);
    background: linear-gradient(135deg, #eef6ff 0%, #f6f7ff 100%);
}

.nav-ai-link .nav-badge,
.popular-badge {
    color: var(--ref-deep-navy);
    background: var(--ref-gold-gradient);
    box-shadow: 0 8px 18px rgba(216, 148, 18, 0.18);
}

.hero,
.page-hero,
.home-hero,
.section-white,
.section-soft,
.section-blue,
.ai-section,
.cta-section,
.blog-main-section,
.blog-detail-hero {
    background:
        radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.08), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(6, 182, 212, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.section-soft,
.section-blue,
.ai-section,
.blog-main-section {
    background:
        radial-gradient(circle at 12% 10%, rgba(91, 95, 239, 0.06), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.home-hero {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.92) 48%, rgba(238, 246, 255, 0.78) 100%),
        url("../../uploads/P1778754121.jpg") center center / cover no-repeat;
}

.hero::before,
.page-hero::before,
.home-hero::before,
.blog-detail-hero::before {
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.04) 1px, transparent 1px);
    opacity: 0.58;
}

.home-hero-title,
.headline,
.page-headline {
    color: transparent;
    background: var(--ref-headline-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 14px 32px rgba(37, 99, 235, 0.08);
}

.section-heading h2,
.split-copy h2,
.content-copy h2,
.cta-band h2,
.form-card h2,
.blog-project-form h2,
.automation-panel h2,
.blog-header h1,
.blog-detail-head h1,
.blog-content-section h2,
.related-heading h2,
.feature-card h3,
.service-card h3,
.module-card h3,
.pricing-card h3,
.case-card h3,
.platform-card h3,
.app-feature-card h3,
.app-platform-card h3,
.mini-card h3,
.contact-method h3,
.contact-info-card h3,
.console-header h3,
.blog-title,
.timeline-item h3,
.faq-question,
.flow-row strong {
    color: var(--ref-navy);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.gradient-text,
.link-arrow,
.related-blog-list em {
    color: transparent;
    background: var(--ref-ai-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.lead,
.section-heading p,
.split-copy p,
.content-copy p,
.automation-panel p,
.feature-card p,
.service-card p,
.module-card p,
.pricing-card p,
.case-card p,
.platform-card p,
.app-feature-card p,
.app-platform-card p,
.mini-card p,
.contact-method p,
.contact-info-card p,
.timeline-item p,
.faq-answer,
.blog-text,
.blog-content-section,
.blog-content-section p,
.form-card p,
.blog-project-form p,
.cta-band p,
.modal-body p,
.modal-secure-note,
.footer p,
.muted-note,
.flow-row span:not(.flow-icon):not(.status-pill),
.dashboard-stats span,
.metric-card span,
.stat-card span,
.price-line span,
.blog-meta,
.blog-card-meta,
.app-floating-card span,
.footer-bottom-links a,
.cta-highlight-card p,
.contact-snapshot p {
    color: #64748b;
}

.eyebrow,
.chip,
.badge,
.tag,
.blog-category {
    color: var(--ref-deep-navy);
    border-color: rgba(216, 148, 18, 0.22);
    background: rgba(255, 248, 234, 0.78);
    box-shadow: 0 10px 24px rgba(7, 24, 51, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.chip-blue,
.chip-cyan,
.chip-violet {
    color: var(--ref-blue-dark);
    border-color: rgba(6, 182, 212, 0.22);
    background: linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);
}

.btn,
.blog-btn,
.blog-submit-btn,
.form-submit,
.btn-submit {
    border-radius: 999px;
    font-weight: 900;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn-primary,
.btn-dark,
.blog-btn,
.blog-submit-btn,
.form-submit,
.btn-submit,
.nav-actions .btn-primary,
.mobile-links .btn-primary,
.cta-band .btn-dark {
    color: #ffffff;
    border: 1px solid rgba(216, 148, 18, 0.16);
    background: var(--ref-gold-gradient);
    box-shadow: 0 12px 32px rgba(216, 148, 18, 0.22);
}

.btn-primary:hover,
.btn-dark:hover,
.blog-btn:hover,
.blog-submit-btn:hover,
.form-submit:hover,
.btn-submit:hover,
.nav-actions .btn-primary:hover,
.mobile-links .btn-primary:hover,
.cta-band .btn-dark:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(216, 148, 18, 0.28);
}

.btn-secondary,
.filter-btn,
.billing-btn,
.tab-btn,
.btn-light {
    color: var(--ref-navy);
    border: 1px solid rgba(232, 237, 245, 0.95);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(7, 24, 51, 0.04);
}

.btn-secondary:hover,
.filter-btn:hover,
.billing-btn:hover,
.tab-btn:hover,
.btn-light:hover {
    color: var(--ref-blue-dark);
    border-color: rgba(37, 99, 235, 0.24);
    background: #eef6ff;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.12);
}

.filter-btn.is-active,
.billing-btn.is-active,
.tab-btn.is-active {
    color: #ffffff;
    border-color: rgba(37, 99, 235, 0.22);
    background: var(--ref-ai-gradient);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.18);
}

.btn-whatsapp,
.floating-whatsapp,
.nav-actions .btn-whatsapp,
.mobile-links .btn-whatsapp {
    color: #ffffff;
    border-color: rgba(22, 163, 74, 0.24);
    background: linear-gradient(135deg, #16a34a 0%, #128c4a 100%);
    box-shadow: 0 14px 34px rgba(22, 163, 74, 0.24);
}

.hero-visual,
.visual-shell,
.dashboard-visual,
.glass-panel,
.ai-panel,
.cta-band,
.browser-card,
.automation-panel,
.feature-card,
.service-card,
.module-card,
.pricing-card,
.case-card,
.contact-method,
.platform-card,
.app-feature-card,
.app-platform-card,
.blog-card,
.mini-card,
.timeline-item,
.faq-item,
.related-blog-list a,
.contact-info-card,
.form-card,
.blog-content-section,
.related-blogs,
.blog-project-form,
.modal-content,
.app-screenshot-card,
.contact-snapshot,
.blog-empty-state,
.blog-detail-shell,
.cta-highlight-card,
.platform-console,
.console-card,
.trust-card,
.comparison-card,
.package-note,
.service-category,
.contact-map-card {
    border: 1px solid rgba(232, 237, 245, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 50px rgba(7, 24, 51, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-visual,
.ai-panel,
.cta-band,
.automation-panel,
.platform-console {
    border-color: rgba(6, 182, 212, 0.18);
    box-shadow: 0 24px 64px rgba(7, 24, 51, 0.1), 0 12px 35px rgba(37, 99, 235, 0.08);
}

.feature-card:hover,
.service-card:hover,
.module-card:hover,
.pricing-card:hover,
.case-card:hover,
.platform-card:hover,
.app-feature-card:hover,
.app-platform-card:hover,
.blog-card:hover,
.mini-card:hover,
.contact-method:hover,
.related-blog-list a:hover,
.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.28);
    box-shadow: 0 28px 70px rgba(7, 24, 51, 0.12), 0 12px 35px rgba(37, 99, 235, 0.1);
}

.feature-card::before,
.service-card::before,
.pricing-card::before,
.platform-card::before,
.app-feature-card::before,
.app-platform-card::before,
.mini-card::before {
    height: 4px;
    background: var(--ref-ai-gradient);
}

.automation-feature-grid span,
.feature-list li,
.check-list li,
.clean-list li,
.ai-list li,
.feature-link,
.dashboard-stats div,
.metric-card,
.stat-card,
.console-card,
.flow-row,
.cta-highlight-card,
.module-options label {
    color: var(--ref-navy);
    border-color: rgba(232, 237, 245, 0.9);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 28px rgba(7, 24, 51, 0.05);
}

.icon-box,
.home-icon-box,
.app-icon-box,
.flow-icon,
.cta-highlight-icon,
.contact-icon,
.footer-badge-icon,
.icon-box.violet,
.app-icon-box.violet,
.icon-box.cyan,
.app-icon-box.cyan,
.icon-box.green,
.app-icon-box.green {
    color: var(--ref-gold);
    background: linear-gradient(135deg, #fff8ea 0%, #eef6ff 100%);
    box-shadow: inset 0 0 0 1px rgba(216, 148, 18, 0.16), 0 12px 26px rgba(37, 99, 235, 0.07);
}

.ai-core,
.review-avatar,
.timeline-marker {
    color: #ffffff;
    background: var(--ref-ai-gradient);
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.18);
}

.browser-top,
.footer-bottom,
.trusted-band,
.trust-band {
    border-color: rgba(232, 237, 245, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.field-input,
.form-input,
.form-field input,
.form-field select,
.form-field textarea {
    color: var(--ref-navy);
    border-color: rgba(232, 237, 245, 0.95);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
}

.field-input:focus,
.form-input:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(6, 182, 212, 0.48);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1), 0 12px 28px rgba(37, 99, 235, 0.08);
}

.modal-content {
    border-color: rgba(232, 237, 245, 0.95);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 34px 90px rgba(7, 24, 51, 0.18);
}

.footer {
    border-top-color: rgba(232, 237, 245, 0.95);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.social-row a:hover {
    color: #ffffff;
    border-color: rgba(37, 99, 235, 0.22);
    background: var(--ref-ai-gradient);
}

@media (max-width: 1160px) {
    .topbar {
        inset: 10px 0 auto;
        padding-inline: 10px;
    }

    .nav-shell,
    .topbar.is-scrolled .nav-shell {
        border-radius: 28px;
    }

    .topbar .menu-toggle {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 20px !important;
        right: clamp(12px, calc(100vw - 378px), 106px) !important;
        z-index: 1000 !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border: 1px solid rgba(37, 99, 235, 0.18) !important;
        color: var(--ref-blue-dark) !important;
        background: rgba(255, 255, 255, 0.9) !important;
        box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12) !important;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .mobile-panel {
        top: 82px;
        border-top: 0;
        background: transparent;
        box-shadow: none;
    }

    .mobile-links {
        border: 1px solid rgba(232, 237, 245, 0.9);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 20px 50px rgba(7, 24, 51, 0.1);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .menu-toggle[data-menu-button] {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 20px !important;
        right: clamp(12px, calc(100vw - 378px), 106px) !important;
        z-index: 2000 !important;
        width: 44px !important;
        height: 44px !important;
        border: 1px solid rgba(37, 99, 235, 0.2) !important;
        color: #1d4ed8 !important;
        background: #eef6ff !important;
        box-shadow: 0 12px 28px rgba(37, 99, 235, 0.14) !important;
    }
}

@media (max-width: 768px) {
    .topbar .brand img {
        height: 52px;
        max-height: 52px;
    }

    .hero,
    .page-hero,
    .home-hero {
        padding-top: 120px;
    }

    .headline,
    .page-headline,
    .home-hero-title {
        max-width: 11.5ch !important;
        -webkit-text-fill-color: transparent;
    }
}

/* Final logo visibility and two-color heading polish */
:root {
    --heading-blue: #2563eb;
    --heading-gold: #d89412;
    --heading-navy: #071833;
    --heading-duo-gradient: linear-gradient(90deg, #2563eb 0%, #2563eb 58%, #d89412 100%);
    --ref-headline-gradient: var(--heading-duo-gradient);
}

.topbar .brand,
.footer .brand {
    align-items: center;
}

.topbar .brand img {
    width: auto;
    height: 66px;
    max-height: 66px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(37, 99, 235, 0.1));
}

.footer .brand img {
    width: auto;
    height: 96px;
    max-height: 96px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: drop-shadow(0 12px 24px rgba(7, 24, 51, 0.1));
}

.modal-header {
    justify-content: center;
}

.modal-logo {
    width: auto;
    height: 112px;
    max-height: 112px;
    object-fit: contain;
    margin: 0 auto 18px;
    filter: drop-shadow(0 14px 28px rgba(7, 24, 51, 0.1));
}

.home-hero-title,
.headline,
.page-headline,
.section-heading h2,
.split-copy h2,
.content-copy h2,
.cta-band h2,
.form-card h2,
.blog-project-form h2,
.automation-panel h2,
.blog-header h1,
.blog-detail-head h1,
.blog-content-section h2,
.related-heading h2 {
    color: transparent;
    background: var(--heading-duo-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 24px rgba(37, 99, 235, 0.07);
}

.gradient-text {
    color: var(--heading-blue);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: currentColor;
}

.feature-card h3,
.service-card h3,
.module-card h3,
.pricing-card h3,
.case-card h3,
.platform-card h3,
.app-feature-card h3,
.app-platform-card h3,
.blog-card h3,
.mini-card h3,
.contact-method h3,
.contact-info-card h3,
.console-header h3,
.blog-title {
    color: var(--heading-navy);
    background: none;
    -webkit-text-fill-color: currentColor;
    text-shadow: none;
}

@media (max-width: 1024px) {
    .topbar .brand img {
        height: 58px;
        max-height: 58px;
    }

    .footer .brand img {
        height: 88px;
        max-height: 88px;
    }
}

@media (max-width: 768px) {
    .topbar .brand img {
        height: 52px;
        max-height: 52px;
    }

    .footer .brand {
        justify-content: center;
        width: 100%;
    }

    .footer .brand img {
        height: 82px;
        max-height: 82px;
        margin-inline: auto;
    }

    .modal-logo {
        height: 96px;
        max-height: 96px;
        margin-bottom: 16px;
    }
}

/* Final header fit polish - keep after reference palette */
.nav-shell,
.topbar.is-scrolled .nav-shell {
    width: min(calc(100% - 32px), 1280px);
}

.nav-links {
    gap: 2px;
    font-size: 0.88rem;
}

.nav-links a,
.nav-actions .btn {
    white-space: nowrap;
}

.nav-links a {
    padding-inline: 12px;
}

.nav-actions {
    gap: 8px;
}

/* Luxury light theme elevation layer */
:root {
    --lux-bg: #f8fafc;
    --lux-white: #ffffff;
    --lux-warm: #fffbf3;
    --lux-section: #f1f5f9;
    --lux-text: #0f172a;
    --lux-muted: #64748b;
    --lux-blue: #2563eb;
    --lux-blue-deep: #1d4ed8;
    --lux-blue-soft: #dbeafe;
    --lux-gold: #f59e0b;
    --lux-gold-deep: #d97706;
    --lux-gold-soft: #fbbf24;
    --lux-highlight: #facc15;
    --lux-border: #e2e8f0;
    --lux-premium-border: rgba(245, 158, 11, 0.25);
    --lux-card-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    --lux-card-shadow-hover: 0 28px 70px rgba(15, 23, 42, 0.12), 0 12px 35px rgba(245, 158, 11, 0.14);
    --lux-blue-glow: 0 12px 35px rgba(37, 99, 235, 0.18);
    --lux-gold-glow: 0 12px 35px rgba(245, 158, 11, 0.22);
    --gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(245, 158, 11, 0.08));
}

body {
    background:
        linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #fffbf3 100%);
}

.topbar {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 243, 0.78));
    border-bottom: 1px solid rgba(226, 232, 240, 0.75);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.topbar.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(245, 158, 11, 0.18);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08), 0 8px 26px rgba(245, 158, 11, 0.08);
}

.topbar .brand img {
    filter: drop-shadow(0 8px 18px rgba(245, 158, 11, 0.14));
}

.nav-links a,
.mobile-links a:not(.btn) {
    font-weight: 850;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-links a:hover,
.mobile-links a.active {
    color: var(--lux-blue-deep);
    border-color: rgba(245, 158, 11, 0.24);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf3 100%);
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.08), 0 10px 24px rgba(245, 158, 11, 0.08);
}

.nav-ai-link {
    color: var(--lux-blue-deep) !important;
    border-color: rgba(245, 158, 11, 0.28);
    background: linear-gradient(135deg, #eff6ff 0%, #fffbf3 100%);
}

.nav-ai-link .nav-badge,
.popular-badge {
    color: #ffffff;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 45%, #d97706 100%);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.22);
}

.hero,
.page-hero,
.home-hero,
.section-white {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 54%, rgba(255, 251, 243, 0.9) 100%);
}

.section-soft,
.section-blue,
.ai-section,
.blog-main-section {
    background:
        linear-gradient(180deg, #f8fafc 0%, #fffbf3 48%, #ffffff 100%);
}

.home-hero {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.92) 46%, rgba(255, 251, 243, 0.84) 100%),
        url("../../uploads/P1778754121.jpg") center center / cover no-repeat;
}

.hero::before,
.page-hero::before,
.home-hero::before,
.blog-detail-hero::before {
    background-image:
        linear-gradient(rgba(245, 158, 11, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    opacity: 0.55;
}

.home-hero-title,
.headline,
.page-headline {
    color: transparent;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 46%, #1d4ed8 78%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0;
}

.section-heading h2,
.split-copy h2,
.content-copy h2,
.cta-band h2,
.form-card h2,
.blog-project-form h2,
.automation-panel h2,
.blog-header h1,
.blog-detail-head h1,
.blog-content-section h2,
.related-heading h2 {
    color: transparent;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 62%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text,
.link-arrow,
.related-blog-list em {
    color: transparent;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.eyebrow,
.chip,
.badge,
.tag,
.blog-category {
    color: var(--lux-blue-deep);
    border-color: rgba(245, 158, 11, 0.22);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05), 0 8px 24px rgba(245, 158, 11, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.chip-blue,
.chip-cyan,
.chip-violet {
    color: var(--lux-blue-deep);
    background: linear-gradient(135deg, #eff6ff 0%, #fffbf3 100%);
    border-color: rgba(245, 158, 11, 0.22);
}

.btn,
.blog-btn,
.blog-submit-btn,
.form-submit,
.btn-submit,
.filter-btn,
.billing-btn,
.tab-btn {
    font-weight: 900;
    box-shadow: none;
}

.btn-primary,
.blog-btn,
.blog-submit-btn,
.form-submit,
.btn-submit,
.nav-actions .btn-primary,
.mobile-links .btn-primary {
    color: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.1);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: var(--lux-blue-glow);
}

.btn-dark,
.cta-band .btn-dark,
.filter-btn.is-active,
.billing-btn.is-active,
.tab-btn.is-active {
    color: #ffffff;
    border-color: rgba(245, 158, 11, 0.34);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: var(--lux-gold-glow);
}

.btn-primary:hover,
.btn-dark:hover,
.blog-btn:hover,
.blog-submit-btn:hover,
.form-submit:hover,
.btn-submit:hover,
.nav-actions .btn-primary:hover,
.mobile-links .btn-primary:hover,
.cta-band .btn-dark:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 44px rgba(37, 99, 235, 0.24), 0 12px 35px rgba(245, 158, 11, 0.12);
}

.btn-secondary,
.filter-btn,
.billing-btn,
.tab-btn,
.btn-light {
    color: #0f172a;
    border-color: rgba(226, 232, 240, 0.86);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.btn-secondary:hover,
.filter-btn:hover,
.billing-btn:hover,
.tab-btn:hover,
.btn-light:hover {
    color: var(--lux-gold-deep);
    border-color: rgba(245, 158, 11, 0.35);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf3 100%);
    box-shadow: 0 14px 34px rgba(245, 158, 11, 0.14);
}

.hero-visual,
.visual-shell,
.dashboard-visual,
.glass-panel,
.ai-panel,
.cta-band,
.browser-card,
.automation-panel,
.feature-card,
.service-card,
.module-card,
.pricing-card,
.case-card,
.contact-method,
.platform-card,
.app-feature-card,
.app-platform-card,
.blog-card,
.mini-card,
.timeline-item,
.faq-item,
.related-blog-list a,
.contact-info-card,
.form-card,
.blog-content-section,
.related-blogs,
.blog-project-form,
.modal-content,
.app-screenshot-card,
.contact-snapshot,
.blog-empty-state,
.blog-detail-shell,
.cta-highlight-card,
.platform-console,
.console-card,
.trust-card,
.comparison-card,
.package-note,
.service-category,
.contact-map-card {
    border-color: rgba(226, 232, 240, 0.78);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 243, 0.58));
    box-shadow: var(--lux-card-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-visual,
.ai-panel,
.cta-band,
.automation-panel,
.platform-console {
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.09), 0 12px 35px rgba(245, 158, 11, 0.08);
}

.feature-card:hover,
.service-card:hover,
.module-card:hover,
.pricing-card:hover,
.case-card:hover,
.platform-card:hover,
.app-feature-card:hover,
.app-platform-card:hover,
.blog-card:hover,
.mini-card:hover,
.contact-method:hover,
.related-blog-list a:hover,
.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: var(--lux-card-shadow-hover);
}

.feature-card::before,
.service-card::before,
.pricing-card::before,
.platform-card::before,
.app-feature-card::before,
.app-platform-card::before,
.mini-card::before {
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 45%, #2563eb 100%);
}

.automation-feature-grid span,
.feature-list li,
.check-list li,
.clean-list li,
.ai-list li,
.feature-link,
.dashboard-stats div,
.metric-card,
.stat-card,
.console-card,
.flow-row,
.cta-highlight-card,
.module-options label {
    border-color: rgba(226, 232, 240, 0.82);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.icon-box,
.home-icon-box,
.app-icon-box,
.flow-icon,
.cta-highlight-icon,
.contact-icon,
.footer-badge-icon,
.icon-box.violet,
.app-icon-box.violet,
.icon-box.cyan,
.app-icon-box.cyan {
    color: var(--lux-blue-deep);
    background: linear-gradient(135deg, #eff6ff 0%, #fffbf3 100%);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.14), 0 10px 26px rgba(37, 99, 235, 0.08);
}

.icon-box.green,
.app-icon-box.green,
.ai-core,
.review-avatar,
.timeline-marker {
    color: #ffffff;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 45%, #d97706 100%);
    box-shadow: var(--lux-gold-glow);
}

.browser-top,
.footer-bottom,
.trusted-band,
.trust-band {
    border-color: rgba(226, 232, 240, 0.82);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf3 100%);
}

.field-input,
.form-input,
.form-field input,
.form-field select,
.form-field textarea {
    border-color: rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.9);
}

.field-input:focus,
.form-input:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(245, 158, 11, 0.52);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12), 0 10px 28px rgba(37, 99, 235, 0.08);
}

.modal-content {
    border-color: rgba(245, 158, 11, 0.26);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 251, 243, 0.9));
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
}

.modal-close:hover {
    color: var(--lux-gold-deep);
    border-color: rgba(245, 158, 11, 0.34);
    background: #fffbf3;
}

.footer {
    background: linear-gradient(180deg, #ffffff 0%, #fffbf3 100%);
}

.social-row a:hover {
    color: #ffffff;
    border-color: rgba(245, 158, 11, 0.28);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: var(--lux-gold-glow);
}

@media (max-width: 768px) {
    .topbar .menu-toggle {
        color: var(--lux-blue-deep) !important;
        background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%) !important;
        border-color: rgba(37, 99, 235, 0.2) !important;
        box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12) !important;
    }

    .home-hero-title,
    .headline,
    .page-headline {
        -webkit-text-fill-color: transparent;
    }
}

@media (max-width: 1160px) {
    .topbar .menu-toggle {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 11px !important;
        right: clamp(12px, calc(100vw - 378px), 106px) !important;
        z-index: 1000 !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border: 1px solid rgba(37, 99, 235, 0.2) !important;
        color: #2563eb !important;
        background: #eff6ff !important;
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12) !important;
    }
}

/* Premium light theme refinement layer */
:root {
    --bg-main: #ffffff;
    --bg-soft: #f8fafc;
    --card-bg: #ffffff;
    --card-bg-soft: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --primary-blue: #2563eb;
    --primary-cyan: #0891b2;
    --accent-gold: #d97706;
    --accent-orange: #ea580c;
    --border-blue: rgba(37, 99, 235, 0.16);
    --border-gold: rgba(217, 119, 6, 0.2);
    --ink: #0f172a;
    --ink-soft: #334155;
    --muted: #64748b;
    --muted-strong: #475569;
    --surface: #f8fafc;
    --surface-soft: #f1f5f9;
    --surface-violet: #f5f3ff;
    --line: #e2e8f0;
    --line-strong: #cbd5e1;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --cyan: #0891b2;
    --indigo: #4f46e5;
    --violet: #7c3aed;
    --pink: #db2777;
    --green: #059669;
    --amber: #d97706;
    --gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 58%, #0891b2 100%);
    --gradient-gold: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    --gradient-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(8, 145, 178, 0.06));
    --shadow-xs: 0 8px 22px rgba(15, 23, 42, 0.05);
    --shadow-sm: 0 16px 42px rgba(15, 23, 42, 0.07);
    --shadow-md: 0 22px 64px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 30px 90px rgba(15, 23, 42, 0.13);
    --radius-sm: 8px;
    --radius-md: 8px;
    --radius-lg: 8px;
}

body {
    color: var(--text-main);
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #ffffff 100%);
    background-attachment: scroll;
    background-size: auto;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.topbar {
    position: fixed;
    inset: 0 0 auto;
    padding-inline: 0;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-shell,
.topbar.is-scrolled .nav-shell {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.nav-inner {
    width: min(100% - 32px, var(--container));
    min-height: 76px;
    margin-inline: auto;
    padding: 8px 0;
}

.topbar.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.topbar .brand img {
    height: 58px;
    max-height: 58px;
    filter: drop-shadow(0 6px 14px rgba(37, 99, 235, 0.08));
}

.nav-links {
    gap: 4px;
    color: var(--muted-strong);
}

.nav-links a,
.mobile-links a:not(.btn) {
    color: inherit;
    border: 1px solid transparent;
    padding: 10px 13px;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-links a:hover,
.mobile-links a.active {
    color: var(--blue);
    border-color: rgba(37, 99, 235, 0.12);
    background: #eff6ff;
    box-shadow: none;
}

.nav-ai-link {
    color: var(--blue) !important;
    border-color: rgba(37, 99, 235, 0.14);
    background: #eff6ff;
    box-shadow: none;
}

.nav-ai-link .nav-badge,
.popular-badge {
    color: #ffffff;
    background: var(--gradient);
}

.menu-toggle {
    color: var(--ink);
    border-color: var(--line);
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.mobile-panel {
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.1);
}

.mobile-links {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.mobile-links a:not(.btn) {
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
}

.hero,
.page-hero,
.home-hero,
.section-white,
.section-soft,
.section-blue,
.ai-section,
.cta-section,
.blog-main-section,
.blog-detail-hero,
.footer {
    color: var(--ink);
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-soft,
.section-blue,
.ai-section,
.blog-main-section {
    background:
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero,
.page-hero,
.home-hero {
    padding-top: 144px;
}

.home-hero {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.9) 48%, rgba(239, 246, 255, 0.78) 100%),
        url("../../uploads/P1778754121.jpg") center center / cover no-repeat;
}

.hero::before,
.page-hero::before,
.home-hero::before,
.blog-detail-hero::before {
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
    opacity: 0.5;
}

.home-hero-title,
.headline,
.page-headline {
    color: var(--ink);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: currentColor;
    text-shadow: none;
}

.gradient-text {
    color: var(--blue);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.section-heading h2,
.split-copy h2,
.content-copy h2,
.cta-band h2,
.form-card h2,
.blog-project-form h2,
.automation-panel h2,
.blog-header h1,
.blog-detail-head h1,
.blog-content-section h2,
.related-heading h2,
.feature-card h3,
.service-card h3,
.module-card h3,
.pricing-card h3,
.case-card h3,
.platform-card h3,
.app-feature-card h3,
.app-platform-card h3,
.mini-card h3,
.contact-method h3,
.contact-info-card h3,
.console-header h3,
.blog-title,
.timeline-item h3,
.faq-question,
.flow-row strong {
    color: var(--ink);
}

.lead,
.section-heading p,
.split-copy p,
.content-copy p,
.automation-panel p,
.feature-card p,
.service-card p,
.module-card p,
.pricing-card p,
.case-card p,
.platform-card p,
.app-feature-card p,
.app-platform-card p,
.mini-card p,
.contact-method p,
.contact-info-card p,
.timeline-item p,
.faq-answer,
.blog-text,
.blog-content-section,
.blog-content-section p,
.form-card p,
.blog-project-form p,
.cta-band p,
.modal-body p,
.modal-secure-note,
.footer p,
.muted-note,
.flow-row span:not(.flow-icon):not(.status-pill),
.dashboard-stats span,
.metric-card span,
.stat-card span,
.price-line span,
.blog-meta,
.blog-card-meta,
.app-floating-card span,
.footer-bottom-links a,
.cta-highlight-card p,
.contact-snapshot p {
    color: var(--muted);
}

.eyebrow,
.chip,
.badge,
.tag,
.blog-category {
    color: var(--blue);
    border-color: rgba(37, 99, 235, 0.14);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.06);
}

.chip-blue,
.chip-cyan,
.chip-violet {
    color: var(--blue);
    background: #eff6ff;
    border-color: #bfdbfe;
}

.chip-green,
.status-pill {
    color: var(--green);
    background: #ecfdf5;
    border-color: #bbf7d0;
}

.btn,
.blog-btn,
.blog-submit-btn,
.form-submit,
.btn-submit {
    border-radius: 8px;
    min-height: 46px;
    padding: 12px 18px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn-primary,
.btn-dark,
.blog-btn,
.blog-submit-btn,
.form-submit,
.btn-submit,
.nav-actions .btn-primary,
.mobile-links .btn-primary,
.cta-band .btn-dark {
    color: #ffffff;
    background: var(--gradient);
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover,
.btn-dark:hover,
.blog-btn:hover,
.blog-submit-btn:hover,
.form-submit:hover,
.btn-submit:hover,
.nav-actions .btn-primary:hover,
.mobile-links .btn-primary:hover,
.cta-band .btn-dark:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 58%, #0e7490 100%);
    box-shadow: 0 18px 44px rgba(37, 99, 235, 0.24);
}

.btn-secondary,
.filter-btn,
.billing-btn,
.tab-btn,
.btn-light {
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover,
.filter-btn:hover,
.billing-btn:hover,
.tab-btn:hover,
.btn-light:hover {
    color: var(--blue);
    border-color: rgba(37, 99, 235, 0.22);
    background: #eff6ff;
}

.filter-btn.is-active,
.billing-btn.is-active,
.tab-btn.is-active {
    color: #ffffff;
    border-color: var(--blue);
    background: var(--gradient);
}

.btn-whatsapp,
.floating-whatsapp {
    color: #ffffff;
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
    box-shadow: 0 14px 34px rgba(22, 163, 74, 0.2);
}

.hero-visual,
.visual-shell,
.dashboard-visual,
.glass-panel,
.ai-panel,
.cta-band,
.browser-card,
.automation-panel,
.feature-card,
.service-card,
.module-card,
.pricing-card,
.case-card,
.contact-method,
.platform-card,
.app-feature-card,
.app-platform-card,
.blog-card,
.mini-card,
.timeline-item,
.faq-item,
.related-blog-list a,
.contact-info-card,
.form-card,
.blog-content-section,
.related-blogs,
.blog-project-form,
.modal-content,
.app-screenshot-card,
.contact-snapshot,
.blog-empty-state,
.blog-detail-shell,
.cta-highlight-card,
.platform-console,
.console-card,
.trust-card,
.comparison-card,
.package-note,
.service-category,
.contact-map-card {
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-xs);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-visual,
.ai-panel,
.cta-band,
.automation-panel,
.platform-console {
    border-color: rgba(203, 213, 225, 0.9);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover,
.service-card:hover,
.module-card:hover,
.pricing-card:hover,
.case-card:hover,
.platform-card:hover,
.app-feature-card:hover,
.app-platform-card:hover,
.blog-card:hover,
.mini-card:hover,
.contact-method:hover,
.related-blog-list a:hover,
.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow: var(--shadow-md);
}

.feature-card::before,
.service-card::before,
.pricing-card::before,
.platform-card::before,
.app-feature-card::before,
.app-platform-card::before,
.mini-card::before {
    height: 3px;
    background: var(--gradient);
}

.automation-feature-grid span,
.feature-list li,
.check-list li,
.clean-list li,
.ai-list li,
.feature-link,
.dashboard-stats div,
.metric-card,
.stat-card,
.console-card,
.flow-row,
.cta-highlight-card,
.module-options label {
    color: var(--ink-soft);
    border-color: var(--line);
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.icon-box,
.home-icon-box,
.app-icon-box,
.flow-icon,
.cta-highlight-icon,
.contact-icon,
.footer-badge-icon,
.icon-box.violet,
.app-icon-box.violet,
.icon-box.cyan,
.app-icon-box.cyan {
    color: var(--blue);
    background: #eff6ff;
    box-shadow: inset 0 0 0 1px #bfdbfe;
}

.icon-box.green,
.app-icon-box.green {
    color: var(--green);
    background: #ecfdf5;
    box-shadow: inset 0 0 0 1px #bbf7d0;
}

.ai-core,
.review-avatar,
.timeline-marker {
    color: #ffffff;
    background: var(--gradient);
    box-shadow: 0 20px 46px rgba(37, 99, 235, 0.18);
}

.ai-core span {
    color: rgba(255, 255, 255, 0.88);
}

.ai-floating-card,
.app-floating-card {
    color: var(--ink);
    border-color: var(--line);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.ai-floating-card strong,
.app-floating-card strong,
.dashboard-stats strong,
.metric-card strong,
.stat-card strong,
.price-line strong {
    color: var(--ink);
}

.browser-top,
.footer-bottom,
.trusted-band,
.trust-band {
    border-color: var(--line);
    background: #f8fafc;
}

.browser-title,
.app-screenshot-card figcaption,
.related-blog-list strong,
.form-field label,
.field-label,
.form-group label,
.footer h4 {
    color: var(--ink);
}

.dashboard-preview img,
.visual-shell img,
.image-card img,
.app-screenshot-card img,
.blog-image-wrap,
.blog-image-placeholder,
.related-image-placeholder,
.social-icon-badge,
.image-card,
.dashboard-preview,
.platform-console::before {
    border-color: var(--line);
    background: #f1f5f9;
    filter: saturate(1.02) contrast(1.01);
}

.field-input,
.form-input,
.form-field input,
.form-field select,
.form-field textarea {
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.field-input::placeholder,
.form-input::placeholder,
.form-field textarea::placeholder {
    color: #94a3b8;
}

.field-input:focus,
.form-input:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(37, 99, 235, 0.48);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.footer {
    color: var(--muted);
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.footer h4,
.footer-links a,
.footer-bottom {
    color: var(--muted);
}

.footer-links a:hover,
.footer-bottom-links a:hover,
.link-arrow,
.related-blog-list em {
    color: var(--blue);
}

.social-row a {
    color: var(--blue);
    border-color: var(--line);
    background: #ffffff;
}

.modal-overlay {
    background: rgba(15, 23, 42, 0.36);
}

.modal-close {
    color: var(--ink);
    border-color: var(--line);
    background: #ffffff;
}

.alert,
.premium-alert,
.blog-form-success {
    color: #166534;
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.alert-danger {
    color: #be123c;
    border-color: #fecdd3;
    background: #fff1f2;
}

.blog-breadcrumb {
    color: var(--blue);
    border-color: rgba(37, 99, 235, 0.16);
    background: #eff6ff;
}

.blog-breadcrumb:hover {
    color: var(--blue-dark);
}

.phone-frame {
    border-color: #e2e8f0;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
}

.section {
    padding: 92px 0;
}

.card-grid,
.feature-grid,
.service-grid,
.pricing-grid,
.blog-grid,
.contact-methods,
.platform-grid,
.app-feature-grid,
.app-platform-grid,
.comparison-grid {
    gap: 22px;
}

.feature-card,
.service-card,
.module-card,
.pricing-card,
.case-card,
.platform-card,
.app-feature-card,
.app-platform-card,
.mini-card,
.contact-method,
.contact-info-card {
    padding: 26px;
}

@media (max-width: 1024px) {
    .nav-inner {
        min-height: 70px;
    }

    .mobile-panel {
        top: 70px;
    }

    .hero,
    .page-hero,
    .home-hero {
        padding-top: 124px;
    }
}

@media (max-width: 768px) {
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .nav-inner {
        position: relative;
        width: min(100% - 24px, var(--container));
        min-height: 66px;
        gap: 12px;
        padding-right: 56px;
    }

    .topbar .brand img {
        height: 46px;
        max-height: 46px;
    }

    .mobile-panel {
        top: 66px;
    }

    .menu-toggle {
        display: inline-flex !important;
        position: fixed;
        top: 11px;
        right: clamp(12px, calc(100vw - 378px), 106px);
        z-index: 100;
        min-width: 44px;
        flex: 0 0 44px;
        border-color: rgba(37, 99, 235, 0.18);
        color: var(--blue);
        background: #eff6ff;
    }

    .hero,
    .page-hero,
    .home-hero {
        padding-top: 104px;
    }

    .home-hero-grid,
    .hero-grid,
    .platform-hero-grid,
    .mobile-hero-grid,
    .contact-hero .hero-grid {
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        gap: 28px;
    }

    .home-hero .reveal,
    .hero .reveal,
    .home-hero-grid > *,
    .hero-grid > *,
    .platform-hero-grid > *,
    .mobile-hero-grid > *,
    .contact-hero .hero-grid > * {
        width: calc(100vw - 24px) !important;
        max-width: calc(100vw - 24px) !important;
        min-width: 0 !important;
    }

    .headline,
    .page-headline,
    .home-hero-title {
        width: auto !important;
        max-width: 10.8ch !important;
        font-size: 2.1rem;
        line-height: 1.08;
        white-space: normal !important;
        text-wrap: wrap;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .lead {
        width: auto !important;
        max-width: 34ch !important;
        font-size: 0.95rem;
        line-height: 1.68;
        white-space: normal !important;
        text-wrap: wrap;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .hero-actions,
    .section-actions {
        width: 100%;
    }

    .section {
        padding: 68px 0;
    }

    .feature-card,
    .service-card,
    .module-card,
    .pricing-card,
    .case-card,
    .platform-card,
    .app-feature-card,
    .app-platform-card,
    .mini-card,
    .contact-method,
    .contact-info-card {
        padding: 22px;
    }
}

/* Final reference palette override - keep this at EOF */
:root {
    --ref-navy: #071833;
    --ref-deep-navy: #0b1633;
    --ref-blue: #2563eb;
    --ref-blue-dark: #1d4ed8;
    --ref-cyan: #06b6d4;
    --ref-purple: #5b5fef;
    --ref-gold: #d89412;
    --ref-gold-light: #f6c45b;
    --ref-cream: #fff8ea;
    --ref-bg: #f8fbff;
    --ref-white: #ffffff;
    --ref-border: #e8edf5;
    --ref-whatsapp: #16a34a;
    --ref-ai-gradient: linear-gradient(90deg, #2563eb, #06b6d4, #5b5fef);
    --ref-gold-gradient: linear-gradient(135deg, #f6c45b, #d89412);
    --ref-headline-gradient: linear-gradient(90deg, #2563eb 0%, #2563eb 58%, #d89412 100%);
    --ink: var(--ref-navy);
    --ink-soft: #243452;
    --muted: #64748b;
    --muted-strong: #475569;
    --surface: var(--ref-bg);
    --surface-soft: #eef6ff;
    --surface-violet: #f4f5ff;
    --line: var(--ref-border);
    --line-strong: #d8e2f0;
    --blue: var(--ref-blue);
    --blue-dark: var(--ref-blue-dark);
    --cyan: var(--ref-cyan);
    --indigo: var(--ref-purple);
    --violet: var(--ref-purple);
    --amber: var(--ref-gold);
    --gradient: var(--ref-ai-gradient);
    --gradient-gold: var(--ref-gold-gradient);
    --shadow-xs: 0 10px 26px rgba(7, 24, 51, 0.05);
    --shadow-sm: 0 18px 46px rgba(7, 24, 51, 0.08);
    --shadow-md: 0 24px 62px rgba(7, 24, 51, 0.1);
    --shadow-lg: 0 32px 90px rgba(7, 24, 51, 0.14);
    --radius-sm: 16px;
    --radius-md: 22px;
    --radius-lg: 28px;
}

body {
    color: var(--ref-navy);
    background:
        radial-gradient(circle at 12% 4%, rgba(37, 99, 235, 0.08), transparent 28%),
        radial-gradient(circle at 86% 6%, rgba(6, 182, 212, 0.07), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 52%, #ffffff 100%);
}

.topbar,
.topbar.is-scrolled {
    inset: 16px 0 auto;
    padding-inline: 16px;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

.nav-shell,
.topbar.is-scrolled .nav-shell {
    width: min(calc(100% - 32px), 1280px);
    margin-inline: auto;
    border: 1px solid rgba(232, 237, 245, 0.86);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 46px rgba(7, 24, 51, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.topbar.is-scrolled .nav-shell {
    border-color: rgba(216, 148, 18, 0.22);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 54px rgba(7, 24, 51, 0.1), 0 10px 28px rgba(37, 99, 235, 0.08);
}

.nav-inner {
    width: auto;
    min-height: 74px;
    padding: 9px 12px 9px 18px;
}

.topbar .brand img {
    display: block;
    width: 210px;
    height: 86px;
    max-width: 210px;
    max-height: 86px;
    object-fit: contain;
    object-position: left center;
    image-rendering: auto;
    backface-visibility: hidden;
    filter: drop-shadow(0 8px 18px rgba(37, 99, 235, 0.09));
}

.nav-links {
    gap: 2px;
    font-size: 0.88rem;
}

.nav-links a,
.mobile-links a:not(.btn) {
    color: var(--ref-navy);
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 850;
    white-space: nowrap;
}

.nav-links a {
    padding-inline: 12px;
}

.nav-actions {
    gap: 8px;
}

.nav-actions .btn {
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-links a:hover,
.mobile-links a.active {
    color: var(--ref-deep-navy);
    border-color: rgba(216, 148, 18, 0.22);
    background: var(--ref-cream);
    box-shadow: 0 10px 24px rgba(216, 148, 18, 0.1);
}

.nav-ai-link {
    color: var(--ref-blue-dark) !important;
    border-color: rgba(91, 95, 239, 0.18);
    background: linear-gradient(135deg, #eef6ff 0%, #f6f7ff 100%);
}

.nav-ai-link .nav-badge,
.popular-badge {
    color: var(--ref-deep-navy);
    background: var(--ref-gold-gradient);
    box-shadow: 0 8px 18px rgba(216, 148, 18, 0.18);
}

.hero,
.page-hero,
.home-hero,
.section-white,
.section-soft,
.section-blue,
.ai-section,
.cta-section,
.blog-main-section,
.blog-detail-hero {
    background:
        radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.08), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(6, 182, 212, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.home-hero {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.92) 48%, rgba(238, 246, 255, 0.78) 100%),
        url("../../uploads/P1778754121.jpg") center center / cover no-repeat;
}

.hero::before,
.page-hero::before,
.home-hero::before,
.blog-detail-hero::before {
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.04) 1px, transparent 1px);
    opacity: 0.58;
}

.home-hero-title,
.headline,
.page-headline {
    color: transparent;
    background: var(--ref-headline-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 14px 32px rgba(37, 99, 235, 0.08);
}

.section-heading h2,
.split-copy h2,
.content-copy h2,
.cta-band h2,
.form-card h2,
.blog-project-form h2,
.automation-panel h2,
.blog-header h1,
.blog-detail-head h1,
.blog-content-section h2,
.related-heading h2,
.feature-card h3,
.service-card h3,
.module-card h3,
.pricing-card h3,
.case-card h3,
.platform-card h3,
.app-feature-card h3,
.app-platform-card h3,
.mini-card h3,
.contact-method h3,
.contact-info-card h3,
.console-header h3,
.blog-title,
.timeline-item h3,
.faq-question,
.flow-row strong {
    color: var(--ref-navy);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.gradient-text,
.link-arrow,
.related-blog-list em {
    color: transparent;
    background: var(--ref-ai-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-heading h2,
.split-copy h2,
.content-copy h2,
.cta-band h2,
.form-card h2,
.blog-project-form h2,
.automation-panel h2,
.blog-header h1,
.blog-detail-head h1,
.blog-content-section h2,
.related-heading h2 {
    color: transparent;
    background: var(--ref-headline-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 24px rgba(37, 99, 235, 0.07);
}

.gradient-text {
    color: var(--ref-blue);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: currentColor;
}

.eyebrow,
.chip,
.badge,
.tag,
.blog-category {
    color: var(--ref-deep-navy);
    border-color: rgba(216, 148, 18, 0.22);
    background: rgba(255, 248, 234, 0.78);
    box-shadow: 0 10px 24px rgba(7, 24, 51, 0.05);
}

.chip-blue,
.chip-cyan,
.chip-violet {
    color: var(--ref-blue-dark);
    border-color: rgba(6, 182, 212, 0.22);
    background: linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);
}

.btn,
.blog-btn,
.blog-submit-btn,
.form-submit,
.btn-submit {
    border-radius: 999px;
    font-weight: 900;
}

.btn-primary,
.btn-dark,
.blog-btn,
.blog-submit-btn,
.form-submit,
.btn-submit,
.nav-actions .btn-primary,
.mobile-links .btn-primary,
.cta-band .btn-dark {
    color: #ffffff;
    border: 1px solid rgba(216, 148, 18, 0.16);
    background: var(--ref-gold-gradient);
    box-shadow: 0 12px 32px rgba(216, 148, 18, 0.22);
}

.btn-primary:hover,
.btn-dark:hover,
.blog-btn:hover,
.blog-submit-btn:hover,
.form-submit:hover,
.btn-submit:hover,
.nav-actions .btn-primary:hover,
.mobile-links .btn-primary:hover,
.cta-band .btn-dark:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(216, 148, 18, 0.28);
}

.btn-secondary,
.filter-btn,
.billing-btn,
.tab-btn,
.btn-light {
    color: var(--ref-navy);
    border: 1px solid rgba(232, 237, 245, 0.95);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(7, 24, 51, 0.04);
}

.btn-secondary:hover,
.filter-btn:hover,
.billing-btn:hover,
.tab-btn:hover,
.btn-light:hover {
    color: var(--ref-blue-dark);
    border-color: rgba(37, 99, 235, 0.24);
    background: #eef6ff;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.12);
}

.filter-btn.is-active,
.billing-btn.is-active,
.tab-btn.is-active {
    color: #ffffff;
    border-color: rgba(37, 99, 235, 0.22);
    background: var(--ref-ai-gradient);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.18);
}

.btn-whatsapp,
.floating-whatsapp,
.nav-actions .btn-whatsapp,
.mobile-links .btn-whatsapp {
    color: #ffffff;
    border-color: rgba(22, 163, 74, 0.24);
    background: linear-gradient(135deg, #16a34a 0%, #128c4a 100%);
    box-shadow: 0 14px 34px rgba(22, 163, 74, 0.24);
}

.hero-visual,
.visual-shell,
.dashboard-visual,
.glass-panel,
.ai-panel,
.cta-band,
.browser-card,
.automation-panel,
.feature-card,
.service-card,
.module-card,
.pricing-card,
.case-card,
.contact-method,
.platform-card,
.app-feature-card,
.app-platform-card,
.blog-card,
.mini-card,
.timeline-item,
.faq-item,
.related-blog-list a,
.contact-info-card,
.form-card,
.blog-content-section,
.related-blogs,
.blog-project-form,
.modal-content,
.app-screenshot-card,
.contact-snapshot,
.blog-empty-state,
.blog-detail-shell,
.cta-highlight-card,
.platform-console,
.console-card,
.trust-card,
.comparison-card,
.package-note,
.service-category,
.contact-map-card {
    border: 1px solid rgba(232, 237, 245, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 50px rgba(7, 24, 51, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-visual,
.ai-panel,
.cta-band,
.automation-panel,
.platform-console {
    border-color: rgba(6, 182, 212, 0.18);
    box-shadow: 0 24px 64px rgba(7, 24, 51, 0.1), 0 12px 35px rgba(37, 99, 235, 0.08);
}

.feature-card:hover,
.service-card:hover,
.module-card:hover,
.pricing-card:hover,
.case-card:hover,
.platform-card:hover,
.app-feature-card:hover,
.app-platform-card:hover,
.blog-card:hover,
.mini-card:hover,
.contact-method:hover,
.related-blog-list a:hover,
.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.28);
    box-shadow: 0 28px 70px rgba(7, 24, 51, 0.12), 0 12px 35px rgba(37, 99, 235, 0.1);
}

.feature-card::before,
.service-card::before,
.pricing-card::before,
.platform-card::before,
.app-feature-card::before,
.app-platform-card::before,
.mini-card::before {
    height: 4px;
    background: var(--ref-ai-gradient);
}

.automation-feature-grid span,
.feature-list li,
.check-list li,
.clean-list li,
.ai-list li,
.feature-link,
.dashboard-stats div,
.metric-card,
.stat-card,
.console-card,
.flow-row,
.cta-highlight-card,
.module-options label {
    color: var(--ref-navy);
    border-color: rgba(232, 237, 245, 0.9);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 28px rgba(7, 24, 51, 0.05);
}

.icon-box,
.home-icon-box,
.app-icon-box,
.flow-icon,
.cta-highlight-icon,
.contact-icon,
.footer-badge-icon,
.icon-box.violet,
.app-icon-box.violet,
.icon-box.cyan,
.app-icon-box.cyan,
.icon-box.green,
.app-icon-box.green {
    color: var(--ref-gold);
    background: linear-gradient(135deg, #fff8ea 0%, #eef6ff 100%);
    box-shadow: inset 0 0 0 1px rgba(216, 148, 18, 0.16), 0 12px 26px rgba(37, 99, 235, 0.07);
}

.ai-core,
.review-avatar,
.timeline-marker {
    color: #ffffff;
    background: var(--ref-ai-gradient);
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.18);
}

.browser-top,
.footer-bottom,
.trusted-band,
.trust-band {
    border-color: rgba(232, 237, 245, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.field-input,
.form-input,
.form-field input,
.form-field select,
.form-field textarea {
    color: var(--ref-navy);
    border-color: rgba(232, 237, 245, 0.95);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
}

.field-input:focus,
.form-input:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(6, 182, 212, 0.48);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1), 0 12px 28px rgba(37, 99, 235, 0.08);
}

.footer {
    border-top-color: rgba(232, 237, 245, 0.95);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

@media (max-width: 1160px) {
    .topbar {
        inset: 10px 0 auto;
        padding-inline: 10px;
    }

    .nav-shell,
    .topbar.is-scrolled .nav-shell {
        border-radius: 28px;
    }

    .topbar .menu-toggle {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 20px !important;
        right: clamp(12px, calc(100vw - 378px), 106px) !important;
        z-index: 1000 !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border: 1px solid rgba(37, 99, 235, 0.18) !important;
        color: var(--ref-blue-dark) !important;
        background: rgba(255, 255, 255, 0.9) !important;
        box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12) !important;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .menu-toggle[data-menu-button] {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 20px !important;
        right: clamp(12px, calc(100vw - 378px), 106px) !important;
        z-index: 2000 !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border: 1px solid rgba(37, 99, 235, 0.2) !important;
        color: #1d4ed8 !important;
        background: #eef6ff !important;
        box-shadow: 0 12px 28px rgba(37, 99, 235, 0.14) !important;
    }

    .topbar .brand img {
        width: 166px;
        height: 68px;
        max-width: 166px;
        max-height: 68px;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .topbar .brand img {
        width: 132px;
        height: 56px;
        max-width: 132px;
        max-height: 56px;
        object-fit: contain;
    }

    .hero,
    .page-hero,
    .home-hero {
        padding-top: 120px;
    }

    .headline,
    .page-headline,
    .home-hero-title {
        max-width: 11.5ch !important;
        -webkit-text-fill-color: transparent;
    }
}

.topbar .nav-actions a[href$="#consultation"].btn-primary,
.topbar .mobile-panel a[href$="#consultation"].btn-primary {
    display: none !important;
}

/* Final responsive alignment polish */
.topbar .nav-actions {
    margin-left: auto;
    justify-content: flex-end;
}

.topbar .nav-actions .btn-whatsapp {
    margin-left: 8px;
}

.home-hero-grid,
.hero-grid,
.platform-hero-grid,
.mobile-hero-grid,
.contact-hero .hero-grid,
.split,
.cta-grid,
.contact-grid,
.platform-showcase,
.console-grid,
.card-grid,
.feature-grid,
.service-grid,
.pricing-grid,
.blog-grid,
.contact-methods,
.platform-grid,
.app-feature-grid,
.app-platform-grid,
.comparison-grid,
.contact-info-grid,
.related-blog-list,
.app-screenshot-grid,
.dashboard-stats,
.metric-grid,
.stat-grid,
.form-row,
.blog-form-grid,
.footer-grid {
    min-width: 0;
}

.feature-card,
.service-card,
.module-card,
.pricing-card,
.case-card,
.platform-card,
.app-feature-card,
.app-platform-card,
.blog-card,
.mini-card,
.contact-method,
.contact-info-card,
.form-card,
.blog-project-form,
.automation-panel,
.ai-panel,
.cta-band,
.related-blogs,
.blog-content-section,
.blog-detail-shell,
.contact-snapshot,
.platform-console,
.console-card,
.trust-card,
.comparison-card,
.package-note,
.service-category,
.contact-map-card {
    max-width: 100%;
    min-width: 0;
}

@media (max-width: 1160px) {
    .topbar .nav-actions {
        display: none;
    }

    .mobile-panel {
        width: min(calc(100vw - 24px), 380px);
        max-width: calc(100vw - 24px);
        right: 12px;
        left: auto;
    }

    .mobile-links .btn-whatsapp {
        align-self: flex-end;
        width: auto;
        max-width: 100%;
        justify-content: center;
        padding-inline: 18px;
    }
}

@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container,
    .nav-inner {
        width: min(100% - 24px, var(--container)) !important;
        max-width: calc(100vw - 24px) !important;
    }

    .home-hero-grid,
    .hero-grid,
    .platform-hero-grid,
    .mobile-hero-grid,
    .contact-hero .hero-grid,
    .split,
    .cta-grid,
    .contact-grid,
    .platform-showcase,
    .console-grid,
    .ai-panel {
        width: 100% !important;
        max-width: 100% !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 24px;
    }

    .home-hero-grid > *,
    .hero-grid > *,
    .platform-hero-grid > *,
    .mobile-hero-grid > *,
    .contact-hero .hero-grid > *,
    .split > *,
    .cta-grid > *,
    .contact-grid > *,
    .platform-showcase > *,
    .console-grid > *,
    .ai-panel > * {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .card-grid,
    .feature-grid,
    .service-grid,
    .pricing-grid,
    .blog-grid,
    .contact-methods,
    .platform-grid,
    .app-feature-grid,
    .app-platform-grid,
    .comparison-grid,
    .card-grid.four,
    .feature-grid.four,
    .service-grid.four,
    .platform-grid.four,
    .comparison-grid.four,
    .contact-info-grid,
    .related-blog-list,
    .app-screenshot-grid,
    .dashboard-stats,
    .metric-grid,
    .stat-grid,
    .feature-list.two,
    .check-list.two,
    .clean-list.two,
    .ai-list.two,
    .form-row,
    .blog-form-grid,
    .footer-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .feature-card,
    .service-card,
    .module-card,
    .pricing-card,
    .case-card,
    .platform-card,
    .app-feature-card,
    .app-platform-card,
    .blog-card,
    .mini-card,
    .contact-method,
    .contact-info-card,
    .form-card,
    .blog-project-form,
    .automation-panel,
    .ai-panel,
    .cta-band,
    .related-blogs,
    .blog-content-section,
    .blog-detail-shell,
    .contact-snapshot,
    .platform-console,
    .console-card,
    .trust-card,
    .comparison-card,
    .package-note,
    .service-category,
    .contact-map-card {
        width: 100%;
        max-width: 100%;
    }

    .hero-actions,
    .section-actions,
    .cta-actions {
        width: 100%;
        align-items: stretch;
    }

    .hero-actions .btn,
    .section-actions .btn,
    .cta-actions .btn,
    .form-submit,
    .btn-submit {
        width: 100%;
        max-width: 100%;
    }

    img,
    video,
    canvas,
    iframe {
        max-width: 100%;
    }
}

/* Header WhatsApp spacing polish */
.topbar .nav-actions .btn-whatsapp {
    align-self: center;
    flex: 0 0 auto;
    min-height: 38px;
    margin-left: 0;
    padding: 12px 12px;
    gap: 7px;
    line-height: 1;
    margin-right: 30px;
}

.topbar .nav-actions .btn-whatsapp .ui-icon,
.mobile-links .btn-whatsapp .ui-icon {
    width: 17px;
    height: 17px;
    margin: 0;
}

@media (max-width: 1160px) {
    .mobile-links .btn-whatsapp {
        width: fit-content;
        justify-self: end;
        min-height: 42px;
        padding: 10px 14px;
        gap: 8px;
        line-height: 1;
    }
}

/* Services card media */
.service-card {
    display: flex;
    flex-direction: column;
}

.service-card-media {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: clamp(104px, 9vw, 132px);
    margin-bottom: 18px;
    padding: 10px;
    border: 1px solid rgba(232, 237, 245, 0.9);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
    overflow: hidden;
}

.service-card-media img {
    position: absolute;
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: contain;
    object-position: center;
}

.service-card .tag-row {
    margin-top: auto;
    padding-top: 18px;
}

@media (max-width: 768px) {
    .service-card-media {
        height: 104px;
        margin-bottom: 16px;
        border-radius: 16px;
    }
}

/* Premium Footer Social Media Icons Styling */
.footer .social-row {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    align-items: center;
}

.footer .social-row a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid rgba(37, 99, 235, 0.12) !important;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03), inset 0 2px 4px rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
}

.footer .social-row a svg {
    width: 20px !important;
    height: 20px !important;
    transition: all 0.3s ease !important;
}

/* Official Brand Colors */
/* LinkedIn */
.footer .social-row a[aria-label="LinkedIn"] {
    color: #0a66c2 !important;
    border-color: rgba(10, 102, 194, 0.15) !important;
}
.footer .social-row a[aria-label="LinkedIn"]:hover {
    background: #0a66c2 !important;
    color: #ffffff !important;
    border-color: #0a66c2 !important;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.28) !important;
}

/* X (Twitter) */
.footer .social-row a[aria-label="X"] {
    color: #0f1419 !important;
    border-color: rgba(15, 20, 25, 0.15) !important;
}
.footer .social-row a[aria-label="X"]:hover {
    background: #0f1419 !important;
    color: #ffffff !important;
    border-color: #0f1419 !important;
    box-shadow: 0 8px 20px rgba(15, 20, 25, 0.28) !important;
}

/* Facebook */
.footer .social-row a[aria-label="Facebook"] {
    color: #1877f2 !important;
    border-color: rgba(24, 119, 242, 0.15) !important;
}
.footer .social-row a[aria-label="Facebook"]:hover {
    background: #1877f2 !important;
    color: #ffffff !important;
    border-color: #1877f2 !important;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.28) !important;
}

/* YouTube */
.footer .social-row a[aria-label="YouTube"] {
    color: #ff0000 !important;
    border-color: rgba(255, 0, 0, 0.15) !important;
}
.footer .social-row a[aria-label="YouTube"]:hover {
    background: #ff0000 !important;
    color: #ffffff !important;
    border-color: #ff0000 !important;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.28) !important;
}

/* Instagram */
.footer .social-row a[aria-label="Instagram"] {
    color: #e1306c !important;
    border-color: rgba(225, 48, 108, 0.15) !important;
}
.footer .social-row a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.28) !important;
}

.footer .social-row a:hover {
    transform: translateY(-4px) scale(1.05) !important;
}

.footer .social-row a:hover svg {
    transform: scale(1.1) !important;
}

@media (max-width: 768px) {
    .footer .social-row {
        justify-content: center !important;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS AND ALIGNMENT OVERRIDES BY ANTIGRAVITY
   ========================================================================== */

/* Prevent horizontal scroll globally */
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Ensure all images and structural elements behave nicely inside layout */
img, video, iframe, svg, canvas {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Ensure comfortable screen margins and consistent grid behaviors on mobile */
@media (max-width: 768px) {
    /* Global container padding to prevent touching screen edges */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
        margin-inline: auto !important;
    }

    /* Force grids and columns to adapt to container boundaries cleanly */
    .home-hero-grid,
    .hero-grid,
    .platform-hero-grid,
    .mobile-hero-grid,
    .contact-hero .hero-grid,
    .split,
    .cta-grid,
    .contact-grid,
    .platform-showcase,
    .console-grid,
    .card-grid,
    .feature-grid,
    .service-grid,
    .pricing-grid,
    .blog-grid,
    .contact-methods,
    .platform-grid,
    .app-feature-grid,
    .app-platform-grid,
    .comparison-grid,
    .footer-grid,
    .related-blog-list,
    .app-screenshot-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
        padding-inline: 0 !important;
    }

    /* Ensure structural children respect their boundaries */
    .home-hero-grid > *,
    .hero-grid > *,
    .platform-hero-grid > *,
    .mobile-hero-grid > *,
    .contact-hero .hero-grid > *,
    .split > *,
    .cta-grid > *,
    .contact-grid > *,
    .platform-showcase > *,
    .console-grid > *,
    .home-hero .reveal,
    .hero .reveal {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Hero heading visual fixes (prevent weird word splitting) */
    .home-hero-title,
    .headline,
    .page-headline {
        max-width: 100% !important;
        white-space: normal !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        text-align: left !important;
    }

    /* Spacing between hero elements */
    .home-hero-title {
        margin-bottom: 20px !important;
    }
    .home-hero .lead {
        margin-bottom: 28px !important;
    }

    /* Button adjustments: Stacked CTA button vertical margin adjustments */
    .hero-actions,
    .section-actions,
    .cta-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .hero-actions .btn,
    .section-actions .btn,
    .cta-actions .btn,
    .cta-band .btn,
    .form-submit,
    .btn-submit {
        margin: 0 !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
}

/* Header fixes: Ensure menu toggle stays inside the header container and aligns properly */
@media (max-width: 1160px) {
    /* Set nav inner as flex container, letting the brand and hamburger auto align */
    .nav-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
        width: 100% !important;
        padding: 8px 14px 8px 16px !important;
    }

    /* Keep the brand image size mobile-friendly and within bounds */
    .brand {
        display: inline-flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .brand img {
        max-width: 150px !important;
        height: auto !important;
        object-fit: contain !important;
    }

    /* Absolute override: reset fixed positioning on the hamburger button */
    .topbar .menu-toggle,
    .menu-toggle[data-menu-button] {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        z-index: 1000 !important;
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
    }
}

/* ==========================================================================
   MODULE CHECKBOX STANDARDIZATION & ALIGNMENT
   ========================================================================== */

/* Standardize every checkbox/icon container exactly */
.module-options label input[type="checkbox"] {
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 4px !important;
    background-color: rgba(5, 11, 22, 0.86) !important;
    cursor: pointer !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

/* Ensure labels inside module selection are perfectly aligned across all viewport sizes */
.module-options label {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding: 10px 16px !important;
    min-height: 44px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    cursor: pointer !important;
}

