:root {
    --landas-navy: #022b62;
    --landas-navy-dark: #011d43;
    --landas-blue: #0a5ea8;
    --landas-blue-light: #eaf4ff;
    --landas-orange: #f26622;
    --landas-orange-dark: #d94c0d;
    --landas-gold: #f8ad18;
    --landas-gold-light: #fff6df;
    --landas-white: #ffffff;
    --landas-background: #f4f8fc;
    --landas-background-soft: #edf5fc;
    --landas-text: #18324f;
    --landas-text-light: #66768a;
    --landas-border: #dbe6f0;
    --landas-success: #16955e;
    --landas-danger: #d94242;

    --shadow-small:
        0 6px 18px rgba(2, 43, 98, 0.07);

    --shadow-medium:
        0 15px 38px rgba(2, 43, 98, 0.11);

    --shadow-large:
        0 25px 60px rgba(2, 43, 98, 0.16);

    --container-width: 1240px;
    --header-height: 82px;
    --border-radius-small: 10px;
    --border-radius-medium: 18px;
    --border-radius-large: 28px;
    --transition: 0.25s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Inter", Arial, sans-serif;
    color: var(--landas-text);
    background: var(--landas-background);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

h1,
h2,
h3,
.brand-name {
    font-family: "Montserrat", Arial, sans-serif;
}

.container {
    width: min(calc(100% - 40px), var(--container-width));
    margin-inline: auto;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(2, 43, 98, 0.08);
    backdrop-filter: blur(16px);
    transition:
        box-shadow var(--transition),
        background var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 8px 28px rgba(2, 43, 98, 0.12);
}

.nav-container {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
}

.brand-logo {
    width: 56px;
    height: 59px;
    flex-shrink: 0;
    object-fit: contain;
}

.brand-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.brand-name {
    color: var(--landas-navy);
    font-size: 1.27rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.03em;
}

.brand-subtitle {
    margin-top: 4px;
    color: var(--landas-orange);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.3;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-navigation > a {
    position: relative;
    padding: 11px 13px;
    color: #40536a;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 600;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.main-navigation > a:not(.navigation-button):hover,
.main-navigation > a:not(.navigation-button).active {
    color: var(--landas-navy);
    background: var(--landas-blue-light);
}

.main-navigation > a:not(.navigation-button).active::after {
    position: absolute;
    right: 13px;
    bottom: 4px;
    left: 13px;
    height: 2px;
    border-radius: 999px;
    background: var(--landas-orange);
    content: "";
}

.main-navigation .navigation-button {
    display: inline-flex;
    margin-left: 6px;
    padding: 12px 17px;
    align-items: center;
    gap: 8px;
    color: var(--landas-white);
    background:
        linear-gradient(
            135deg,
            var(--landas-navy),
            var(--landas-blue)
        );
    box-shadow: 0 9px 22px rgba(2, 43, 98, 0.2);
}

.main-navigation .navigation-button:hover {
    color: var(--landas-white);
    transform: translateY(-2px);
    box-shadow: 0 13px 26px rgba(2, 43, 98, 0.25);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 10px;
    background: var(--landas-blue-light);
}

.mobile-menu-button span {
    width: 22px;
    height: 2px;
    border-radius: 100px;
    background: var(--landas-navy);
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;
    padding: 28px 0 50px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 5% 20%,
            rgba(10, 94, 168, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 70%,
            rgba(248, 173, 24, 0.18),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #edf6ff 0%,
            var(--landas-background) 100%
        );
}

.hero-section::before {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 300px;
    height: 300px;
    border: 55px solid rgba(242, 102, 34, 0.06);
    border-radius: 50%;
    content: "";
}

.hero-banner {
    position: relative;
    overflow: hidden;
    border: 7px solid var(--landas-white);
    border-radius: 25px;
    background: var(--landas-white);
    box-shadow: var(--shadow-large);
}

.hero-banner::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 6px;
    background:
        linear-gradient(
            90deg,
            var(--landas-navy) 0%,
            var(--landas-blue) 38%,
            var(--landas-orange) 70%,
            var(--landas-gold) 100%
        );
    content: "";
}

.hero-banner img {
    width: 100%;
    height: auto;
}

/* =========================================================
   GLOBAL SECTION ELEMENTS
========================================================= */

.section-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 13px;
    align-items: center;
    gap: 8px;
    color: var(--landas-blue);
    border: 1px solid #cfe3f5;
    border-radius: 999px;
    background: var(--landas-blue-light);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-label.light {
    color: #eaf5ff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
}

.section-heading {
    width: min(100%, 750px);
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 16px;
    color: var(--landas-white);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.section-heading p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.8;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    min-height: 49px;
    padding: 13px 20px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 0.91rem;
    font-weight: 700;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.primary-button {
    color: var(--landas-white);
    background:
        linear-gradient(
            135deg,
            var(--landas-navy),
            var(--landas-blue)
        );
    box-shadow: 0 12px 25px rgba(2, 43, 98, 0.2);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(2, 43, 98, 0.26);
}

.secondary-button {
    color: var(--landas-navy);
    border-color: var(--landas-border);
    background: var(--landas-white);
}

.secondary-button:hover {
    border-color: #bbd3e9;
    background: var(--landas-blue-light);
    transform: translateY(-2px);
}

/* =========================================================
   WELCOME SECTION
========================================================= */

.welcome-section {
    padding: 85px 0;
    background: var(--landas-white);
}

.welcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(370px, 0.9fr);
    align-items: center;
    gap: 75px;
}

.welcome-content h1 {
    margin-bottom: 23px;
    color: var(--landas-navy);
    font-size: clamp(2.2rem, 4vw, 3.65rem);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.welcome-content p {
    color: var(--landas-text-light);
    font-size: 0.98rem;
    line-height: 1.85;
}

.welcome-content .welcome-lead {
    color: #314b68;
    font-size: 1.08rem;
    font-weight: 500;
}

.welcome-actions {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 12px;
}

.welcome-highlights {
    position: relative;
    display: grid;
    gap: 15px;
}

.welcome-highlights::before {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(10, 94, 168, 0.11),
            rgba(10, 94, 168, 0)
        );
    content: "";
    transform: translate(-50%, -50%);
}

.highlight-card {
    position: relative;
    z-index: 1;
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--landas-border);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-small);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.highlight-card:hover {
    border-color: #c2d9ed;
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.highlight-icon {
    display: flex;
    width: 53px;
    height: 53px;
    flex: 0 0 53px;
    align-items: center;
    justify-content: center;
    color: var(--landas-white);
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            var(--landas-blue),
            #2f8bd0
        );
    font-size: 1.35rem;
}

.highlight-icon.orange {
    background:
        linear-gradient(
            135deg,
            var(--landas-orange),
            #ff8d42
        );
}

.highlight-icon.gold {
    background:
        linear-gradient(
            135deg,
            var(--landas-gold),
            #ffc957
        );
}

.highlight-icon.navy {
    background:
        linear-gradient(
            135deg,
            var(--landas-navy),
            #174e89
        );
}

.highlight-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--landas-navy);
    font-size: 0.95rem;
}

