:root {
    --ibracel-green: #0DA69C;
    --ibracel-green-dark: #0A837C;
    --ibracel-bg: #FFFFFF;
    --ibracel-bg-alt: #F5F7FA;
    --ibracel-border-subtle: #E5E7EB;
    --ibracel-text: #111111;
    --ibracel-text-muted: #4B5563;
    --ibracel-radius-lg: 16px;
    --ibracel-radius-xl: 20px;
    --ibracel-shadow-soft: 0 10px 30px rgba(15, 118, 110, 0.12);
    --ibracel-shadow-card: 0 8px 24px rgba(15, 23, 42, 0.06);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ibracel-text);
    background-color: var(--ibracel-bg);
}

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

a {
    color: var(--ibracel-green);
    text-decoration: none;
}

a:hover {
    color: var(--ibracel-green-dark);
}

a.btn,
a.btn:hover {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: transparent;
    border-bottom: none;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 2.25rem;
    gap: 1rem;
    background: #FFFFFF;
    border-radius: 999px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.site-header .container {
    padding-left: 2rem;
    padding-right: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
    margin-right: 1.25rem;
}

.brand-logo {
    height: 40px;
    width: auto;
    display: block;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ibracel-green), var(--ibracel-green-dark));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--ibracel-shadow-soft);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-weight: 800;
    font-size: 0.95rem;
}

.brand-subtitle {
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--ibracel-text-muted);
}

.main-nav {
    display: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ibracel-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav a:hover {
    color: var(--ibracel-green-dark);
}

.header-ctas {
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.25rem;
}

.nav-item-has-children {
    position: relative;
}

.nav-chevron {
    width: 14px;
    height: 14px;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    margin-top: 0.4rem;
    padding: 0.4rem 0;
    background: #FFFFFF;
    border-radius: 0.9rem;
    border: 1px solid var(--ibracel-border-subtle);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
    list-style: none;
    display: none !important;
    z-index: 30;
    overflow: hidden;
}

.nav-submenu li {
    padding: 0;
}

.nav-submenu a {
    display: block;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    color: var(--ibracel-text-muted);
}

.nav-submenu a:hover {
    background: #F9FAFB;
    color: var(--ibracel-green-dark);
}

.nav-item-has-children:hover .nav-submenu {
    display: block !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
    background: var(--ibracel-green);
    color: #FFFFFF;
    box-shadow: var(--ibracel-shadow-soft);
}

.btn-primary:hover {
    background: var(--ibracel-green-dark);
    box-shadow: 0 14px 40px rgba(13, 166, 156, 0.3);
    transform: translateY(-1px);
    color: #FFFFFF;
}

.btn-outline {
    background: #FFFFFF;
    border-color: var(--ibracel-green);
    color: var(--ibracel-green);
}

.btn-outline:hover {
    background: rgba(13, 166, 156, 0.06);
    border-color: var(--ibracel-green-dark);
    color: #FFFFFF;
}

.btn-hero {
    background: #FFFFFF;
    color: #0A837C;
    border-color: #FFFFFF;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    padding-left: 1.9rem;
    padding-right: 1.9rem;
}

.btn-hero:hover {
    background: #F9FAFB;
    color: #0A837C;
}
.btn-secondary {
    background: #FFFFFF;
    border-color: var(--ibracel-border-subtle);
    color: var(--ibracel-text);
}

.btn-secondary:hover {
    background: #F9FAFB;
}

.btn-block {
    width: 100%;
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    border: none;
    background: transparent;
    padding: 0.25rem;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ibracel-text);
    border-radius: 999px;
}

.site-main {
    padding-bottom: 3rem;
}

