:root {
    --ink: #111827;
    --muted: #667085;
    --line: #e4e7ec;
    --paper: #ffffff;
    --soft: #f5f7fb;
    --primary: #2457ff;
    --primary-dark: #153bc4;
    --accent: #14b8a6;
    --rose: #ef476f;
    --warning: #f59e0b;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.62;
    overflow-x: hidden;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: 0;
}

.section {
    padding: 74px 0;
}

.section-light {
    background: var(--paper);
}

.section-soft {
    background: var(--soft);
}

.section-dark {
    background: #111827;
    color: #f9fafb;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: inherit;
}

.eyebrow {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lead-text {
    color: var(--muted);
    font-size: 0.98rem;
    max-width: 720px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    margin-bottom: 12px;
}

.btn {
    border-radius: var(--radius);
    font-weight: 800;
    padding: 0.82rem 1.15rem;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(36, 87, 255, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: rgba(36, 87, 255, 0.35);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-light {
    color: var(--primary);
}

.site-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(228, 231, 236, 0.82);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.2s ease, padding 0.2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 900;
    text-decoration: none;
}

.site-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-link {
    color: #344054;
    font-weight: 800;
    padding: 0.7rem 0.85rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.platform-menu {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 8px;
}

.dropdown-item {
    border-radius: 6px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
    padding: 10px 12px;
}

.dropdown-item:hover {
    background: #eef3ff;
    color: var(--primary);
}

.youtube-color { color: #ff0033; }
.instagram-color { color: #d62976; }
.spotify-color { color: #1db954; }
.facebook-color { color: #1877f2; }
.tiktok-color { color: #111827; }

.hero {
    background:
        linear-gradient(90deg, rgba(245, 247, 251, 0.95) 0%, rgba(245, 247, 251, 0.78) 44%, rgba(245, 247, 251, 0.2) 100%),
        url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80") center/cover;
    min-height: 610px;
    display: flex;
    align-items: center;
    padding: 84px 0 64px;
}

.page-hero {
    background: linear-gradient(135deg, #111827 0%, #1d2b53 58%, #2457ff 100%);
    color: #ffffff;
    padding: 76px 0;
}

.platform-hero {
    color: #ffffff;
    padding: 76px 0;
    background: linear-gradient(135deg, var(--platform-color, #2457ff), #111827);
}

.page-hero h1,
.platform-hero h1,
.hero h1 {
    font-size: clamp(2rem, 4.2vw, 3.7rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

.page-hero h1,
.page-hero p,
.platform-hero h1,
.platform-hero p {
    color: #ffffff;
}

.hero p {
    color: #475467;
    font-size: 1rem;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(228, 231, 236, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.roi-calculator {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
}

.roi-control {
    margin-bottom: 22px;
}

.roi-control div {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.roi-control label {
    color: #344054;
    font-weight: 800;
}

.roi-control strong {
    color: var(--primary);
    white-space: nowrap;
}

.roi-control input[type="range"] {
    accent-color: var(--primary);
    width: 100%;
}

.roi-results {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 6px;
}

.roi-results div {
    background: #111827;
    border-radius: var(--radius);
    color: #ffffff;
    padding: 18px;
}

.roi-results span {
    color: rgba(255, 255, 255, 0.72);
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.roi-results strong {
    display: block;
    font-size: 1.35rem;
}

.metric {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
}

.metric strong {
    display: block;
    color: var(--primary);
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    line-height: 1.1;
}

.metric span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.logo-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 22px 0;
}

.logo-strip .row {
    color: #667085;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.card-pro {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
    height: 100%;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-pro:hover {
    border-color: rgba(36, 87, 255, 0.35);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.card-icon {
    align-items: center;
    background: #eef3ff;
    border-radius: var(--radius);
    color: var(--primary);
    display: inline-flex;
    font-size: 1.15rem;
    height: 42px;
    justify-content: center;
    margin-bottom: 16px;
    width: 42px;
}

.card-pro h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
}

.card-pro p {
    font-size: 0.92rem;
}

.check-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.check-list li {
    color: var(--muted);
    margin: 10px 0;
    padding-left: 28px;
    position: relative;
}

.check-list li::before {
    content: "\f00c";
    color: var(--accent);
    font: var(--fa-font-solid);
    left: 0;
    position: absolute;
    top: 3px;
}

.growth-planner {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
}

.planner-tabs {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 16px;
}

.planner-tab {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: #344054;
    font-weight: 800;
    padding: 12px;
}

.planner-tab.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.planner-panel {
    align-items: start;
    background: #f8fbff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: none;
    gap: 24px;
    grid-template-columns: 1.15fr 0.85fr;
    padding: 24px;
}

.planner-panel.is-active {
    display: grid;
}

.planner-panel h3 {
    font-size: 1.35rem;
}

.case-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
    height: 100%;
    padding: 26px;
}

.case-card span {
    color: var(--muted);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.case-card strong {
    color: var(--primary);
    display: block;
    font-size: 2.45rem;
    line-height: 1;
}

.case-card small {
    color: var(--muted);
    display: block;
    font-weight: 800;
    margin: 6px 0 22px;
}

.case-card h3 {
    font-size: 1.15rem;
}

.case-card p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0;
}

.comparison-table {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.25fr;
}

.comparison-row > div {
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    padding: 18px;
}

.comparison-row > div:first-child {
    color: var(--ink);
    font-weight: 900;
}

.comparison-row > div:last-child {
    background: #f8fbff;
    color: #1d2939;
    font-weight: 800;
}

.comparison-row:last-child > div {
    border-bottom: 0;
}

.comparison-head > div {
    background: #111827 !important;
    color: #ffffff !important;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.resource-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    height: 100%;
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.resource-card span {
    color: var(--primary);
    display: block;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.resource-card h3 {
    font-size: 1.12rem;
}

.resource-card p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0;
}

.featured-blog {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.featured-blog-image,
.blog-card-image {
    background: #eef3ff;
    display: block;
    overflow: hidden;
}

.featured-blog-image img,
.blog-card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    width: 100%;
}

.featured-blog:hover img,
.blog-card:hover img {
    transform: scale(1.04);
}

.featured-blog-image {
    min-height: 420px;
}

.featured-blog-content {
    align-self: center;
    padding: 42px;
}

.featured-blog-content h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.blog-meta {
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 0.88rem;
    font-weight: 800;
    margin: 18px 0 24px;
}

.blog-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
    height: 100%;
    overflow: hidden;
}

.blog-card-image {
    aspect-ratio: 16 / 10;
}

.blog-card-body {
    padding: 22px;
}

.blog-card-body span {
    color: var(--primary);
    display: block;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-card-body h3 {
    font-size: 1.14rem;
}

.blog-card-body h3 a {
    text-decoration: none;
}

.blog-card-body p {
    color: var(--muted);
    font-size: 0.92rem;
}

.blog-placeholder {
    align-items: center;
    color: var(--primary);
    display: flex;
    font-size: 2.5rem;
    height: 100%;
    justify-content: center;
    min-height: 220px;
    width: 100%;
}

.empty-state {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 620px;
    padding: 42px;
    text-align: center;
}

.empty-state i {
    color: var(--primary);
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.blog-article-hero {
    background: linear-gradient(135deg, #111827 0%, #1d2b53 58%, #2457ff 100%);
    color: #ffffff;
    padding: 84px 0 60px;
    text-align: center;
}

.blog-article-hero h1 {
    color: #ffffff;
    font-size: clamp(2rem, 4.4vw, 3.8rem);
    line-height: 1.08;
    margin: 16px 0;
}

.blog-article-hero p,
.blog-article-hero .blog-meta {
    color: rgba(255, 255, 255, 0.82);
    justify-content: center;
}

.blog-cover {
    background: var(--paper);
    padding-top: 40px;
}

.blog-cover img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: 520px;
    object-fit: cover;
    width: 100%;
}

.blog-content {
    color: #344054;
    font-size: 1.02rem;
    line-height: 1.9;
}

.admin-hero {
    background: #111827;
    color: #ffffff;
    padding: 54px 0;
}

.admin-hero h1,
.admin-hero p {
    color: #ffffff;
}

.admin-panel,
.admin-form {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}

.admin-form {
    box-shadow: none;
    padding: 0;
}

.admin-post-cell {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 300px;
}

.admin-post-cell img,
.admin-post-cell span {
    border-radius: var(--radius);
    height: 58px;
    width: 76px;
}

.admin-post-cell img {
    object-fit: cover;
}

.admin-post-cell span {
    align-items: center;
    background: #eef3ff;
    color: var(--primary);
    display: inline-flex;
    justify-content: center;
}

.admin-post-cell strong,
.admin-post-cell small {
    display: block;
}

.admin-post-cell small {
    color: var(--muted);
}

.admin-image-preview {
    border-radius: var(--radius);
    max-height: 220px;
    object-fit: cover;
    width: 100%;
}

.blog-editor {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    line-height: 1.7;
}

.admin-login-section {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(36, 87, 255, 0.75)),
        url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1600&q=80") center/cover;
    display: flex;
    min-height: calc(100vh - 76px);
    padding: 70px 16px;
}

.admin-login-card {
    background: var(--paper);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 440px;
    padding: 34px;
    width: 100%;
}

.admin-login-card h1 {
    font-size: 1.9rem;
    text-align: center;
}

.carousel-controls {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.carousel-controls .btn {
    align-items: center;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    padding: 0;
    width: 42px;
}

.testimonial-carousel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-card {
    min-height: 310px;
    padding: 34px;
}

.testimonial-card p {
    color: #344054;
    font-size: 1.05rem;
    margin: 16px 0 26px;
}

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

.testimonial-person span {
    align-items: center;
    background: #eef3ff;
    border-radius: 50%;
    color: var(--primary);
    display: inline-flex;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.testimonial-person strong,
.testimonial-person small {
    display: block;
}

.testimonial-person small {
    color: var(--muted);
}

.audit-box {
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    gap: 26px;
    grid-template-columns: 220px 1fr;
    padding: 28px;
}

.audit-score {
    background: #111827;
    border-radius: var(--radius);
    color: #ffffff;
    padding: 24px;
    text-align: center;
}

.audit-score strong {
    display: block;
    font-size: 2rem;
}

.audit-score p {
    color: rgba(255, 255, 255, 0.78);
    margin: 4px 0 0;
}

.audit-list {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
}

.audit-list label {
    align-items: center;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    gap: 10px;
    font-weight: 700;
    padding: 13px;
}

.audit-list input {
    accent-color: var(--primary);
    height: 18px;
    width: 18px;
}

.split-visual {
    border-radius: var(--radius);
    min-height: 470px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.split-visual img {
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    width: 100%;
}

.process-step {
    counter-increment: process;
    position: relative;
}

.process-step::before {
    align-items: center;
    background: var(--primary);
    border-radius: 50%;
    color: #ffffff;
    content: counter(process);
    display: inline-flex;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    margin-bottom: 16px;
    width: 34px;
}

.process-list {
    counter-reset: process;
}

.testimonial {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quote-mark {
    color: var(--primary);
    font-size: 2rem;
}

.cta-band {
    background: linear-gradient(135deg, var(--primary), #111827);
    color: #ffffff;
    padding: 58px 0;
}

.cta-band h2 {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.cta-band h2,
.cta-band p {
    color: #ffffff;
}

.contact-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}

.form-control,
.form-select,
.input-group-text {
    border-color: var(--line);
    border-radius: var(--radius);
    padding: 0.82rem 0.9rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(36, 87, 255, 0.6);
    box-shadow: 0 0 0 0.25rem rgba(36, 87, 255, 0.12);
}

.input-group .form-control {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.input-group .input-group-text {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    font-weight: 800;
}

.accordion-item {
    border: 1px solid var(--line);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 800;
}

.accordion-button:not(.collapsed) {
    background: #eef3ff;
    color: var(--primary);
    box-shadow: none;
}

.modal-content {
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.modal-header {
    background: #111827;
    color: #ffffff;
    border: 0;
}

.modal-header h5 {
    color: #ffffff;
}

.modal-header .btn-close {
    filter: invert(1);
}

.form-message {
    border-radius: var(--radius);
    display: none;
    font-weight: 700;
    margin-top: 16px;
    padding: 12px 14px;
}

.form-message.is-success {
    background: #dcfce7;
    color: #166534;
}

.form-message.is-error {
    background: #fee2e2;
    color: #991b1b;
}

.site-footer {
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 54px 0 28px;
}

.footer-cta {
    align-items: center;
    background: #111827;
    border-radius: var(--radius);
    color: #ffffff;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 48px;
    padding: 30px;
}

.footer-cta h2,
.footer-cta p {
    color: #ffffff;
    margin: 0;
}

.footer-cta h2 {
    font-size: 1.55rem;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-copy {
    color: var(--muted);
    max-width: 360px;
}

.footer-title {
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.footer-links {
    color: var(--muted);
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

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

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a,
.whatsapp-button {
    align-items: center;
    border-radius: var(--radius);
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
}

.social-icons a {
    background: var(--soft);
    color: var(--ink);
    height: 40px;
    width: 40px;
}

.social-icons a:hover {
    background: var(--primary);
    color: #ffffff;
}

.copyright {
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 36px;
    padding-top: 22px;
}

.whatsapp-button {
    background: #25d366;
    bottom: 20px;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
    color: #ffffff;
    font-size: 1.55rem;
    height: 56px;
    position: fixed;
    right: 20px;
    width: 56px;
    z-index: 1000;
}

.whatsapp-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

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

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

@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        margin-top: 12px;
        padding: 14px;
    }

    .hero {
        min-height: auto;
        padding: 64px 0 52px;
    }

    .metric-grid {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

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

    .planner-tabs,
    .planner-panel,
    .audit-box,
    .roi-results {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-row {
        min-width: 760px;
    }

    .featured-blog {
        grid-template-columns: 1fr;
    }

    .featured-blog-image {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 52px 0;
    }

    .page-hero,
    .platform-hero {
        padding: 56px 0;
    }

    .page-hero h1,
    .platform-hero h1,
    .hero h1 {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .planner-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .planner-tab {
        font-size: 0.86rem;
        padding: 10px 8px;
    }

    .planner-panel {
        padding: 18px;
    }

    .roi-calculator {
        padding: 20px;
    }

    .case-card strong {
        font-size: 2rem;
    }

    .testimonial-card {
        min-height: 360px;
        padding: 24px;
    }

    .testimonial-card p {
        font-size: 0.96rem;
    }

    .audit-list {
        grid-template-columns: 1fr;
    }

    .featured-blog-content,
    .empty-state {
        padding: 24px;
    }

    .blog-article-hero {
        padding: 60px 0 42px;
    }

    .card-pro,
    .contact-card {
        padding: 20px;
    }

    .split-visual,
    .split-visual img {
        min-height: 320px;
    }
}