.highlight-card span {
    display: block;
    color: var(--landas-text-light);
    font-size: 0.82rem;
    line-height: 1.55;
}

/* =========================================================
   FEATURES
========================================================= */

.features-section {
    position: relative;
    padding: 95px 0 105px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            var(--landas-navy-dark),
            var(--landas-navy) 48%,
            #064b89
        );
}

.features-section::before {
    position: absolute;
    top: -120px;
    left: -100px;
    width: 360px;
    height: 360px;
    border: 70px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    content: "";
}

.features-section::after {
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 430px;
    height: 430px;
    border: 80px solid rgba(248, 173, 24, 0.06);
    border-radius: 50%;
    content: "";
}

.features-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.feature-card {
    position: relative;
    min-height: 350px;
    padding: 27px 24px 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 38px rgba(0, 21, 52, 0.18);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.feature-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    background:
        linear-gradient(
            90deg,
            var(--landas-navy),
            var(--landas-blue),
            var(--landas-orange),
            var(--landas-gold)
        );
    content: "";
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 45px rgba(0, 21, 52, 0.27);
}

.feature-icon {
    display: flex;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    align-items: center;
    justify-content: center;
    color: var(--landas-white);
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            var(--landas-blue),
            #368ed0
        );
    box-shadow: 0 10px 20px rgba(10, 94, 168, 0.22);
    font-size: 1.48rem;
}