.hero {
    padding: 3rem 0 2.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-media {
    position: relative;
}

.hero-media-inner {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.hero-media img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.section-illustration {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.section-illustration img {
    display: block;
    width: 80%;
    height: auto;
    margin: 0 auto;
}

.section-illustration--small {
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
    margin-bottom: 0.85rem;
}

.section-illustration--small img {
    width: 100%;
}

.image-gallery {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.image-thumb {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

.image-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-gallery-track {
    display: flex;
    gap: 0.75rem;
    overflow: hidden;
    width: 100%;
}

.image-gallery-track .image-thumb {
    flex: 0 0 calc(33.333% - 0.5rem);
}

.gallery-arrow {
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
    cursor: pointer;
    color: var(--ibracel-text);
}

.gallery-arrow:hover {
    background: #F3F4F6;
}

.municipio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.municipio-card {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.7rem;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}

.municipio-icon {
    width: 18px;
    height: 18px;
    color: var(--ibracel-green);
}

.municipio-name {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--ibracel-text);
}

.municipio-column {
    text-align: center;
}

.municipio-extra {
    margin-top: 1rem;
}

.municipio-cta {
    margin-top: 0.75rem;
}

.about-intro {
    text-align: left;
}

.testimonials-grid {
    display: grid;
    gap: 1.25rem;
}

.testimonial-card {
    border-radius: 18px;
    border: 1px solid var(--ibracel-border-subtle);
    background: #FFFFFF;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
    padding: 1.25rem 1.3rem;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-role {
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--ibracel-text-muted);
}

.testimonial-icon {
    width: 16px;
    height: 16px;
    color: var(--ibracel-green);
}

.testimonial-text {
    font-size: 0.86rem;
    color: var(--ibracel-text-muted);
    margin: 0;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.hero-primary {
    background:
        radial-gradient(900px 500px at 10% -10%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 40%),
        linear-gradient(180deg, #0DA69C 0%, #0A837C 100%);
    color: #FFFFFF;
    margin-top: 0;
    padding-top: 6.5rem;
    padding-bottom: 4.5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-primary .hero-title {
    color: #FFFFFF;
}

.hero-primary .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hero-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.section-green {
    background:
        radial-gradient(900px 500px at 10% -10%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 40%),
        linear-gradient(180deg, #0DA69C 0%, #0A837C 100%);
    color: #FFFFFF;
}

.section-green .section-title {
    color: #FFFFFF;
}

.section-green .section-description,
.section-green .card-text {
    color: rgba(255, 255, 255, 0.92);
}

.section-areas .section-title,
.section-areas .section-description {
    color: #FFFFFF;
}

.section-areas .card-title,
.section-areas .card-text {
    color: var(--ibracel-text);
}

.section-areas .section-kicker {
    color: rgba(255, 255, 255, 0.9);
}

.section-estrutura .section-title,
.section-estrutura .section-description {
    color: #FFFFFF;
}

.section-estrutura .section-kicker {
    color: rgba(255, 255, 255, 0.9);
}

.section-estrutura .card-title,
.section-estrutura .card-text {
    color: var(--ibracel-text);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(13, 166, 156, 0.08);
    color: var(--ibracel-green-dark);
    font-weight: 600;
    font-size: 0.75rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--ibracel-green);
}

.hero-title {
    margin: 1rem 0 0.75rem;
    font-size: 2.1rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    margin: 0 0 1.5rem;
    color: var(--ibracel-text-muted);
    font-size: 0.98rem;
    max-width: 36rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-meta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.8rem;
    color: var(--ibracel-text-muted);
}

.hero-figure {
    position: relative;
    padding: 1.5rem;
}

.hero-card {
    border-radius: var(--ibracel-radius-xl);
    border: 1px solid var(--ibracel-border-subtle);
    background: #FFFFFF;
    box-shadow: var(--ibracel-shadow-card);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero-card-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(13, 166, 156, 0.1);
    font-size: 0.7rem;
    font-weight: 600;
}

.hero-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-card-text {
    font-size: 0.86rem;
    color: var(--ibracel-text-muted);
    margin-bottom: 1rem;
}

.hero-card-metric {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
}

section {
    padding: 2.5rem 0;
}

.section-alt {
    background: var(--ibracel-bg-alt);
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-kicker {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ibracel-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-description {
    margin: 0;
    color: var(--ibracel-text-muted);
    font-size: 0.9rem;
    max-width: 40rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

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

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

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

.card {
    border-radius: var(--ibracel-radius-lg);
    border: 1px solid var(--ibracel-border-subtle);
    background: #FFFFFF;
    box-shadow: var(--ibracel-shadow-card);
    padding: 1.25rem;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.card:hover {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
    transform: translateY(-2px);
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.card-title-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.card-icon {
    width: 18px;
    height: 18px;
    color: var(--ibracel-green);
    flex-shrink: 0;
    display: block;
    transform: translateY(-1px);
}

.card-meta {
    font-size: 0.8rem;
    color: var(--ibracel-text-muted);
    margin-bottom: 0.4rem;
}

.card-text {
    font-size: 0.86rem;
    color: var(--ibracel-text-muted);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(13, 166, 156, 0.06);
    color: var(--ibracel-green-dark);
    font-size: 0.78rem;
    font-weight: 600;
}

.chip .card-icon {
    width: 16px;
    height: 16px;
}

.chip-muted {
    background: #EEF2FF;
    color: #4F46E5;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    gap: 0.8rem;
}

.timeline-year {
    font-weight: 800;
    font-size: 0.95rem;
    min-width: 3rem;
}

.timeline-body {
    font-size: 0.86rem;
    color: var(--ibracel-text-muted);
}

.timeline-roadmap {
    margin-top: 2.75rem;
}

.timeline-track {
    position: relative;
    height: 3px;
    border-radius: 999px;
    background: rgba(13, 166, 156, 0.5);
    display: none;
}

.timeline-track::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #0DA69C, #0A837C);
    opacity: 0.75;
}

.timeline-steps {
    display: grid;
    gap: 1.75rem;
    margin-top: 2.25rem;
    align-items: stretch;
}

.timeline-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}

.timeline-node-header {
    position: absolute;
    top: -2.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.timeline-node-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 3px solid #0DA69C;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(13, 166, 156, 0.18);
    transform: translateY(0);
}

.timeline-node-year {
    font-weight: 800;
    font-size: 0.9rem;
    color: #0A837C;
}

.timeline-card {
    width: 100%;
    border-radius: 18px;
    padding: 1.25rem 1.1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.timeline-card-icon {
    width: 20px;
    height: 20px;
    color: #0DA69C;
}

.timeline-card-title {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.timeline-card-text {
    font-size: 0.86rem;
    color: var(--ibracel-text-muted);
}

.timeline-node.is-active .timeline-node-dot {
    background: #0DA69C;
    border-color: #0A837C;
    box-shadow: 0 0 0 5px rgba(13, 166, 156, 0.4);
}

.timeline-node.is-active .timeline-card {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
    transform: translateY(-3px);
}

.cta-block {
    border-radius: var(--ibracel-radius-xl);
    padding: 1.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(13, 166, 156, 0.08), rgba(13, 166, 156, 0.02));
    border: 1px solid rgba(13, 166, 156, 0.15);
}

.cta-block h2 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    font-weight: 800;
}

.cta-block p {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: var(--ibracel-text-muted);
}

.cta-block--green {
    background:
        radial-gradient(900px 500px at 10% -10%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 40%),
        linear-gradient(180deg, #0DA69C 0%, #0A837C 100%);
    border-color: rgba(255, 255, 255, 0.32);
    color: #FFFFFF;
}

.cta-block--green p,
.cta-block--green .cta-list {
    color: rgba(255, 255, 255, 0.92);
}

.cta-block--green .cta-list li::marker {
    color: rgba(255, 255, 255, 0.92);
}

.cta-block--green .btn-outline {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: var(--ibracel-green);
}

.cta-block--green .btn-outline:hover {
    background: #F9FAFB;
    border-color: #FFFFFF;
    color: var(--ibracel-green-dark);
}

.cta-block {
    height: 100%;
}

.cta-list {
    margin: 0 0 1rem;
    padding-left: 1.1rem;
    font-size: 0.86rem;
    color: var(--ibracel-text-muted);
}

.cta-list li {
    margin-bottom: 0.25rem;
}

.form {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    gap: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.8rem;
}

.form-control,
.form-select,
.form-textarea {
    border-radius: 0.75rem;
    border: 1px solid var(--ibracel-border-subtle);
    padding: 0.6rem 0.75rem;
    font: inherit;
    color: var(--ibracel-text);
    background: #FFFFFF;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ibracel-green);
    box-shadow: 0 0 0 1px rgba(13, 166, 156, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-feedback {
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-feedback.success {
    color: #15803D;
}

.form-feedback.error {
    color: #B91C1C;
}

.faq {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border-radius: var(--ibracel-radius-lg);
    border: 1px solid var(--ibracel-border-subtle);
    background: #FFFFFF;
}

.faq-button {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font: inherit;
    cursor: pointer;
}

.faq-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.1rem;
}

.faq-panel {
    padding: 0 1rem 0.75rem;
    font-size: 0.86rem;
    color: var(--ibracel-text-muted);
    display: none;
}

.faq-item.is-open .faq-panel {
    display: block;
}

.faq-item.is-open .faq-icon {
    transform: rotate(90deg);
}

.map-placeholder {
    border-radius: var(--ibracel-radius-xl);
    border: 1px dashed rgba(15, 23, 42, 0.15);
    padding: 1.5rem;
    background: radial-gradient(circle at top left, rgba(13, 166, 156, 0.12), transparent 55%);
    font-size: 0.86rem;
    color: var(--ibracel-text-muted);
}

.site-footer {
    border-top: none;
    background:
        radial-gradient(900px 500px at 10% -10%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 40%),
        linear-gradient(180deg, #0DA69C 0%, #0A837C 100%);
    color: #FFFFFF;
}

.site-footer a {
    color: #FFFFFF;
}

.footer-grid {
    padding: 2.25rem 0 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    display: block;
}

.footer-column h3 {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.75rem 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom-inner {
    display: flex;
    justify-content: center;
}

.mobile-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: 100%;
    max-width: 320px;
    background: #FFFFFF;
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.2);
    transform: translateX(100%);
    transition: transform 0.2s ease-out;
    z-index: 50;
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ibracel-border-subtle);
}

.mobile-menu-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.menu-close {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.mobile-menu-body {
    padding: 1rem 1.5rem 1.5rem;
    overflow-y: auto;
}

.mobile-menu-ctas {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.mobile-menu nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ibracel-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu nav a:hover {
    color: var(--ibracel-green-dark);
}

.mobile-nav-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.mobile-item-has-children {
    margin-bottom: 0.15rem;
}

.mobile-nav-button {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0;
    font: inherit;
    cursor: pointer;
    color: var(--ibracel-text-muted);
}

.mobile-chevron {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.mobile-submenu {
    list-style: none;
    padding-left: 2.6rem;
    margin: 0.1rem 0 0.3rem;
    display: none !important;
    gap: 0.35rem;
}

.mobile-item-has-children.is-open .mobile-submenu {
    display: grid !important;
}

.mobile-item-has-children.is-open .mobile-chevron {
    transform: rotate(180deg);
}

.mobile-item-has-children.is-open .mobile-nav-label {
    font-weight: 700;
    color: var(--ibracel-text);
}

.mobile-icon {
    width: 18px;
    height: 18px;
}

.mobile-submenu a {
    font-size: 0.9rem;
    color: var(--ibracel-text-muted);
}

.mobile-submenu .mobile-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.reveal {
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.5s ease-out, filter 0.5s ease-out;
}

.js .reveal.is-visible {
    opacity: 1;
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        filter: none !important;
        transition: none !important;
    }

    .card,
    .btn {
        transition: none !important;
    }
}

@media (min-width: 768px) {
    .header-inner {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .main-nav {
        display: block;
    }

    .header-ctas {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .hero {
        padding: 3.5rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
        gap: 2.75rem;
    }

    section {
        padding: 3rem 0;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
    }

    .timeline {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(0, 1fr);
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-year {
        min-width: 0;
    }

    .cta-block {
        padding: 2rem 2rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .timeline-track {
        display: block;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 2rem;
    }

    .hero {
        padding: 3.25rem 0 2.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .timeline-track {
        display: block;
    }

    .timeline-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: 4.25rem;
    }

    .timeline-card {
        margin-top: 1.25rem;
    }
}

@media (max-width: 767px) {
    .site-header {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .site-header .container {
        padding-left: 0;
        padding-right: 0;
    }

    .header-inner {
        width: calc(100% - 2.5rem);
        margin-left: auto;
        margin-right: auto;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        border-radius: 18px;
    }

    .brand {
        margin-left: 0.75rem;
    }

    .menu-toggle {
        margin-right: 0.75rem;
    }

    .site-footer .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .timeline-roadmap {
        position: relative;
        margin-top: 1.5rem;
        padding-left: 4rem;
    }

    .timeline-track {
        display: block;
        position: absolute;
        left: 1.5rem;
        top: 0.25rem;
        bottom: 0.25rem;
        width: 3px;
        height: auto;
    }

    .timeline-track::before {
        background: linear-gradient(180deg, #0DA69C, #0A837C);
    }

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 0;
    }

    .timeline-node {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .timeline-node-header {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 0.25rem;
        flex: 0 0 auto;
    }

    .timeline-node-dot {
        transform: translateY(0);
        margin: 0;
        margin-left: -2.5rem;
        margin-right: 0.35rem;
    }

    .timeline-node-year {
        font-size: 0.85rem;
    }

    .timeline-card {
        width: 100%;
        position: relative;
    }

    .timeline-card::before {
        content: "";
        position: absolute;
        left: -4rem;
        top: 1.4rem;
        width: 4rem;
        height: 2px;
        background: #0DA69C;
    }

    .timeline-card-title {
        font-size: 0.9rem;
    }
}
