:root {
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --white: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --green: #15803d;
    --green-accent: #22c55e;
    --green-soft: #dcfce7;
    --border: #e2e8f0;
    --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 90% 5%, rgba(34, 197, 94, 0.16), transparent 35%), var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .82rem 1.28rem;
    border-radius: 14px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, var(--green-accent), var(--green));
    color: #fff;
    box-shadow: 0 12px 25px rgba(21, 128, 61, 0.25);
}
.btn-outline {
    border: 1px solid #86efac;
    color: var(--green);
    background: #fff;
}
.btn-ghost {
    border: 1px solid var(--border);
    color: var(--text);
    background: #fff;
}
.btn-light {
    background: #fff;
    color: var(--green);
}
.btn-block { width: 100%; }
.btn-sm { padding: .45rem .8rem; border-radius: 10px; font-size: .85rem; }

.muted { color: var(--muted); font-size: .95rem; line-height: 1.65; }

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(8px);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}
.brand {
    font-weight: 800;
    color: #166534;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}
.brand img {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #bbf7d0;
}
.brand-placeholder-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #bbf7d0;
    background: #ecfdf5;
    color: #166534;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .76rem;
    font-weight: 800;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.05rem;
    color: #1e293b;
    font-size: .92rem;
    font-weight: 600;
}
.nav-links a { position: relative; }
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
    background: var(--green-accent);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; gap: .65rem; }
.nav-toggle {
    display: none;
    width: 44px;
    min-height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    width: 18px;
    height: 2px;
    background: #0f172a;
    border-radius: 999px;
    display: block;
    margin: 2px 0;
}

.login-drop {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.login-drop.open { max-height: 360px; }
.login-drop-card { padding: 1rem; margin-top: .9rem; }
.login-drop-head { display: flex; justify-content: space-between; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.login-drop-head h3 { margin: 0; font-size: 1.1rem; }

.hero { padding: 4.3rem 0 2rem; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 2.7rem;
}
.hero-badge {
    display: inline-flex;
    padding: .36rem .8rem;
    border-radius: 999px;
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #bbf7d0;
    font-weight: 700;
    font-size: .8rem;
}
.hero-content h1 {
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    line-height: 1.08;
    margin: .85rem 0 1rem;
    letter-spacing: -.02em;
}
.hero-content h1 span { color: var(--green); }
.hero-content p {
    font-size: 1.03rem;
    max-width: 92%;
    margin-bottom: 1.6rem;
}
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-visual-wrap {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-glow {
    position: absolute;
    width: 95%;
    height: 88%;
    border-radius: 34px;
    background: linear-gradient(160deg, rgba(34, 197, 94, 0.18), rgba(22, 163, 74, 0.04));
}
.hero-panel { width: 100%; max-width: 500px; padding: .8rem; position: relative; z-index: 2; }
.hero-image-box img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 18px;
}
.floating-card {
    position: absolute;
    z-index: 3;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .8rem .95rem;
    box-shadow: var(--shadow-soft);
    max-width: 180px;
}
.floating-card strong { font-size: .9rem; color: #166534; }
.floating-card p { margin: .25rem 0 0; font-size: .79rem; color: #64748b; }
.floating-left { left: -18px; bottom: 80px; }
.floating-right { right: -20px; top: 72px; }

.section { padding: 3.7rem 0; }
.section-tight { padding-top: 1.3rem; }
.section-head {
    text-align: center;
    margin-bottom: 1.7rem;
}
.section-head.left { text-align: left; }
.section-head span {
    color: var(--green);
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 800;
}
.section-head h2 {
    margin: .5rem 0 0;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .9rem;
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .9rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    text-align: center;
}
.trust-item p { margin: 0; font-weight: 700; color: #166534; font-size: .92rem; }
.trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #166534;
    background: var(--green-soft);
    font-weight: 900;
}
.trust-icon::before {
    content: "";
    width: 10px;
    height: 6px;
    border-left: 2px solid #166534;
    border-bottom: 2px solid #166534;
    transform: rotate(-45deg);
    margin-top: -1px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
    text-align: center;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}
.icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #ecfdf5;
    color: var(--green);
    font-weight: 800;
    margin-bottom: .7rem;
}
.icon-circle::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #4ade80, #15803d);
}
.feature-card strong { display: block; margin-bottom: .2rem; font-size: 1.03rem; }

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.package-card {
    position: relative;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fff;
    transition: transform .22s ease, box-shadow .22s ease;
}
.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}
.package-card-link {
    display: block;
}
.package-card.is-best {
    border-color: #4ade80;
    box-shadow: 0 22px 45px rgba(22, 163, 74, 0.22);
}
.ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: .25rem .55rem;
    border-radius: 999px;
    background: #166534;
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
}
.package-image {
    height: 165px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ecfdf5, #dcfce7);
    border: 1px dashed #86efac;
    display: grid;
    place-items: center;
    margin-bottom: .8rem;
    overflow: hidden;
}
.package-image img { width: 100%; height: 100%; object-fit: cover; }
.package-image span { color: #15803d; font-size: .85rem; font-weight: 700; }
.package-card h3 { margin: 0; font-size: 1.05rem; }
.price {
    margin: .35rem 0 .6rem;
    color: var(--green);
    font-size: 1.65rem;
    letter-spacing: -.01em;
}
.package-benefits {
    margin: 0 0 .9rem;
    padding-left: 1.05rem;
    color: #334155;
    font-size: .87rem;
    display: grid;
    gap: .38rem;
}
.package-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
}
.package-microcopy { margin: .65rem 0 0; font-size: .85rem; }