.feature-icon.orange {
    background:
        linear-gradient(
            135deg,
            var(--landas-orange),
            #ff9047
        );
    box-shadow: 0 10px 20px rgba(242, 102, 34, 0.22);
}

.feature-icon.gold {
    background:
        linear-gradient(
            135deg,
            var(--landas-gold),
            #ffc852
        );
    box-shadow: 0 10px 20px rgba(248, 173, 24, 0.22);
}

.feature-icon.navy {
    background:
        linear-gradient(
            135deg,
            var(--landas-navy),
            #1f5894
        );
    box-shadow: 0 10px 20px rgba(2, 43, 98, 0.22);
}

.feature-number {
    position: absolute;
    top: 22px;
    right: 22px;
    color: #e2ebf3;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--landas-navy);
    font-size: 1.05rem;
    line-height: 1.35;
}

.feature-card p {
    margin-bottom: 17px;
    color: var(--landas-text-light);
    font-size: 0.83rem;
    line-height: 1.65;
}

.feature-card ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 8px;
    list-style: none;
}

.feature-card li {
    position: relative;
    padding-left: 19px;
    color: #4d6178;
    font-size: 0.78rem;
    line-height: 1.5;
}

.feature-card li::before {
    position: absolute;
    top: 7px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--landas-orange);
    content: "";
}

/* =========================================================
   CENTRALIZED RECORDS
========================================================= */

.records-section {
    padding: 100px 0;
    background:
        linear-gradient(
            180deg,
            var(--landas-background) 0%,
            var(--landas-white) 100%
        );
}

.records-panel {
    position: relative;
    display: grid;
    padding: 55px;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    align-items: center;
    gap: 65px;
    overflow: hidden;
    border: 1px solid var(--landas-border);
    border-radius: 30px;
    background: var(--landas-white);
    box-shadow: var(--shadow-large);
}

.records-panel::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 7px;
    background:
        linear-gradient(
            90deg,
            var(--landas-blue),
            var(--landas-orange),
            var(--landas-gold)
        );
    content: "";
}

.records-logo {
    position: relative;
    display: flex;
    min-height: 370px;
    align-items: center;
    justify-content: center;
}

.records-logo-background {
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid #d2e3f2;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            var(--landas-blue-light),
            #ffffff 65%
        );
}

.records-logo-background::before,
.records-logo-background::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.records-logo-background::before {
    top: -18px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: rgba(242, 102, 34, 0.12);
}

.records-logo-background::after {
    bottom: 15px;
    left: 0;
    width: 55px;
    height: 55px;
    background: rgba(248, 173, 24, 0.18);
}

.records-logo img {
    position: relative;
    z-index: 1;
    width: 270px;
    max-height: 330px;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(2, 43, 98, 0.14));
}

