:root {
    --primary: #123b7a;
    --primary-dark: #0b2b5c;
    --blue: #087fc1;
    --light-blue: #eaf6fc;

    --text: #172033;
    --muted: #64748b;

    --background: #f8fafc;
    --white: #ffffff;

    --border: #e5eaf0;

    --radius-lg: 28px;
    --radius-md: 18px;

    --container: 1180px;
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: "Manrope", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* ================= COMMON ================= */

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.section-label {
    display: inline-block;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}

.section-header h2 {
    margin-top: 12px;

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.12;

    color: var(--primary);
}

.section-header > p {
    max-width: 430px;

    color: var(--muted);
}

.section-header.centered {
    display: block;
    text-align: center;

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;
}

.section-header.centered > p {
    margin: 18px auto 0;
}


/* ================= HEADER ================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: 78px;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid rgba(18, 59, 122, 0.08);

    backdrop-filter: blur(14px);
}

.header-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    width: 52px;
    height: 52px;

    object-fit: contain;
}

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

    line-height: 1.1;
}

.brand-text strong {
    color: var(--primary);

    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.brand-text span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    position: relative;

    color: #475569;

    font-size: 13px;
    font-weight: 600;

    transition: 0.25s;
}

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

.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -8px;

    height: 2px;

    background: var(--blue);
}

.header-button {
    padding: 11px 19px;

    color: white;

    background: var(--primary);

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s;
}

.header-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}


/* ================= MOBILE MENU ================= */

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    background: var(--light-blue);

    border-radius: 10px;

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    background: var(--primary);
}

.mobile-menu {
    display: none;
}


/* ================= HERO ================= */

.hero {
    position: relative;
    overflow: hidden;

    min-height: 690px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #f8fbfe 0%,
            #ffffff 55%,
            #eef8fd 100%
        );
}

.hero-pattern {
    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -180px;

    border: 1px solid rgba(8, 127, 193, 0.08);

    border-radius: 50%;
}

.hero-pattern::before,
.hero-pattern::after {
    content: "";

    position: absolute;

    inset: 60px;

    border: 1px solid rgba(8, 127, 193, 0.08);

    border-radius: 50%;
}

.hero-pattern::after {
    inset: 120px;
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 70px;

    align-items: center;
}

.hero-content {
    padding: 70px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 7px 12px;

    color: var(--primary);

    background: var(--light-blue);

    border-radius: 50px;

    font-size: 11px;
    font-weight: 700;
}

.badge-dot {
    width: 7px;
    height: 7px;

    background: var(--blue);

    border-radius: 50%;
}

.hero h1 {
    max-width: 650px;

    margin: 24px 0 20px;

    color: var(--primary);

    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    color: var(--blue);
}

.hero-content > p {
    max-width: 600px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;

    padding: 0 21px;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--primary);

    background: white;

    border: 1px solid var(--border);
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 40px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars span {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: -7px;

    color: white;

    background: var(--blue);

    border: 2px solid white;

    border-radius: 50%;

    font-size: 12px;
}

.trust-avatars span:nth-child(2) {
    background: var(--primary);
}

.trust-avatars span:nth-child(3) {
    background: #55a7cf;
}

.hero-trust strong,
.hero-trust small {
    display: block;
}

.hero-trust strong {
    font-size: 12px;
}

.hero-trust small {
    color: var(--muted);
    font-size: 10px;
}


/* ================= HERO VISUAL ================= */

.hero-visual {
    position: relative;

    min-height: 560px;
}

.hero-circle {
    position: absolute;

    width: 470px;
    height: 470px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background: var(--light-blue);

    border-radius: 50%;
}

.hero-card-main {
    position: absolute;

    width: 360px;
    height: 450px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%) rotate(2deg);

    overflow: hidden;

    background: white;

    border: 10px solid white;

    border-radius: 30px;

    box-shadow:
        0 25px 70px rgba(18, 59, 122, 0.16);
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--primary),
            var(--blue)
        );

    text-align: center;
}

.placeholder-icon {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    color: white;

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 50%;

    font-size: 34px;
}

.hero-image-placeholder span {
    font-size: 12px;
    opacity: .8;
}

.hero-image-placeholder strong {
    margin-top: 4px;

    font-family: "Manrope";

    font-size: 24px;
}