.package-hero { padding-top: 2.4rem; }
.package-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 1rem;
    align-items: stretch;
}
.package-hero-content,
.package-hero-image-card,
.package-block {
    padding: 1.2rem;
    border-radius: 20px;
}
.package-hero-content h1 {
    margin: .6rem 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
}
.package-hero-metrics {
    margin: .8rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
}
.package-hero-metrics div {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .7rem;
    background: #fff;
}
.package-hero-metrics small { display: block; color: var(--muted); margin-bottom: .25rem; }
.package-hero-metrics strong { font-size: .95rem; }
.package-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: .65rem;
}
.package-hero-image-card img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    border-radius: 16px;
}
.package-image-fallback {
    min-height: 320px;
    border-radius: 16px;
    border: 1px dashed #86efac;
    display: grid;
    place-items: center;
    color: #15803d;
    font-weight: 700;
    background: linear-gradient(135deg, #ecfdf5, #dcfce7);
}
.package-content-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}
.package-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: .45rem;
    color: #334155;
}
.related-package-list { display: grid; gap: .7rem; }
.related-package-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    padding: .85rem;
    display: grid;
    gap: .25rem;
}
.related-package-card strong { color: #14532d; }
.related-package-card span { color: #15803d; font-weight: 700; }
.package-404-wrap { min-height: 58vh; display: grid; place-items: center; }
.package-404-card { text-align: center; padding: 2rem; max-width: 640px; margin: 0 auto; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.step-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    padding: 1.15rem;
}
.step-number {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--green-accent), var(--green));
    color: #fff;
    font-weight: 800;
    margin-bottom: .6rem;
}
.step-card strong { font-size: 1rem; display: block; margin-bottom: .2rem; }

.faq-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.faq-panel, .form-panel { padding: 1.2rem; }
.faq-list { display: grid; gap: .7rem; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    padding: .85rem .95rem;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: #0f172a;
    position: relative;
    padding-right: 1.2rem;
}
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--green);
    font-weight: 900;
}
.faq-item[open] summary::after { content: "âˆ’"; }
.faq-item p { margin: .45rem 0 0; }

.form-title {
    background: linear-gradient(145deg, var(--green-accent), var(--green));
    color: #fff;
    border-radius: 14px;
    padding: .85rem 1rem;
    font-weight: 800;
    margin-bottom: .9rem;
}
.form-grid { display: grid; gap: .8rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.form-stack { display: grid; gap: .8rem; }
label { font-weight: 600; font-size: .9rem; color: #1e293b; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .74rem .84rem;
    font: inherit;
    background: #fff;
    margin-top: .35rem;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.22);
}
textarea { min-height: 114px; resize: vertical; }

