@media (max-width: 1366px) {
    .about-section .row {
        --bs-gutter-x: 5rem;
    }

    .about-frame {
        max-width: 520px;
        min-height: auto;
    }

    .about-photo-card {
        width: min(100%, 440px);
        aspect-ratio: 16 / 11;
    }
}

:root {
    --primary: #07285d;
    --primary-deep: #041a3c;
    --accent: #e3431c;
    --surface: #ffffff;
    --text: #173052;
    --text-soft: #5a6f8f;
    --border: rgba(7, 40, 93, 0.12);
    --shadow-soft: 0 18px 45px rgba(7, 40, 93, 0.1);
    --shadow-strong: 0 24px 60px rgba(4, 26, 60, 0.18);
    --radius-lg: 28px;
    --radius-md: 20px;
    --header-height: 88px;
    --transition: 0.35s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(227, 67, 28, 0.1), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f4f7fb 35%, #ffffff 100%);
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.site-shell {
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 96px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(227, 67, 28, 0.1);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.cta-panel h2 {
    margin: 18px 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.65rem);
    line-height: 1.14;
    color: var(--primary);
}

.section-heading p,
.about-content p,
.cta-panel p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.78;
    color: var(--text-soft);
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 18px 0;
    transition: padding var(--transition), background-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.is-scrolled {
    padding: 12px 0;
    background: rgba(4, 26, 60, 0.8);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(3, 16, 39, 0.18);
}

.header-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.header.is-scrolled .header-bar {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.08);
}

.brand {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
    min-height: 78px;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
}

.brand img {
    max-height: 66px;
    width: auto;
    filter: drop-shadow(0 10px 24px rgba(3, 16, 39, 0.22));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-right: 14px;
}

.nav-menu a {
    color: #fff;
    font-size: 0.96rem;
    font-weight: 700;
    transition: color var(--transition), transform var(--transition);
}

.nav-menu a:hover {
    color: #ffd2c7;
    transform: translateY(-2px);
}

.nav-menu .nav-cta {
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6a3d 100%);
    box-shadow: 0 16px 28px rgba(227, 67, 28, 0.32);
}

.nav-menu .nav-cta:hover {
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height) + 80px) 0 108px;
    background: linear-gradient(135deg, rgba(4, 26, 60, 0.96) 0%, rgba(7, 40, 93, 0.88) 48%, rgba(14, 61, 126, 0.9) 100%);
    color: #fff;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.65;
}

.hero-bg-shape-one {
    top: 140px;
    right: -90px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(227, 67, 28, 0.8) 0%, rgba(227, 67, 28, 0.05) 65%, transparent 72%);
}

.hero-bg-shape-two {
    bottom: -30px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.02) 60%, transparent 68%);
}

.hero-copy h1 {
    margin: 18px 0 20px;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.05rem, 3.9vw, 3.45rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    max-width: 100%;
}

.hero-title-nowrap {
    white-space: nowrap;
}

.hero-copy p {
    margin: 0;
    max-width: 520px;
    font-size: 0.92rem;
    line-height: 1.66;
    color: rgba(255, 255, 255, 0.78);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 30px;
}



.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent) 0%, #ff754b 100%);
    color: #fff;
    box-shadow: 0 16px 28px rgba(227, 67, 28, 0.28);
}

.btn-secondary-custom {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.btn-secondary-custom:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.36);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 520px;
}

.proof-item {
    padding: 20px 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.proof-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.proof-item span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-size: 0.96rem;
}

.hero-visual {
    position: relative;
    min-height: 480px;
}

.hero-card-main {
    position: relative;
    margin-left: auto;
    width: min(100%, 450px);
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(16px);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    font-weight: 700;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7cf58d;
    box-shadow: 0 0 0 8px rgba(124, 245, 141, 0.14);
}

.hero-insight {
    padding: 18px;
    border-radius: 18px;
    background: rgba(4, 26, 60, 0.52);
    margin-bottom: 18px;
}

.hero-insight small {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-insight strong {
    font-size: 1.22rem;
    line-height: 1.3;
}

.hero-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hero-visual-grid article {
    padding: 15px 11px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual-grid i {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 1.22rem;
    color: #ffd2c7;
}

.hero-visual-grid span {
    display: block;
    font-weight: 800;
}

.trust-counter-section {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--text);
}

.trust-counter-section::before {
    content: none;
}


.trust-counter-top {
    margin-top: -10px;
    margin-bottom: 42px;
}

.trust-counter-top .section-tag {
    justify-content: center;
}

.trust-counter-copy {
    max-width: 640px;
}

.trust-counter-copy h2 {
    margin: 18px 0 18px;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.12;
    color: var(--primary);
}

.trust-counter-copy p {
    margin: 0;
    max-width: 590px;
    color: var(--text-soft);
    line-height: 1.8;
}

.trust-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.trust-metric-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 26px 22px;
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(7, 40, 93, 0.98), rgba(12, 57, 127, 0.94));
    box-shadow: 0 24px 50px rgba(3, 16, 39, 0.18);
    transition: transform var(--transition), box-shadow var(--transition);
}

