:root {
    --color-primary: #0e2f37;
    --color-secondary: #debf7f;
    --color-light: #f6f2ef;
    --color-neutral: #e1d8c7;
    --color-white: #ffffff;
    --color-text: #18353b;
    --color-text-soft: #5c6b70;
    --color-border: rgba(14, 47, 55, 0.10);
    --shadow-soft: 0 20px 60px rgba(14, 47, 55, 0.08);
    --shadow-medium: 0 20px 50px rgba(14, 47, 55, 0.14);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --transition: all 0.45s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-light);
    color: var(--color-text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.section-space {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 18px;
}

.section-header {
    max-width: 800px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--color-text-soft);
    line-height: 1.8;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(246, 242, 239, 0.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(14, 47, 55, 0.08);
    padding: 12px 0;
}

.brand-logo img {
    width: 180px;
}
.navbar-nav .nav-link {
    color: white;
    font-weight: 600;
    font-size: 0.96rem;
    margin-left: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-secondary);
}

.site-header.scrolled .navbar-nav .nav-link {
    color: var(--color-primary);
}

.site-header.scrolled .navbar-nav .nav-link:hover {
    color: var(--color-secondary);
}
.custom-toggler {
    border: none;
    box-shadow: none;
    padding: 0;
}

.custom-toggler span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-primary);
    margin: 6px 0;
    transition: var(--transition);
}

.btn {
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-brand {
    background: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.btn-brand:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-2px);
}
.btn-brand2 {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-brand2:hover {
   background: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.btn-outline-brand {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(14, 47, 55, 0.18);
}

.btn-outline-brand:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    min-height: 125vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(14,47,55,0.95), rgba(14,47,55,0.70));
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.20;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.08;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    max-width: 780px;
}

.hero-content p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.86);
    max-width: 640px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    object-fit: cover;
    min-height: 540px;
}

.hero-overlay-shape {
    position: absolute;
    right: -140px;
    bottom: -140px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(222,191,127,0.28), transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.pillar-card,
.method-card,
.warning-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 34px 28px;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.pillar-card:hover,
.method-card:hover,
.warning-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.pillar-card h3,
.method-card h3,
.warning-card h3 {
    font-size: 1.18rem;
    line-height: 1.4;
    color: var(--color-primary);
    margin-bottom: 14px;
    font-weight: 700;
}

.pillar-card p,
.method-card p,
.warning-card p {
    color: var(--color-text-soft);
    line-height: 1.8;
    margin-bottom: 0;
}

.about-image img,
.mentoria-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    min-height: 580px;
    object-fit: cover;
}

.about-content h2,
.mentoria-content h2,
.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.18;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 22px;
}

.about-content p,
.mentoria-content p,
.cta-box p {
    color: var(--color-text-soft);
    line-height: 1.9;
    font-size: 1.03rem;
}

.alt-bg {
    background: linear-gradient(180deg, rgba(225,216,199,0.45), rgba(246,242,239,0.75));
}

.alt-bg-light {
    background: #fbf8f5;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: var(--color-text);
    font-weight: 500;
}

.custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-secondary);
    box-shadow: 0 0 0 6px rgba(222,191,127,0.18);
}

.warning-card span {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 0.12em;
}

.cta-box {
    background: linear-gradient(135deg, rgba(14,47,55,1), rgba(14,47,55,0.92));
    border-radius: var(--radius-lg);
    padding: 70px 50px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    top: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(222,191,127,0.22), transparent 70%);
}

.cta-box h2,
.cta-box p {
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.cta-buttons {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.site-footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.84);
    padding: 90px 0 30px;
}