/* Floating cards */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 13px 16px;

    background: white;

    border: 1px solid rgba(18,59,122,.08);

    border-radius: 13px;

    box-shadow: 0 15px 40px rgba(18,59,122,.12);
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    color: var(--primary);
    font-size: 12px;
}

.floating-card span {
    color: var(--muted);
    font-size: 9px;
}

.floating-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: var(--primary);

    border-radius: 9px;

    font-size: 14px;
}

.floating-icon.blue {
    background: var(--blue);
}

.floating-card-top {
    top: 70px;
    right: 5px;
}

.floating-card-bottom {
    bottom: 65px;
    left: 5px;
}


/* ================= IMPACT ================= */

.impact-section {
    position: relative;
    z-index: 5;

    margin-top: -55px;
}

.impact-card {
    display: grid;

    grid-template-columns: 1.1fr 2fr;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(18,59,122,.08);

    overflow: hidden;
}

.impact-intro {
    padding: 35px;
}

.impact-intro h2 {
    margin-top: 8px;

    color: var(--primary);

    font-size: 22px;
    line-height: 1.3;
}

.impact-items {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.impact-item {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 25px;

    border-left: 1px solid var(--border);
}

.impact-item strong {
    color: var(--primary);

    font-family: "Manrope";

    font-size: 25px;
}

.impact-item span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;
}


/* ================= ABOUT ================= */

.about-section {
    padding: 140px 0 110px;
}

.about-grid {
    display: grid;

    grid-template-columns: .9fr 1fr;

    gap: 100px;

    align-items: center;
}

.about-visual {
    position: relative;

    min-height: 480px;
}

.about-image {
    width: 100%;
    height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #edf8fd,
            #dceff8
        );

    border-radius: 30px;
}

.about-logo {
    width: 220px;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;

    border-radius: 50%;

    box-shadow: 0 20px 50px rgba(18,59,122,.13);
}

.about-logo img {
    width: 180px;
    height: 180px;

    object-fit: contain;
}

.about-year {
    position: absolute;

    right: -25px;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px 22px;

    background: var(--primary);

    color: white;

    border-radius: 15px;

    box-shadow: 0 15px 40px rgba(18,59,122,.2);
}

.about-year strong {
    font-family: "Manrope";
    font-size: 28px;
}

.about-year span {
    font-size: 10px;
    line-height: 1.3;
    opacity: .8;
}

.about-content h2 {
    margin: 12px 0 20px;

    color: var(--primary);

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;
}

.about-content h2 span {
    display: block;
    color: var(--blue);
}

.about-content p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}

.about-content .lead {
    margin-bottom: 10px;

    color: #475569;

    font-size: 17px;
}

.about-points {
    margin-top: 25px;

    display: grid;
    gap: 10px;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #475569;

    font-size: 13px;
    font-weight: 600;
}

.about-points span {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--blue);

    background: var(--light-blue);

    border-radius: 50%;

    font-size: 11px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 28px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 700;
}

.text-link span {
    transition: .2s;
}

.text-link:hover span {
    transform: translateX(4px);
}


/* ================= ACTIVITIES ================= */

.activities-section {
    padding: 110px 0;

    background: var(--background);
}

.activities-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.activity-card {
    position: relative;

    min-height: 350px;

    padding: 28px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    transition: .3s;
}

.activity-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(18,59,122,.08);
}

.activity-card.featured {
    color: white;

    background: var(--primary);
}

.activity-card.featured h3,
.activity-card.featured p {
    color: white;
}

.activity-card.featured p {
    opacity: .75;
}

.activity-number {
    position: absolute;

    top: 24px;
    right: 24px;

    color: #cbd5e1;

    font-size: 11px;
    font-weight: 700;
}

.featured .activity-number {
    color: rgba(255,255,255,.35);
}

.activity-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 35px;
    margin-bottom: 35px;

    color: var(--blue);

    background: var(--light-blue);

    border-radius: 14px;

    font-size: 20px;
}

.featured .activity-icon {
    color: white;
    background: rgba(255,255,255,.12);
}

.activity-card h3 {
    margin-bottom: 12px;

    color: var(--primary);

    font-size: 19px;
}

.activity-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}

.activity-card a {
    position: absolute;

    left: 28px;
    bottom: 25px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 700;
}

.featured a {
    color: white;
}


/* ================= LIFEFLOW ================= */

.lifeflow-section {
    padding: 110px 0;
}