.trust-metric-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(227, 67, 28, 1), rgba(255, 174, 145, 0.9));
}

.trust-metric-card::after {
    content: "";
    position: absolute;
    top: -34px;
    right: -24px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 67, 28, 0.24) 0%, rgba(227, 67, 28, 0.03) 68%, transparent 76%);
}

.trust-metric-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px rgba(3, 16, 39, 0.22);
}

.trust-metric-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(227, 67, 28, 0.92), rgba(255, 140, 108, 0.96));
    color: #fff;
    font-size: 1.45rem;
    box-shadow: 0 14px 24px rgba(227, 67, 28, 0.26);
}

.trust-metric-number-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 10px;
}

.trust-counter-number,
.trust-counter-plus {
    font-family: "Sora", sans-serif;
    font-size: clamp(2.35rem, 3.35vw, 3.35rem);
    line-height: 0.9;
    color: #fff;
}

.trust-metric-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 10px;
    font-family: "Sora", sans-serif;
    font-size: 1.08rem;
    color: #fff;
}

.trust-metric-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.68;
    font-size: 0.92rem;
}
.feature-card,
.service-card,
.testimonial-card,
.step-card {
    height: 100%;
    padding: 26px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover,
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 55px rgba(7, 40, 93, 0.14);
    border-color: rgba(227, 67, 28, 0.18);
}

.icon-box,
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(7, 40, 93, 0.1), rgba(227, 67, 28, 0.14));
    color: var(--accent);
    font-size: 1.55rem;
    margin-bottom: 20px;
}

.feature-card h3,
.service-card h3,
.step-card h3,
.footer-column h3 {
    margin: 0 0 12px;
    font-family: "Sora", sans-serif;
    font-size: 1.18rem;
    color: var(--primary);
}

.feature-card p,
.service-card p,
.step-card p,
.testimonial-card p {
    margin: 0;
    line-height: 1.8;
    color: var(--text-soft);
}

.service-link {
    display: block;
    height: 100%;
    color: inherit;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card p {
    margin-bottom: 22px;
}

.service-card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--primary);
}

.service-card-cta i {
    transition: transform var(--transition);
}

.service-link:hover .service-card-cta i {
    transform: translateX(4px);
}

