:root {
    --green-primary: #126e38;
    --green-secondary: #00a859;
    --bg-soft: #f8f8f8;
    --text: #1a1a1a;
    --muted: #5f6368;
    --border: rgba(0, 0, 0, 0.1);
    --radius-lg: 18px;
    --radius-md: 11px;
    --container: 1386px;
    --shadow-soft: 0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.07);
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 116px;
}
body {
    margin: 0;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: #fff;
    border-bottom: 1px solid var(--border);
}
.header-inner {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
}
.logo { width: 240px; }

.main-nav { display: flex; gap: 34px; font-size: 18px; font-weight: 500; }
.main-nav a { color: #2f2f2f; transition: color 0.2s ease; }
.main-nav .is-active, .main-nav a:hover { color: var(--green-primary); }

.menu-toggle {
    display: none;
    border: 0;
    background: var(--green-primary);
    border-radius: 8px;
    padding: 11px 12px;
    width: 46px;
    height: 42px;
    align-items: center;
    justify-content: center;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 99px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle-lines {
    position: relative;
}

.menu-toggle-lines::before {
    position: absolute;
    top: -6px;
    left: 0;
}

.menu-toggle-lines::after {
    position: absolute;
    top: 6px;
    left: 0;
}

.menu-toggle.is-open .menu-toggle-lines {
    background: transparent;
}

.menu-toggle.is-open .menu-toggle-lines::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-lines::after {
    transform: translateY(-6px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 16px 22px;
    transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary { background: var(--green-primary); color: #fff; }
.btn-primary:hover { filter: brightness(0.94); transform: translateY(-1px); }
.btn-outline { color: var(--green-primary); border: 2px solid var(--green-primary); background: transparent; }
.btn-outline:hover { background: rgba(18, 110, 56, 0.08); transform: translateY(-1px); }
.btn-secondary { border: 1px solid var(--green-primary); color: var(--green-primary); background: #fff; }
.btn-secondary:hover { background: #ecf8f1; }
.btn-danger { background: #ad1f1f; color: #fff; }
.btn-block { width: 100%; }
.header-cta { padding: 14px 18px; font-size: 14px; }

.section { padding: 90px 0; }
.section-soft { background: var(--bg-soft); }

.hero-section { padding: 90px 0; background: #fff; }
#cotacao { scroll-margin-top: 126px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 666px;
    gap: 54px;
    align-items: center;
}
.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 390px;
}
.hero-copy h1 {
    margin: 0;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.hero-copy h1 span { color: var(--green-secondary); }
.hero-copy p {
    color: rgba(26, 26, 26, 0.8);
    font-size: 18px;
    line-height: 1.6;
    max-width: 650px;
    margin: 22px 0 24px;
}
.hero-copy .btn-outline {
    width: auto;
    min-width: 170px;
    padding: 14px 22px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.quote-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 36px;
}
.quote-box h2 {
    margin: 0 0 20px;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 600;
}
.quote-form { display: grid; gap: 12px; }
.quote-form label,
.quote-form legend { font-weight: 500; font-size: 18px; }
.quote-form input,
.quote-form textarea,
.admin-form input,
.admin-form textarea,
.auth-form input {
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    min-height: 56px;
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.quote-form input:focus,
.quote-form textarea:focus,
.admin-form input:focus,
.admin-form textarea:focus,
.auth-form input:focus {
    border-color: rgba(18, 110, 56, 0.6);
    box-shadow: 0 0 0 3px rgba(18, 110, 56, 0.12);
}
.quote-form fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 4px;
}
.form-feedback {
    margin-top: 2px;
}
.radio-option {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 18px;
    line-height: 1.15;
}
.radio-option input { min-height: auto; width: 18px; height: 18px; }

.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.info-card,
.blog-card,
.testimonial,
.operator-card,
.reason-card,
.finance-card,
.blog-list-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.card-elevate {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card-elevate:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.info-card { padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.info-card { min-height: 468px; }
.info-card p { margin: 0; }
.info-card .btn { margin-top: auto; min-height: 54px; }
.icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 15px;
    background: rgba(18, 110, 56, 0.1);
    display: grid;
    place-items: center;
}
.icon-wrap img { width: 36px; height: 36px; }

.info-card h3,
.blog-card h3,
.operator-card h3,
.reason-card h3 { margin: 0; font-family: 'Rethink Sans', sans-serif; font-size: 28px; line-height: 1.3; }
.info-card p,
.operator-card p,
.reason-card p,
.blog-card-content p { margin: 0; color: rgba(26, 26, 26, 0.8); font-size: 18px; line-height: 1.5; }
.plan-meta {
    display: grid;
    gap: 10px;
    margin-top: 2px;
}
.plan-meta-label {
    color: var(--green-primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.plan-operator-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.plan-operator-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(18, 110, 56, 0.16);
    background: rgba(18, 110, 56, 0.08);
    color: var(--green-primary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.section-title { margin: 0 0 24px; font-family: 'Rethink Sans', sans-serif; font-size: 36px; line-height: 1.3; }
.section-title.center { text-align: center; }
.section-subtitle {
    margin: -6px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
}
.section-subtitle.center { text-align: center; }

.carousel { position: relative; margin-top: 54px; }
.carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 60px) / 3);
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0 6px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 49px;
    height: 49px;
    border-radius: 999px;
    border: 0;
    background: var(--green-primary);
    display: grid;
    place-items: center;
    cursor: pointer;
}
.carousel-arrow img { width: 22px; height: 22px; }
.carousel-arrow.prev { left: -10px; }
.carousel-arrow.next { right: -10px; }
.carousel-arrow:hover { filter: brightness(0.92); }

.team-section .carousel {
    margin-top: 34px;
}
.team-carousel-track {
    grid-auto-columns: calc((100% - 90px) / 4);
}
.team-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: #fff;
}
.team-card img {
    width: 100%;
    aspect-ratio: 0.78;
    object-fit: cover;
    border-radius: inherit;
}

.operator-card { padding: 28px; display: flex; flex-direction: column; gap: 14px; min-height: 690px; }
.operator-logo-wrap {
    min-height: 92px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    padding: 14px;
}
.operator-logo-wrap img { max-height: 58px; object-fit: contain; }
.operator-fallback { margin: 0; text-align: center; font-weight: 700; color: var(--green-secondary); line-height: 1.4; }
.operator-badge {
    align-self: flex-start;
    background: rgba(18, 110, 56, 0.1);
    color: var(--green-primary);
    border: 1px solid rgba(18, 110, 56, 0.2);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}
.operator-benefits {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
    color: rgba(26, 26, 26, 0.85);
    font-size: 16px;
    line-height: 1.45;
}
.operator-benefits li::marker {
    color: var(--green-primary);
}
.operator-tagline {
    margin-top: auto;
    color: var(--green-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}
.operator-warning {
    margin: 2px 0 0;
    background: #fff7e8;
    border: 1px solid #f7d69d;
    border-radius: 10px;
    padding: 10px 12px;
    color: #7b3306;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.reason-card { padding: 24px 28px; display: grid; grid-template-columns: 54px 1fr; gap: 18px; margin-bottom: 18px; }
.reason-card img { width: 27px; height: 27px; margin: 13px; }
.reason-card h3 { font-size: 28px; margin-bottom: 6px; }
.reason-card p { font-size: 18px; }
.why-image-wrap img { border-radius: var(--radius-lg); width: 100%; }

.blog-card img {
    border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
    aspect-ratio: 436/216;
    object-fit: cover;
    width: 100%;
}
.blog-card-content { padding: 24px; }
.blog-card-content h3 { font-size: 30px; margin-bottom: 12px; }
.blog-card-content a {
    color: var(--green-primary);
    font-weight: 500;
    font-size: 18px;
    transition: letter-spacing 0.18s ease;
}
.blog-card-content a:hover { letter-spacing: 0.2px; }

.section-testimonials { padding-top: 0; }
.testimonial { padding: 28px; }
.testimonial p { margin: 0; font-style: italic; font-size: 18px; line-height: 1.5; }
.testimonial span { display: block; margin-top: 18px; font-size: 18px; }
.testimonials-embed {
    margin-top: 24px;
    width: 100%;
    overflow: hidden;
}
.testimonials-embed [class^="elfsight-app-"] {
    width: 100%;
    max-width: 100%;
}

.faq-section { padding-top: 75px; }
.faq-list { width: min(864px, 100%); margin: 0 auto; display: grid; gap: 18px; }
.faq-list details {
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fff;
    padding: 22px 27px;
}
.faq-list summary {
    cursor: pointer;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 20px;
    list-style: none;
    position: relative;
    padding-right: 38px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    background: url('/assets/home/icones/Icon-2.svg') center/contain no-repeat;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.95;
}
.faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
}
.faq-list p { margin: 14px 0 0; color: rgba(26, 26, 26, 0.85); font-size: 17px; }

.site-footer {
    background: var(--green-primary);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 90px;
}
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px; }
.footer-logo {
    width: 210px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}
.site-footer h3 { font-family: 'Rethink Sans', sans-serif; color: #fff; font-size: 28px; margin: 0 0 14px; }
.site-footer p,
.site-footer a,
.social-list { margin: 0 0 10px; font-size: 17px; line-height: 1.5; }
.social-list { list-style: none; padding: 0; margin-top: 14px; }
.social-list a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    transition: opacity 0.2s ease;
}
.social-list a:hover { opacity: 0.85; }
.social-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
}
.social-icon svg { width: 100%; height: 100%; }

.footer-bottom {
    margin-top: 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 64px;
    display: grid;
    place-items: center;
}
.footer-bottom p { font-size: 16px; color: rgba(255, 255, 255, 0.7); }

.finance-alert {
    background: #fffbeb;
    border-top: 1px solid #fee685;
    border-bottom: 1px solid #fee685;
    padding: 37px 0;
}
.alert-content { width: min(936px, 100%); margin: 0 auto; }
.alert-content h1 {
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Rethink Sans', sans-serif;
    color: #7b3306;
    font-size: 36px;
    line-height: 1.3;
}
.alert-content h1 img { width: 36px; height: 36px; }
.alert-content p,
.alert-content li {
    font-size: 18px;
    line-height: 1.6;
    color: #364153;
}
.alert-content ul { margin: 0; padding-left: 17px; display: grid; gap: 4px; }

.financeiro-main { padding-top: 72px; }
.finance-grid {
    width: min(1080px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 513px 513px;
    justify-content: space-between;
    gap: 54px;
    align-items: center;
}
.finance-title {
    margin: 0;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    color: var(--green-primary);
}
.finance-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #364153;
    max-width: 453px;
    margin: 18px 0 0;
}
.finance-card {
    margin-top: 36px;
    padding: 27px;
    max-width: 513px;
    background: #f9fafb;
    border-color: #e5e7eb;
}
.finance-card h3 {
    margin: 0 0 14px;
    color: var(--green-primary);
    font-family: 'Rethink Sans', sans-serif;
    font-size: 28px;
    line-height: 1.4;
}
.finance-card p { font-size: 18px; color: #364153; line-height: 1.6; margin: 0 0 8px; }
.finance-example {
    margin-top: 12px;
    border: 1px solid #d1d5dc;
    border-radius: var(--radius-md);
    padding: 18px;
    background: #fff;
}
.finance-example strong { font-size: 18px; color: #101828; }
.finance-btn { margin-top: 36px; min-height: 63px; padding: 18px 30px; }
.finance-image img {
    border-radius: var(--radius-md);
    width: 100%;
    object-fit: cover;
    box-shadow: none;
}

.blog-list-page,
.blog-single-page { min-height: 60vh; }
.blog-intro { font-size: 20px; color: var(--muted); margin: 0 0 36px; }
.blog-list-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.blog-list-card { overflow: hidden; display: grid; grid-template-columns: 260px 1fr; }
.blog-list-card img { width: 100%; height: 100%; object-fit: cover; }
.blog-list-card > div { padding: 24px; }
.blog-list-card h2 { font-family: 'Rethink Sans', sans-serif; font-size: 32px; margin: 0 0 10px; }
.blog-list-card p { margin: 0 0 12px; font-size: 18px; color: var(--muted); }
.blog-list-card a { color: var(--green-primary); font-weight: 600; }
.blog-single-wrap { max-width: 960px; margin-inline: auto; }
.blog-single-image { border-radius: var(--radius-lg); margin-bottom: 28px; }
.blog-single-wrap h1 { font-family: 'Rethink Sans', sans-serif; font-size: 36px; margin: 0 0 18px; line-height: 1.25; }
.blog-content { font-size: 20px; line-height: 1.7; color: #232323; }
.share-box { margin: 32px 0; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.share-box a {
    color: #fff;
    background: var(--green-primary);
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 15px;
    transition: filter 0.2s ease;
}
.share-box a:hover { filter: brightness(0.95); }
.continue-reading { margin-top: 54px; }
.continue-reading h2 { font-family: 'Rethink Sans', sans-serif; font-size: 36px; margin: 0 0 24px; }
.continue-reading .blog-card-content h3 {
    font-size: 24px;
    line-height: 1.3;
}

.alert { border-radius: 10px; padding: 12px 14px; font-size: 15px; }
.alert-success { background: #dff4e8; color: #126e38; border: 1px solid #c2e6d2; }
.alert-error { background: #fbe8e8; color: #9a2222; border: 1px solid #f3cbcb; }
.not-found { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.not-found h1 { font-family: 'Rethink Sans', sans-serif; font-size: 42px; margin-bottom: 12px; }

.auth-body {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #edf4ef 0%, #f8faf8 100%);
    display: grid;
    place-items: center;
}
.auth-card {
    width: min(520px, calc(100% - 30px));
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 38px;
}
.auth-logo { width: 170px; margin-bottom: 14px; }
.auth-card h1 {
    margin: 0;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 30px;
    line-height: 1.25;
}
.auth-subtitle {
    margin: 10px 0 20px;
    color: #4f5967;
    font-size: 16px;
}
.auth-form { display: grid; gap: 10px; }
.auth-form label { font-weight: 600; margin-top: 4px; }
.auth-form input {
    min-height: 60px;
    border: 1px solid #cfd8d3;
    background: #f8fbf9;
    font-size: 16px;
}
.auth-form .btn { margin-top: 10px; min-height: 56px; font-size: 17px; }

.admin-body { margin: 0; background: #f4f6f4; min-height: 100vh; }
.admin-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 24px;
}
.admin-logo { width: 170px; }
.admin-nav { display: flex; gap: 12px; }
.admin-nav a {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.admin-nav .is-active,
.admin-nav a:hover {
    border-color: rgba(18, 110, 56, 0.25);
    background: #ebf6ef;
    color: var(--green-primary);
}
.admin-badge {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #126e38;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}
.admin-main { width: min(1180px, calc(100% - 40px)); margin: 30px auto; }
.admin-panel { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 30px; }
.admin-panel-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.admin-header-action { margin: 0; }
.admin-panel h1 { margin: 0 0 12px; font-family: 'Rethink Sans', sans-serif; font-size: 32px; }
.admin-panel p { margin-top: 0; color: var(--muted); }
.admin-form { margin-top: 18px; display: grid; gap: 12px; }
.admin-form label { font-weight: 600; }
.admin-form textarea { min-height: 140px; resize: vertical; }
.image-preview-box {
    border: 1px dashed #9bc8aa;
    border-radius: 12px;
    background: #f7fbf8;
    padding: 12px;
}
.image-preview-box p { margin: 0 0 10px; font-weight: 600; color: #375844; }
.image-preview {
    width: min(420px, 100%);
    border-radius: 10px;
    border: 1px solid var(--border);
}
.image-preview-box.is-empty .image-preview {
    display: none;
}

.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.admin-table th,
.admin-table td {
    border-bottom: 1px solid var(--border);
    text-align: left;
    padding: 12px;
    vertical-align: top;
}
.table-thumb {
    width: 86px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--border);
}
.table-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: stretch;
}
.table-actions form { margin: 0; }
.table-actions .btn {
    min-height: 48px;
    width: 100%;
    white-space: nowrap;
}
.table-actions form .btn-danger {
    min-width: 102px;
}
.btn-whatsapp {
    min-width: 0;
}
.contact-plan-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.plan-tag {
    background: #e9f6ee;
    border: 1px solid #c6e6d4;
    color: #126e38;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    padding: 7px 10px;
    font-weight: 600;
}
.lead-row-new {
    background: #f2fbf6;
}
.lead-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    padding: 8px 10px;
}
.lead-status.is-new {
    color: #126e38;
    background: #dff4e8;
    border: 1px solid #b7e2ca;
}
.lead-status.is-viewed {
    color: #55606d;
    background: #edf0f3;
    border: 1px solid #d7dce2;
}

.seo-tips {
    border: 1px dashed #9bc8aa;
    border-radius: 12px;
    padding: 16px;
    background: #f4fbf7;
}
.seo-tips h2 { margin: 0 0 8px; font-size: 20px; color: var(--green-primary); }
.seo-tips ul { margin: 0; padding-left: 18px; }
.seo-tips li { margin-bottom: 6px; color: #2d4b35; }

.reveal-block {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-block,
    .btn,
    .card-elevate,
    .main-nav a,
    .faq-list summary::after {
        transition: none !important;
    }
}

@media (max-width: 1280px) {
    .hero-grid,
    .why-grid,
    .cards-3,
    .blog-list-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .main-nav {
        font-size: 14px;
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 18px;
        box-shadow: var(--shadow-soft);
        display: none;
        flex-direction: column;
        gap: 12px;
    }
    .main-nav.is-open { display: flex; }
    .menu-toggle { display: inline-flex; }
    .header-cta { display: none; }

    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { min-height: auto; }
    .quote-box { max-width: 760px; }
    .carousel-track { grid-auto-columns: calc((100% - 30px) / 2); }
    .team-carousel-track { grid-auto-columns: calc((100% - 60px) / 3); }

    .finance-grid {
        grid-template-columns: 1fr;
        width: min(700px, 100%);
    }
    .finance-image { order: -1; }
}

@media (max-width: 820px) {
    .section,
    .hero-section { padding: 60px 0; }

    .blog-single-wrap h1,
    .hero-copy h1,
    .finance-title,
    .alert-content h1 { font-size: 34px; }
    .blog-single-wrap h1 { font-size: 32px; }
    .section-title { font-size: 36px; }
    .logo { width: 190px; }

    .cards-3,
    .why-grid,
    .blog-list-grid,
    .footer-grid,
    .blog-list-card,
    .finance-grid { grid-template-columns: 1fr; }

    .blog-list-card img { aspect-ratio: 16/9; }
    .carousel-track { grid-auto-columns: 100%; }
    .team-carousel-track { grid-auto-columns: calc((100% - 30px) / 2); }
    .carousel-arrow { display: none; }

    .quote-box,
    .info-card,
    .operator-card,
    .reason-card,
    .testimonial,
    .finance-card,
    .admin-panel,
    .auth-card,
    .blog-card-content,
    .blog-list-card > div { padding: 20px; }

    .info-card h3,
    .operator-card h3,
    .reason-card h3,
    .blog-card h3,
    .continue-reading h2,
    .finance-card h3 { font-size: 25px; }

    .site-footer h3 { font-size: 24px; }
    .hero-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .admin-header {
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px;
    }
    .table-actions {
        grid-template-columns: 1fr;
    }
    .table-actions form,
    .table-actions .btn {
        width: 100%;
    }

    .alert-content p,
    .alert-content li,
    .finance-desc,
    .finance-card p,
    .finance-example strong { font-size: 17px; }
}

@media (max-width: 560px) {
    .team-carousel-track {
        grid-auto-columns: 100%;
    }
}