.cta-banner {
    padding: 1.4rem 1.55rem;
    background: linear-gradient(120deg, #16a34a, #15803d);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cta-banner h2 { margin: 0 0 .32rem; color: #fff; font-size: clamp(1.25rem, 2.2vw, 1.7rem); }
.cta-banner p { margin: 0; color: rgba(255, 255, 255, 0.9); }
.cta-banner .btn-light { color: #14532d; border: 1px solid rgba(255, 255, 255, 0.7); }

.footer {
    background: #f8fafc;
    border-top: 1px solid var(--border);
    margin-top: 2.2rem;
    padding: 2.4rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .75fr .75fr .8fr;
    gap: 1rem;
}
.footer h4 { margin: 0 0 .7rem; color: #166534; }
.footer a { display: block; margin-bottom: .5rem; color: #334155; font-weight: 600; font-size: .9rem; }
.footer a:hover { color: var(--green); }
.footer-desc { max-width: 300px; }

.whatsapp-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
    z-index: 55;
}

.ai-chatbot-fab {
    position: fixed;
    right: 18px;
    bottom: 80px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
    z-index: 55;
}

.ai-chatbot-card {
    position: fixed;
    right: 18px;
    bottom: 142px;
    width: min(320px, 90vw);
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    padding: .9rem;
    box-shadow: var(--shadow-soft);
    z-index: 56;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.page-wrap { min-height: 100vh; display: grid; place-items: center; padding: 2rem 0; }
.auth-card { width: min(560px, 92%); padding: 1.6rem; }
.layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.sidebar { background: #0f172a; color: #e2e8f0; padding: 1.2rem; }
.sidebar a { display: block; padding: .65rem .8rem; border-radius: 10px; margin-bottom: .35rem; }
.sidebar a:hover, .sidebar a.active { background: rgba(148, 163, 184, .15); }
.content { padding: 1.3rem; }
.topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-bottom: 1rem; }
.stat-card { padding: 1.2rem; border-radius: 16px; border: 1px solid var(--border); background: #fff; }

table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
th, td { padding: .85rem; border-bottom: 1px solid var(--border); text-align: left; font-size: .92rem; }
th { background: #f8fafc; }

.badge { padding: .3rem .6rem; border-radius: 999px; font-size: .8rem; font-weight: 700; }
.badge-success { background: #dcfce7; color: #166534; }
.badge-warn { background: #fef9c3; color: #854d0e; }
.toast {
    position: fixed;
    top: 12px;
    right: 12px;
    padding: .7rem 1rem;
    border-radius: 10px;
    color: #fff;
    z-index: 99;
    transition: opacity .3s ease;
}
.toast-success { background: #16a34a; }
.toast-error { background: #ef4444; }
.contact-map { margin-top: 1rem; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { width: 100%; min-height: 280px; border: 0; display: block; }
.contact-map iframe[src=""] { display: none; }
.map-placeholder {
    min-height: 220px;
    background: linear-gradient(135deg, #ecfdf5, #f8fafc);
    display: grid;
    place-items: center;
    gap: .7rem;
    padding: 1.2rem;
    text-align: center;
}
.map-section-card { padding: 1.2rem; }
.map-section-head { margin-bottom: 1rem; }
.settings-shell { padding: 1rem; }
.settings-section {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    background: #fcfffd;
}
.settings-section h3 { margin: 0 0 .7rem; font-size: 1.02rem; color: #166534; }
.settings-section legend {
    padding: 0 .35rem;
    font-size: 1rem;
    color: #166534;
    font-weight: 600;
}
.settings-section + .settings-section { margin-top: .9rem; }

.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: .25rem;
}
.check-inline {
    display: inline-flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .95rem;
    color: var(--text);
    line-height: 1.45;
}
.check-inline input[type="checkbox"] {
    margin-top: .25rem;
    accent-color: #15803d;
}
.helper-bullets {
    margin: .25rem 0 1rem 1.1rem;
    padding: 0;
    line-height: 1.6;
}
.helper-bullets li { margin-bottom: .2rem; }
.register-card { max-width: 920px; margin: 0 auto; }
.register-card .form-grid { display: grid; gap: .9rem; }
.settings-preview-logo {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border);
}
.settings-preview-hero {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
}

/* ==============================
   Responsive Layout
   ============================== */

.chart-placeholder {
    min-height: clamp(280px, 35vw, 460px);
}
.chart-placeholder svg {
    height: clamp(260px, 33vw, 440px);
}

.btn,
button,
.admin-icon-btn,
.menu-toggle,
a.btn {
    min-height: 44px;
}

@media (max-width: 1199px) {
    .hero-grid,
    .faq-form-grid { grid-template-columns: 1fr; }
    .hero-content { order: 1; }
    .hero-visual-wrap { order: 2; min-height: 390px; }
    .hero-content p { max-width: 100%; }
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .floating-left { left: 12px; bottom: 48px; }
    .floating-right { right: 12px; top: 60px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .package-hero-grid,
    .package-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1023px) {
    .nav-toggle { display: inline-flex; }
    .nav-links,
    .nav-actions {
        position: absolute;
        left: 4%;
        right: 4%;
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 0.75rem;
        box-shadow: var(--shadow-soft);
        display: none;
    }
    .nav-links { top: 84px; flex-direction: column; align-items: flex-start; gap: 0.7rem; }
    .nav-actions { top: calc(84px + 220px); flex-direction: column; }
    .nav.nav-open .nav-links,
    .nav.nav-open .nav-actions { display: flex; }
    .trust-row, .steps-grid, .footer-grid, .layout, .grid-2 { grid-template-columns: 1fr; }
    .step-card { position: relative; padding-left: 3.2rem; }
    .step-number { position: absolute; left: 1rem; top: 1rem; margin-bottom: 0; }
    .cta-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767px) {
    .container { width: min(1180px, 94%); }
    .hero { padding: 2.7rem 0 1.2rem; }
    .hero-content h1 { font-size: clamp(2rem, 9vw, 2.5rem); }
    .section-head h2 { font-size: clamp(1.5rem, 7.2vw, 1.9rem); }
    .hero-image-box img { height: 290px; }
    .floating-card { display: none; }
    .hero-cta { width: 100%; flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .benefit-grid,
    .packages-grid { grid-template-columns: 1fr; }
    .package-image { height: 190px; }
    .package-actions { grid-template-columns: 1fr; }
    .package-hero-metrics { grid-template-columns: 1fr; }
    .package-cta-group .btn { width: 100%; }
    .footer { padding-bottom: 5.5rem; }
    .whatsapp-fab { right: 12px; bottom: 12px; width: 48px; height: 48px; }
    table th, table td { padding: 0.7rem; font-size: 0.86rem; }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    .brand img { width: 30px; height: 30px; }
    .hero-content h1 { font-size: clamp(2rem, 10vw, 2.25rem); }
    .section-head h2 { font-size: clamp(1.5rem, 8vw, 1.8rem); }
    .muted { font-size: 0.9rem; line-height: 1.55; }
    .form-panel, .faq-panel { padding: 1rem; }
    .btn { width: 100%; }
}

@media (max-width: 374px) {
    .container { width: 95%; }
    .nav-inner { min-height: 70px; }
    .brand { font-size: 0.92rem; }
    .hero-content h1 { font-size: 2rem; }
    .hero-image-box img { height: 250px; }
    .package-card { padding: 0.8rem; }
}

.page-section,
.module-spacing {
    margin-bottom: 28px;
}

.module-card {
    padding: 24px;
}

.responsive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.tablet-stack {
    display: grid;
    gap: 16px;
}

.tablet-single-column {
    display: grid;
    grid-template-columns: 1fr;
}

.content-safe-width,
.overflow-safe {
    max-width: 100%;
    overflow-x: hidden;
}

.checkbox-declaration {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.checkbox-declaration span {
    flex: 1 1 260px;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.55;
}

@media (min-width: 768px) and (max-width: 1180px) {
    .container {
        width: min(1180px, 94%);
    }

    .hero-content h1 {
        font-size: clamp(1.9rem, 4vw, 2.4rem);
    }

    .section-head h2 {
        font-size: clamp(1.45rem, 3vw, 1.85rem);
    }

    .grid-2,
    .responsive-grid,
    .faq-form-grid,
    .package-actions {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .register-card {
        max-width: 980px;
    }
}