.lifeflow-card {
    position: relative;

    min-height: 400px;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 65px;

    color: white;

    background:
        linear-gradient(
            115deg,
            var(--primary-dark),
            var(--primary),
            var(--blue)
        );

    border-radius: 28px;
}

.lifeflow-content {
    position: relative;
    z-index: 2;

    max-width: 560px;
}

.lifeflow-content .section-label {
    color: #9dd9f3;
}

.lifeflow-content h2 {
    margin: 12px 0 18px;

    font-size: clamp(35px, 5vw, 52px);
    line-height: 1.1;
}

.lifeflow-content h2 span {
    color: #8fd3ef;
}

.lifeflow-content p {
    max-width: 520px;

    color: rgba(255,255,255,.72);

    font-size: 14px;

    line-height: 1.8;
}

.btn-white {
    color: var(--primary);

    background: white;
}

.btn-white:hover {
    transform: translateY(-2px);
}

.lifeflow-actions {
    margin-top: 28px;
}

.lifeflow-visual {
    position: absolute;

    width: 420px;
    height: 420px;

    right: 30px;
    top: 50%;

    transform: translateY(-50%);
}

.blood-symbol {
    position: absolute;

    z-index: 3;

    width: 120px;
    height: 120px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    font-size: 50px;
}

.lifeflow-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 50%;
}

.ring-one {
    width: 260px;
    height: 260px;
}

.ring-two {
    width: 400px;
    height: 400px;
}


/* ================= PROJECTS ================= */

.projects-section {
    padding: 110px 0;

    background: var(--background);
}

.project-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.project-card {
    overflow: hidden;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;
}

.project-image {
    height: 230px;

    display: flex;
    align-items: flex-end;

    padding: 20px;

    background:
        linear-gradient(
            145deg,
            #d9edf7,
            #b7dff0
        );
}

.project-image span {
    padding: 7px 10px;

    color: var(--primary);

    background: white;

    border-radius: 7px;

    font-size: 10px;
    font-weight: 700;
}

.project-two {
    background:
        linear-gradient(
            145deg,
            #d8e9f8,
            #c0d6ed
        );
}

.project-three {
    background:
        linear-gradient(
            145deg,
            #e5eef8,
            #cddceb
        );
}

.project-content {
    padding: 25px;
}

.project-category {
    color: var(--blue);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.project-content h3 {
    margin: 8px 0;

    color: var(--primary);

    font-size: 20px;
}

.project-content p {
    margin-bottom: 20px;

    color: var(--muted);

    font-size: 13px;
}

.project-content a {
    color: var(--primary);

    font-size: 11px;
    font-weight: 700;
}


/* ================= GALLERY ================= */

.gallery-section {
    padding: 110px 0;
}

.gallery-empty {
    min-height: 350px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 50px 25px;

    text-align: center;

    background: var(--background);

    border: 1px dashed #cbd5e1;

    border-radius: 24px;
}

.gallery-empty-icon {
    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    color: var(--blue);

    background: var(--light-blue);

    border-radius: 50%;
}

.gallery-empty h3 {
    margin-bottom: 8px;

    color: var(--text);

    font-size: 21px;
}

.gallery-empty p {
    max-width: 480px;

    color: var(--muted);

    font-size: 14px;
}


/* ================= CTA ================= */

.cta-section {
    padding: 0 0 110px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 55px 65px;

    color: white;

    background: var(--primary);

    border-radius: 25px;
}

.cta-card .section-label {
    color: #9dd9f3;
}

.cta-card h2 {
    margin: 10px 0;

    font-size: 38px;
}

.cta-card p {
    color: rgba(255,255,255,.7);

    font-size: 14px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.cta-link {
    color: white;

    font-size: 12px;
    font-weight: 700;
}


/* ================= CONTACT ================= */

.contact-section {
    padding: 110px 0;

    background: var(--background);
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}

.contact-grid h2 {
    margin: 12px 0 18px;

    color: var(--primary);

    font-size: clamp(36px, 5vw, 54px);

    line-height: 1.05;
}

.contact-grid h2 span {
    display: block;
    color: var(--blue);
}

.contact-grid > div > p {
    max-width: 480px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}

.contact-details {
    display: grid;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 22px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 15px;
}

.contact-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--blue);

    background: var(--light-blue);

    border-radius: 10px;
}

.contact-item small,
.contact-item strong {
    display: block;
}