.about-section {
    position: relative;
    background: radial-gradient(circle at right center, rgba(7, 40, 93, 0.08) 0%, transparent 30%), linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.about-highlights {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.about-highlights div {
    padding: 16px 18px;
    border-left: 4px solid var(--accent);
    border-radius: 0 16px 16px 0;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 24px rgba(7, 40, 93, 0.08);
}

.about-highlights strong {
    display: block;
    margin-bottom: 6px;
}

.about-highlights span {
    color: var(--text-soft);
}

.about-visual {
    position: relative;
}

.about-frame {
    position: relative;
    min-height: auto;
    max-width: 600px;
    margin-left: auto;
    padding: 24px;
    border-radius: 36px;
    background: linear-gradient(160deg, rgba(7, 40, 93, 0.98) 0%, rgba(10, 58, 119, 0.94) 60%, rgba(227, 67, 28, 0.92) 100%);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-frame::before,
.about-frame::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.about-frame::before {
    width: 260px;
    height: 260px;
    top: -70px;
    right: -70px;
}

.about-frame::after {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: -40px;
}

.about-photo-card {
    position: relative;
    z-index: 1;
    width: min(100%, 500px);
    aspect-ratio: 16 / 11;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
}

.about-photo-card::after {
    content: none;
}

.about-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 34%;
    display: block;
}

.founder-section {
    position: relative;
    background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.founder-section .row {
    --bs-gutter-x: 4.75rem;
}

.founder-visual {
    position: relative;
}

.founder-frame {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 36px;
    background: linear-gradient(160deg, rgba(7, 40, 93, 0.98) 0%, rgba(10, 58, 119, 0.94) 58%, rgba(227, 67, 28, 0.88) 100%);
    box-shadow: 0 28px 56px rgba(7, 40, 93, 0.18);
    overflow: hidden;
}

.founder-frame::before {
    content: "";
    position: absolute;
    inset: auto -60px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.founder-photo-card {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.18);
}

.founder-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    display: block;
}

.founder-content p {
    text-align: justify;
}

.founder-content p + p {
    margin-top: 16px;

}
.founder-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.founder-pillars div {
    padding: 18px 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 0;
    box-shadow: 0 16px 30px rgba(7, 40, 93, 0.08);
}

.founder-pillars strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
}

.founder-pillars span {
    color: var(--text-soft);
    line-height: 1.75;
}

@media (max-width: 1366px) {
    .founder-section .row {
        --bs-gutter-x: 3.8rem;
    }

    .founder-frame {
        max-width: 420px;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.step-card {
    position: relative;
    padding-top: 82px;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(227, 67, 28, 0.2) 100%);
}

.step-number {
    position: absolute;
    top: 24px;
    left: 30px;
    font-family: "Sora", sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: rgba(7, 40, 93, 0.14);
}

.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 18px;
    right: 26px;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(7, 40, 93, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    color: var(--accent);
}

.testimonial-card strong {
    display: inline-block;
    margin-top: 22px;
    color: var(--primary);
    font-weight: 800;
}

.cta-section {
    padding-top: 20px;
    padding-bottom: 120px;
}

.cta-panel {
    padding: 44px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(4, 26, 60, 0.98) 0%, rgba(7, 40, 93, 0.96) 58%, rgba(227, 67, 28, 0.96) 100%);
    color: #fff;
    box-shadow: var(--shadow-strong);
}

.cta-panel h2,
.cta-panel p {
    color: #fff;
}

.cta-panel p {
    opacity: 0.82;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn-light-custom {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 16px 28px rgba(255, 255, 255, 0.18);
}

.btn-outline-light-custom {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.26);
}

.footer {
    background: var(--primary-deep);
    color: rgba(255, 255, 255, 0.74);
    padding: 88px 0 28px;
}

.footer-brand {
    max-width: 180px;
}

.footer-brand img {
    max-height: 64px;
    width: auto;
    margin-bottom: 22px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}


.footer-brand p,
.footer-column span,
.footer-column a {
    line-height: 1.66;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    color: #fff;
}

.footer-column a {
    transition: color var(--transition), transform var(--transition);
}

.footer-column a:hover,
.footer-bottom a:hover {
    color: #fff;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: transform var(--transition), background-color var(--transition);
}

.social-links a:hover {
    transform: translateY(-4px);
    background: rgba(227, 67, 28, 0.9);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-top: 54px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1ac95a 0%, #0da34b 100%);
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 18px 30px rgba(13, 163, 75, 0.32);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.22s;
}

@media (max-width: 1199px) {
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 12px 0;
    }

    .header-bar {
        padding: 10px 14px;
        border-radius: 24px;
    }

    .brand {
        min-height: 68px;
    }

    .brand img {
        max-height: 56px;
    }

    .nav-toggle {
        display: inline-flex;
        flex-shrink: 0;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        right: auto;
        width: min(560px, calc(100vw - 24px));
        transform: translateX(-50%);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-right: 0;
        padding: 14px 14px 16px;
        border-radius: 22px;
        background: rgba(7, 40, 93, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 18px 36px rgba(3, 16, 39, 0.24);
        backdrop-filter: blur(18px);
    }

    .header-bar.nav-open .nav-menu {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        padding: 8px 10px;
        border-radius: 12px;
        font-size: 0.92rem;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: none;
    }

    .trust-counter-copy {
        max-width: none;
    }

    .trust-metrics-grid {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .brand {
        min-height: 62px;
    }

    .brand img {
        max-height: 50px;
    }

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

    .about-section .row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }

    .about-content,
    .about-visual,
    .about-frame,
    .about-photo-card {
        width: 100%;
        max-width: 100%;
    }

    .about-frame {
        margin-left: 0;
    }

    .founder-section .row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }

    .founder-visual,
    .founder-frame,
    .founder-content {
        width: 100%;
        max-width: 100%;
    }

    .founder-pillars {
        grid-template-columns: 1fr;
    }

    .trust-counter-copy h2 {
        font-size: clamp(1.7rem, 8vw, 2.3rem);
    }

    .trust-metrics-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .trust-metric-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .trust-metric-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 1.28rem;
    }

    .trust-counter-number,
    .trust-counter-plus {
        font-size: clamp(2.35rem, 12vw, 3.35rem);
    }

    .trust-metric-card strong {
        font-size: 1rem;
    }

    .trust-metric-card p {
        font-size: 0.88rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        width: min(100%, calc(100vw - 32px));
        justify-content: center;
    }

    .cta-panel {
        padding: 30px 18px;
        border-radius: 20px;
    }

    .cta-panel .row {
        --bs-gutter-x: 0;
    }

    .cta-panel h2 {
        font-size: clamp(1.55rem, 7vw, 2rem);
        line-height: 1.18;
    }

    .cta-panel p {
        line-height: 1.68;
    }

    .footer {
        text-align: center;
    }

    .footer-brand {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }

    .footer-brand img {
        display: block;
        margin: 0 auto 22px;
    }

    .footer-column {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (min-width: 1441px) {
    .hero-section {
        padding: calc(var(--header-height) + 118px) 0 152px;
    }
}

@media (max-width: 1440px) {
    .hero-section {
        padding: calc(var(--header-height) + 46px) 0 68px;
    }

    .hero-actions .btn {
        min-width: 248px;
    }

    .hero-visual {
        min-height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .hero-card-main {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) and (max-width: 1440px) {
    .header {
        padding: 10px 0;
    }

    .header.is-scrolled {
        padding: 8px 0;
    }

    .header-bar {
        padding: 8px 14px;
    }

    .brand {
        min-height: 58px;
        padding: 2px 0;
    }

    .brand img {
        max-height: 50px;
    }

    .nav-menu .nav-cta {
        padding: 11px 18px;
    }
}