.records-content h2 {
    margin-bottom: 20px;
    color: var(--landas-navy);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.records-content > p {
    color: var(--landas-text-light);
    font-size: 0.96rem;
    line-height: 1.85;
}

.record-list {
    display: grid;
    margin-top: 27px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.record-item {
    display: flex;
    padding: 14px;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid var(--landas-border);
    border-radius: 12px;
    background: var(--landas-background);
}

.record-item i {
    margin-top: 1px;
    color: var(--landas-success);
    font-size: 1rem;
}

.record-item span {
    color: #435b73;
    font-size: 0.81rem;
    font-weight: 600;
    line-height: 1.5;
}

/* =========================================================
   VALUES
========================================================= */

.values-section {
    padding: 30px 0 100px;
    background: var(--landas-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.value-card {
    display: flex;
    padding: 28px;
    align-items: flex-start;
    gap: 18px;
    border: 1px solid var(--landas-border);
    border-radius: 17px;
    background: var(--landas-white);
    box-shadow: var(--shadow-small);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    display: flex;
    width: 53px;
    height: 53px;
    flex: 0 0 53px;
    align-items: center;
    justify-content: center;
    color: var(--landas-white);
    border-radius: 50%;
    background: var(--landas-blue);
    font-size: 1.3rem;
}

.value-icon.orange {
    background: var(--landas-orange);
}

.value-icon.gold {
    background: var(--landas-gold);
}

.value-card h3 {
    margin-bottom: 8px;
    color: var(--landas-navy);
    font-size: 0.98rem;
}

.value-card p {
    margin-bottom: 0;
    color: var(--landas-text-light);
    font-size: 0.82rem;
    line-height: 1.65;
}

/* =========================================================
   ACCESS SECTION
========================================================= */

.access-section {
    padding: 0 0 100px;
    background: var(--landas-white);
}

.access-panel {
    position: relative;
    display: grid;
    padding: 42px 45px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 27px;
    overflow: hidden;
    border-radius: 24px;
    color: var(--landas-white);
    background:
        linear-gradient(
            135deg,
            var(--landas-navy-dark),
            var(--landas-navy) 52%,
            var(--landas-blue)
        );
    box-shadow: var(--shadow-large);
}

.access-decoration {
    position: absolute;
    border: 28px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
}

.access-decoration-one {
    top: -100px;
    right: 110px;
    width: 220px;
    height: 220px;
}

.access-decoration-two {
    bottom: -90px;
    left: 23%;
    width: 170px;
    height: 170px;
}

.access-icon {
    position: relative;
    z-index: 1;
    display: flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.11);
    font-size: 1.8rem;
}

.access-content {
    position: relative;
    z-index: 1;
}

.access-content > span {
    display: block;
    margin-bottom: 7px;
    color: var(--landas-gold);
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.access-content h2 {
    margin-bottom: 9px;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.access-content p {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    line-height: 1.7;
}

.access-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 175px;
    min-height: 50px;
    padding: 13px 21px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--landas-navy);
    border: 0;
    border-radius: 11px;
    background:
        linear-gradient(
            135deg,
            var(--landas-gold),
            #ffd15e
        );
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
    font-size: 0.88rem;
    font-weight: 800;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.access-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

/* =========================================================
   DEVELOPMENT NOTICE
========================================================= */

.development-notice {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.development-notice[hidden] {
    display: none;
}

.development-notice-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 22, 49, 0.72);
    backdrop-filter: blur(7px);
}

.development-notice-card {
    position: relative;
    z-index: 1;
    width: min(100%, 440px);
    padding: 40px 34px 34px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 21px;
    background: var(--landas-white);
    box-shadow: 0 30px 80px rgba(0, 15, 40, 0.35);
    text-align: center;
}

.notice-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: var(--landas-text-light);
    border: 0;
    border-radius: 50%;
    background: var(--landas-background);
}

.notice-icon {
    display: flex;
    width: 73px;
    height: 73px;
    margin: 0 auto 22px;
    align-items: center;
    justify-content: center;
    color: var(--landas-white);
    border-radius: 21px;
    background:
        linear-gradient(
            135deg,
            var(--landas-orange),
            var(--landas-gold)
        );
    box-shadow: 0 15px 28px rgba(242, 102, 34, 0.22);
    font-size: 1.8rem;
}

.development-notice-card h2 {
    margin-bottom: 13px;
    color: var(--landas-navy);
    font-size: 1.55rem;
}

.development-notice-card p {
    margin-bottom: 25px;
    color: var(--landas-text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.notice-button {
    width: 100%;
    border: 0;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    color: rgba(255, 255, 255, 0.76);
    background: var(--landas-navy-dark);
}

.footer-main {
    display: grid;
    padding: 62px 0 45px;
    grid-template-columns: minmax(0, 1.5fr) minmax(180px, 0.65fr) minmax(220px, 0.85fr);
    gap: 55px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.footer-logo {
    width: 75px;
    height: 80px;
    flex: 0 0 75px;
    object-fit: contain;
}

.footer-brand h2,
.footer-links h3,
.footer-contact h3 {
    color: var(--landas-white);
}

.footer-brand h2 {
    margin-bottom: 9px;
    font-size: 1.3rem;
}

.footer-brand p {
    max-width: 450px;
    margin-bottom: 0;
    font-size: 0.82rem;
    line-height: 1.75;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 18px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links a {
    margin-bottom: 10px;
    font-size: 0.81rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--landas-gold);
}

.footer-contact p {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.8rem;
    line-height: 1.55;
}

.footer-contact i {
    margin-top: 1px;
    color: var(--landas-gold);
}

.footer-bottom {
    display: flex;
    padding: 20px 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.73rem;
}

/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .welcome-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .records-panel {
        gap: 35px;
    }

    .brand-subtitle {
        display: none;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 73px;
    }

    .mobile-menu-button {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: flex;
        max-height: 0;
        padding: 0 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        overflow: hidden;
        border-bottom: 1px solid transparent;
        background: var(--landas-white);
        opacity: 0;
        visibility: hidden;
        transition:
            max-height 0.35s ease,
            padding 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease;
    }

    .main-navigation.is-open {
        max-height: 520px;
        padding-top: 18px;
        padding-bottom: 24px;
        border-bottom-color: var(--landas-border);
        box-shadow: 0 18px 28px rgba(2, 43, 98, 0.13);
        opacity: 1;
        visibility: visible;
    }

    .main-navigation > a {
        width: 100%;
        padding: 13px 14px;
    }

    .main-navigation .navigation-button {
        margin-top: 8px;
        margin-left: 0;
        justify-content: center;
    }

    .welcome-grid,
    .records-panel {
        grid-template-columns: 1fr;
    }

    .welcome-grid {
        gap: 50px;
    }

    .records-logo {
        min-height: 300px;
    }

    .records-logo-background {
        width: 290px;
        height: 290px;
    }

    .records-logo img {
        width: 235px;
        max-height: 285px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .access-panel {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .access-button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 650px) {
    .container {
        width: min(calc(100% - 28px), var(--container-width));
    }

    .brand-logo {
        width: 47px;
        height: 50px;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .hero-section {
        padding: 18px 0 35px;
    }

    .hero-banner {
        border-width: 4px;
        border-radius: 15px;
    }

    .welcome-section,
    .records-section {
        padding: 70px 0;
    }

    .features-section {
        padding: 75px 0 80px;
    }

    .welcome-content h1 {
        font-size: 2.15rem;
    }

    .welcome-actions {
        flex-direction: column;
    }

    .welcome-actions a {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .records-panel {
        padding: 30px 21px;
        gap: 25px;
        border-radius: 21px;
    }

    .records-logo {
        min-height: 245px;
    }

    .records-logo-background {
        width: 225px;
        height: 225px;
    }

    .records-logo img {
        width: 185px;
        max-height: 225px;
    }

    .record-list {
        grid-template-columns: 1fr;
    }

    .values-section {
        padding-bottom: 75px;
    }

    .value-card {
        padding: 23px 20px;
    }

    .access-section {
        padding-bottom: 75px;
    }

    .access-panel {
        padding: 32px 23px;
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .access-icon {
        margin-inline: auto;
    }

    .footer-main {
        padding-top: 50px;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .site-brand {
        gap: 9px;
    }

    .brand-name {
        font-size: 0.93rem;
    }

    .mobile-menu-button {
        width: 41px;
        height: 41px;
    }

    .highlight-card {
        padding: 17px;
        align-items: flex-start;
    }

    .highlight-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 12px;
    }

    .footer-brand {
        flex-direction: column;
    }
}