.contact-item small {
    margin-bottom: 3px;

    color: var(--muted);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.contact-item strong {
    color: var(--primary);

    font-size: 13px;
}


/* ================= FOOTER ================= */

.footer {
    color: white;

    background: #0b2854;
}

.footer-top {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 70px;

    padding: 65px 0;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand img {
    width: 60px;
    height: 60px;

    object-fit: contain;

    background: white;

    border-radius: 50%;
}

.footer-brand > div {
    margin-top: 15px;
}

.footer-brand strong {
    display: block;

    font-family: "Manrope";

    font-size: 22px;
}

.footer-brand span {
    color: rgba(255,255,255,.5);

    font-size: 8px;

    letter-spacing: 1px;
}

.footer-brand p {
    margin-top: 15px;

    color: rgba(255,255,255,.55);

    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links h4 {
    margin-bottom: 8px;

    font-size: 13px;
}

.footer-links a {
    color: rgba(255,255,255,.55);

    font-size: 11px;

    transition: .2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,.1);

    color: rgba(255,255,255,.4);

    font-size: 9px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    .main-nav {
        display: none;
    }

    .header-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .hero-content {
        padding: 70px 0 20px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .impact-card {
        grid-template-columns: 1fr;
    }

    .impact-items {
        border-top: 1px solid var(--border);
    }

    .impact-item:first-child {
        border-left: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

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

    .lifeflow-visual {
        opacity: .4;
    }

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

    .project-card:last-child {
        display: none;
    }

    .contact-grid {
        gap: 50px;
    }

}


@media (max-width: 700px) {

    .container {
        width: min(100% - 30px, var(--container));
    }

    .site-header {
        height: 70px;
    }

    .brand img {
        width: 45px;
        height: 45px;
    }

    .brand-text strong {
        font-size: 19px;
    }

    .mobile-menu {
        position: fixed;

        z-index: 999;

        top: 70px;
        left: 15px;
        right: 15px;

        display: flex;
        flex-direction: column;

        padding: 15px;

        background: white;

        border: 1px solid var(--border);

        border-radius: 15px;

        box-shadow: 0 20px 50px rgba(18,59,122,.15);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition: .25s;
    }

    .mobile-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu a {
        padding: 13px 10px;

        color: var(--primary);

        border-bottom: 1px solid #f0f2f5;

        font-size: 13px;
        font-weight: 600;
    }

    .mobile-menu-button {
        margin-top: 8px;

        color: white !important;

        background: var(--primary);

        border-radius: 8px;

        text-align: center;
    }

    .hero {
        min-height: auto;
    }

    .hero h1 {
        font-size: 47px;
        letter-spacing: -2px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-visual {
        min-height: 410px;
    }

    .hero-circle {
        width: 330px;
        height: 330px;
    }

    .hero-card-main {
        width: 260px;
        height: 340px;
    }

    .floating-card-top {
        right: 0;
        top: 35px;
    }

    .floating-card-bottom {
        left: 0;
        bottom: 35px;
    }

    .impact-section {
        margin-top: 0;
    }

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

    .impact-item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .impact-item:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .about-section,
    .activities-section,
    .lifeflow-section,
    .projects-section,
    .gallery-section,
    .contact-section {
        padding: 80px 0;
    }

    .about-image {
        height: 360px;
    }

    .about-visual {
        min-height: 390px;
    }

    .about-logo {
        width: 170px;
        height: 170px;
    }

    .about-logo img {
        width: 140px;
        height: 140px;
    }

    .about-year {
        right: 0;
    }

    .section-header {
        display: block;
    }

    .section-header > p {
        margin-top: 18px;
    }

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

    .activity-card {
        min-height: 320px;
    }

    .lifeflow-card {
        padding: 40px 30px;

        min-height: 450px;
    }

    .lifeflow-visual {
        right: -120px;
        opacity: .25;
    }

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

    .project-card:last-child {
        display: block;
    }

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

        padding: 40px 30px;
    }

    .cta-card h2 {
        font-size: 32px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

}


@media (max-width: 400px) {

    .hero h1 {
        font-size: 41px;
    }

    .hero-visual {
        min-height: 370px;
    }

    .hero-card-main {
        width: 235px;
        height: 310px;
    }

    .hero-circle {
        width: 290px;
        height: 290px;
    }

    .floating-card {
        padding: 10px;
    }

    .floating-card-top {
        right: -5px;
    }

    .floating-card-bottom {
        left: -5px;
    }

}