.footer-brand img {
    width: 180px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-links ul li a,
.footer-contact ul li a {
    color: rgba(255,255,255,0.78);
    line-height: 1.9;
}

.footer-links h5,
.footer-contact h5 {
    color: var(--color-secondary);
    margin-bottom: 22px;
    font-weight: 700;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 50px;
    padding-top: 24px;
    text-align: center;
}

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-scale {
    transform: scale(0.92);
}

.reveal-active {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

@media (max-width: 1199px) {
    .hero-image img,
    .about-image img,
    .mentoria-image img {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .site-header {
        background: rgba(246, 242, 239, 0.96);
        box-shadow: 0 8px 25px rgba(14, 47, 55, 0.07);
    }

    .navbar-collapse {
        background: var(--color-white);
        margin-top: 18px;
        border-radius: 18px;
        padding: 18px;
        box-shadow: var(--shadow-soft);
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 12px 0;
    }

    .section-space {
        padding: 80px 0;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .cta-box {
        padding: 50px 28px;
    }
}

@media (max-width: 767px) {
    .brand-logo img {
        width: 145px;
    }

    .section-space {
        padding: 65px 0;
    }

    .hero-content h1,
    .section-header h2,
    .about-content h2,
    .mentoria-content h2,
    .cta-box h2 {
        font-size: 2rem;
    }

    .hero-content p,
    .section-header p,
    .about-content p,
    .mentoria-content p,
    .cta-box p {
        font-size: 0.98rem;
    }

    .pillar-card,
    .method-card,
    .warning-card {
        padding: 28px 22px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 180px 0 110px;
}

.page-hero-light {
    background: linear-gradient(180deg, #f6f2ef 0%, #fbf8f5 100%);
}

.page-hero-dark {
    position: relative;
    background: linear-gradient(135deg, rgba(14,47,55,0.96), rgba(14,47,55,0.82));
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
}

.page-hero-light .page-hero-content h1 {
    color: var(--color-primary);
}

.page-hero-dark .page-hero-content h1 {
    color: var(--color-white);
}

.page-hero-content p {
    font-size: 1.06rem;
    line-height: 1.9;
    max-width: 760px;
    margin: 0 auto;
}

.page-hero-light .page-hero-content p {
    color: var(--color-text-soft);
}

.page-hero-dark .page-hero-content p {
    color: rgba(255,255,255,0.84);
}

@media (max-width: 991px) {
    .page-hero {
        padding: 150px 0 80px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 135px 0 70px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .page-hero-content p {
        font-size: 0.98rem;
    }
}
.footer-contact-list li {
    margin-bottom: 14px;
}

.footer-contact-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s ease;
}

.footer-contact-list a i {
    font-size: 1.1rem;
    color: var(--color-secondary);
    width: 22px;
    text-align: center;
}

.footer-contact-list a:hover {
    color: var(--color-secondary);
    transform: translateX(4px);
}

.footer-contact-list a:hover i {
    color: #ffffff;
}

.custom-list-icon li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--color-text);
}

.custom-list-icon li i {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-top: 4px;
    min-width: 20px;
}

.custom-list-icon li span {
    line-height: 1.7;
}
.custom-list-icon li {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(14,47,55,0.08);
    padding: 14px 18px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.custom-list-icon li:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 25px rgba(14,47,55,0.08);
}

@media (max-width: 991px) {
    .site-header {
        background: rgba(246, 242, 239, 0.96);
        backdrop-filter: blur(12px);
        box-shadow: 0 8px 25px rgba(14, 47, 55, 0.07);
    }

    .navbar {
        overflow: visible;
    }

    .navbar-collapse {
        background: #ffffff;
        margin-top: 18px;
        border-radius: 18px;
        padding: 18px 20px;
        box-shadow: 0 18px 40px rgba(14, 47, 55, 0.10);
        overflow: hidden;
        max-width: 100%;
    }

    .navbar-nav {
        width: 100%;
        align-items: flex-start !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        color: var(--color-primary) !important;
        margin-left: 0;
        padding: 12px 0;
        display: block;
        width: 100%;
    }

    .navbar-nav .nav-link:hover {
        color: var(--color-secondary) !important;
    }

    .navbar-nav .btn.btn-brand {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 12px;
    }

    .custom-toggler {
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .custom-toggler:focus {
        box-shadow: none;
    }

    .custom-toggler span {
        display: block;
        width: 28px;
        height: 2px;
        background: var(--color-primary);
        margin: 6px 0;
        transition: all 0.3s ease;
    }
}

html,
body {
    overflow-x: hidden;
}