:root {
    --green-950: #073f31;
    --green-900: #0b4f3c;
    --green-850: #0d5a43;
    --green-800: #0f6249;
    --green-700: #147353;
    --green-600: #1d8460;
    --green-500: #2b966d;
    --green-300: #8fc8aa;
    --green-200: #b9ddc9;
    --green-100: #ddf0e5;
    --green-50: #f3faf6;
    --green-25: #f8fcf9;

    --white: #ffffff;
    --ink: #173129;
    --muted: #60726b;
    --line: #dce9e1;
    --danger: #b94242;

    --shadow-sm: 0 10px 26px rgba(9, 73, 54, 0.07);
    --shadow-md: 0 18px 48px rgba(9, 73, 54, 0.11);
    --shadow-lg: 0 30px 70px rgba(6, 58, 43, 0.16);

    --font-primary: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
}

/* =========================================================
   Typography: mengikuti karakter visual SILAKOM
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.page-title,
.auth-title {
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: -0.035em;
}

.hero-eyebrow,
.section-kicker,
.kicker,
.eyebrow,
.module-number,
.process-number {
    font-family: var(--font-primary);
}

.container.shell {
    max-width: 1140px;
}

.btn {
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    transition: 0.2s ease;
}

.btn-brand {
    border: 1px solid var(--green-700);
    background: var(--green-700);
    color: var(--white);
    padding: 12px 20px;
    box-shadow: 0 9px 22px rgba(20, 115, 83, 0.18);
}

.btn-brand:hover,
.btn-brand:focus {
    border-color: var(--green-900);
    background: var(--green-900);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-login {
    border: 1px solid #b9c9c1;
    background: var(--white);
    color: var(--green-950);
    padding: 11px 18px;
}

.btn-login:hover,
.btn-login:focus {
    border-color: var(--green-700);
    color: var(--green-700);
}

.btn-outline-brand {
    border: 1px solid var(--green-300);
    background: transparent;
    color: var(--green-800);
    padding: 12px 19px;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    border-color: var(--green-800);
    background: var(--green-800);
    color: var(--white);
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(220, 233, 225, 0.95);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
}

.site-header .navbar {
    min-height: 86px;
    padding: 10px 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
}

.navbar-brand img {
    display: block;
    width: 184px;
    height: auto;
}

.navbar-toggler {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--green-50);
    color: var(--green-900);
    box-shadow: none !important;
}

.navbar-toggler i {
    font-size: 25px;
}

.desktop-navigation {
    flex: 1 1 auto;
    justify-content: flex-end;
}

.main-nav {
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.main-nav .nav-link {
    border-radius: 9px;
    color: #334a41;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 13px !important;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    background: var(--green-50);
    color: var(--green-700);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}
/* =========================================================
   Mobile offcanvas navigation
   ========================================================= */

.mobile-navigation {
    width: min(360px, 88vw) !important;
    border-left: 0;
    background: var(--white);
    box-shadow: -20px 0 60px rgba(6, 58, 43, 0.16);
}

.mobile-navigation .offcanvas-header {
    min-height: 86px;
    padding: 17px 22px;
    border-bottom: 1px solid var(--line);
}

.mobile-menu-logo {
    display: inline-flex;
    align-items: center;
}

.mobile-menu-logo img {
    width: 170px;
    height: auto;
}

.mobile-menu-close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--green-50);
    color: var(--green-900);
    font-size: 20px;
}

.mobile-navigation .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 24px 22px 22px;
}

.mobile-menu-intro {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
}

.mobile-menu-intro span {
    color: var(--green-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-menu-intro strong {
    color: var(--green-950);
    font-size: 16px;
    line-height: 1.45;
}

.mobile-nav-list {
    display: grid;
    gap: 8px;
}

.mobile-nav-list > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 13px 14px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: #385047;
    font-size: 15px;
    font-weight: 700;
    transition: 0.2s ease;
}

.mobile-nav-list > a > span {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.mobile-nav-list > a > span > i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--green-50);
    color: var(--green-700);
    font-size: 16px;
}

.mobile-nav-list > a > i {
    color: #9caf9f;
    font-size: 13px;
}

.mobile-nav-list > a:hover,
.mobile-nav-list > a.active {
    border-color: #d7e8dd;
    background: var(--green-50);
    color: var(--green-800);
}

.mobile-nav-list > a.active > span > i {
    background: var(--green-700);
    color: var(--white);
}

.mobile-menu-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.mobile-menu-actions .btn {
    min-height: 49px;
}

.mobile-menu-footer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
    color: #71837a;
    font-size: 12px;
    line-height: 1.6;
}

.mobile-menu-footer i {
    flex: 0 0 auto;
    color: var(--green-600);
    font-size: 18px;
}

.offcanvas-backdrop.show {
    opacity: 0.38;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 34px;
    background:
        radial-gradient(circle at 95% 4%, rgba(255, 255, 255, 0.09) 0, rgba(255, 255, 255, 0.09) 15%, transparent 15.2%),
        radial-gradient(circle at 6% 108%, rgba(149, 207, 174, 0.16) 0, rgba(149, 207, 174, 0.16) 23%, transparent 23.2%),
        linear-gradient(118deg, #0a5842 0%, #0d6d50 55%, #2e7a4f 100%);
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -110px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: absolute;
    right: 18%;
    bottom: -230px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-main-row {
    min-height: 470px;
}

.hero-eyebrow,
.section-kicker,
.kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--green-100);
    color: var(--green-800);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 8px 13px;
}

.hero-eyebrow {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    color: #eaf7ef;
}

.hero h1 {
    max-width: 610px;
    margin: 24px 0 21px;
    color: var(--white);
    font-size: clamp(48px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.99;
}

.hero h1 span {
    color: #b8e7ca;
}

.hero-description {
    max-width: 620px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    gap: 9px;
    padding: 13px 22px;
}

.btn-hero-primary {
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--green-900);
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
    border-color: #e9f6ee;
    background: #e9f6ee;
    color: var(--green-950);
}

.btn-hero-secondary {
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    margin-top: 30px;
}

.hero-benefits span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
}

.hero-benefits i {
    margin-right: 5px;
    color: #b8e7ca;
}

.hero-image-wrap {
    position: relative;
    max-width: 540px;
    margin-left: auto;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 34px 70px rgba(3, 44, 32, 0.24);
    backdrop-filter: blur(8px);
}

.hero-image-wrap::before {
    content: "";
    position: absolute;
    top: -18px;
    right: -18px;
    width: 100px;
    height: 100px;
    border-radius: 28px;
    background: rgba(184, 231, 202, 0.14);
    transform: rotate(10deg);
}

.hero-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 22px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 48px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.hero-stat-item {
    display: flex;
    align-items: center;
    min-height: 82px;
    gap: 12px;
    padding: 17px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-item:last-child {
    border-right: 0;
}

.hero-stat-item > i {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 39px;
    height: 39px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #c7edd5;
    font-size: 18px;
}

.hero-stat-item strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.hero-stat-item span {
    display: block;
    margin-top: 1px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
}

/* =========================================================
   Shared section typography
   ========================================================= */

.section {
    padding: 90px 0;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading-split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 42px;
}

.section-heading h2,
.about-title,
.page-hero h1,
.cta-card h2 {
    color: var(--green-950);
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.10;
}

.section-heading h2 {
    max-width: 730px;
    margin: 15px 0 0;
}

.section-heading p,
.body-copy {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.section-heading-side {
    max-width: 400px;
}

.section-heading-side p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.section-heading-side a {
    color: var(--green-700);
    font-size: 15px;
    font-weight: 800;
}

.section-heading-center {
    max-width: 790px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading-center h2 {
    margin-right: auto;
    margin-left: auto;
}

.section-heading-center p {
    margin-top: 16px;
}

/* =========================================================
   Modules
   ========================================================= */

.modules-section {
    background: var(--white);
}

.module-card {
    display: flex;
    flex-direction: column;
    min-height: 250px;
    height: 100%;
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(9, 73, 54, 0.035);
    transition: 0.23s ease;
}

.module-card:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.module-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.module-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    color: var(--green-700);
    font-size: 22px;
}

.module-number {
    color: #9baca4;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.module-card h3 {
    margin: 28px 0 24px;
    color: var(--green-950);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.38;
}

.module-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #edf3ef;
    color: #6d8077;
    font-size: 13px;
    font-weight: 700;
}

.green-1 {
    background: #e4f3e9;
}

.green-2 {
    background: #dff1e7;
}

.green-3 {
    background: #e9f5ed;
}

.green-4 {
    background: #d9ede2;
}

.green-5 {
    background: #edf7f0;
}

.green-6 {
    background: #e0f0e6;
}

.green-7 {
    background: #e8f4ec;
}

.green-8 {
    background: #dcefe4;
}
.module-empty-state {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 28px;
    border: 1px dashed #bfd6c8;
    border-radius: 18px;
    background: var(--green-25);
}

.module-empty-state > span {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 22px;
}

.module-empty-state strong {
    display: block;
    color: var(--green-950);
    font-size: 16px;
}

.module-empty-state p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
}

/* =========================================================
   Feature cards
   ========================================================= */

.soft-green-section {
    background: linear-gradient(180deg, #f5fbf7 0%, #eff8f3 100%);
}

.feature-card {
    height: 100%;
    padding: 28px 25px;
    border: 1px solid #dcebe2;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 22px;
}

.feature-card h3 {
    margin: 22px 0 10px;
    color: var(--green-950);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   Process
   ========================================================= */

.process-section {
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(125deg, #074a38 0%, #0d6d50 63%, #21774e 100%);
    color: var(--white);
}

.section-kicker-light,
.eyebrow.light,
.kicker.light {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.09);
    color: #e9f8ef;
}

.process-heading {
    margin-bottom: 42px;
}

.process-heading h2 {
    margin: 15px 0 0;
    color: var(--white);
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.10;
}

.process-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.8;
}

.process-card {
    position: relative;
    min-height: 245px;
    height: 100%;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.075);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 25px;
    font-weight: 800;
}

.process-card > i {
    color: #b8e7ca;
    font-size: 31px;
}

.process-card h3 {
    margin: 38px 0 10px;
    color: var(--white);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.process-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   Testimonials
   ========================================================= */

.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    min-height: 355px;
    height: 100%;
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.testimonial-card.large {
    min-height: 400px;
}

.quote-icon {
    display: grid;
    place-items: center;
    width: 47px;
    height: 47px;
    border-radius: 14px;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 24px;
}

.testimonial-card > p {
    margin: 22px 0 17px;
    color: #40564d;
    font-size: 16px;
    line-height: 1.82;
}

.testimonial-card.large > p {
    font-size: 17px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: var(--green-600);
    font-size: 14px;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #edf3ef;
}

.testimonial-person img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-person strong {
    display: block;
    color: var(--green-950);
    font-size: 14px;
    font-weight: 800;
}

.testimonial-person span {
    display: block;
    margin-top: 2px;
    color: #71847b;
    font-size: 12px;
}

/* Backward compatible class names used on detail page */
.testimonial {
    display: flex;
    flex-direction: column;
    min-height: 355px;
    height: 100%;
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.testimonial.large {
    min-height: 400px;
}

.testimonial > p {
    margin: 22px 0 17px;
    color: #40564d;
    font-size: 17px;
    line-height: 1.82;
}

.quote {
    display: grid;
    place-items: center;
    width: 47px;
    height: 47px;
    border-radius: 14px;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 24px;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--green-600);
    font-size: 14px;
}

.person {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #edf3ef;
}

.person img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.person strong {
    display: block;
    color: var(--green-950);
    font-size: 14px;
    font-weight: 800;
}

.person span {
    display: block;
    margin-top: 2px;
    color: #71847b;
    font-size: 12px;
}

/* =========================================================
   About preview and shared about styles
   ========================================================= */

.about-preview-section {
    background: var(--green-25);
}

.about-preview-card {
    padding: 46px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.about-preview-visual {
    position: relative;
}

.about-preview-visual img,
.rounded-main {
    display: block;
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.about-preview-visual > span {
    position: absolute;
    left: 18px;
    bottom: -17px;
    display: flex;
    align-items: center;
    gap: 9px;
    max-width: calc(100% - 36px);
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
    color: var(--green-900);
    font-size: 12px;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.about-preview-visual > span i {
    color: var(--green-600);
    font-size: 19px;
}

.about-preview-card h2,
.about-title {
    margin: 16px 0;
}

.about-preview-card p {
    color: var(--muted);
    font-size: 16px;
}

.about-checks,
.checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 24px 0 27px;
}

.about-checks span,
.checks span {
    color: #496157;
    font-size: 14px;
    font-weight: 700;
}

.about-checks i,
.checks i {
    margin-right: 6px;
    color: var(--green-600);
}

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

.cta-section,
.cta {
    padding: 34px 0 88px;
}

.cta-card,
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 46px 50px;
    border-radius: 24px;
    background: linear-gradient(120deg, #084c39 0%, #0f6b4f 60%, #27784e 100%);
    color: var(--white);
    box-shadow: 0 24px 55px rgba(7, 74, 55, 0.18);
}

.cta-card > div > span,
.cta-box > div > span {
    color: #c9ead6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cta-card h2,
.cta-box h2 {
    max-width: 720px;
    margin: 8px 0 9px;
    color: var(--white);
    font-size: clamp(30px, 3vw, 42px);
}

.cta-card p,
.cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
}

.btn-cta,
.cta-box .btn-light {
    flex: 0 0 auto;
    border: 1px solid var(--white);
    background: var(--white);
    color: var(--green-900);
    padding: 13px 21px;
}

.btn-cta:hover,
.btn-cta:focus,
.cta-box .btn-light:hover,
.cta-box .btn-light:focus {
    border-color: #e9f6ee;
    background: #e9f6ee;
    color: var(--green-950);
}

/* =========================================================
   Inner page hero
   ========================================================= */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 78px;
    background:
        radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(120deg, #09523e 0%, #0e6c50 70%, #26774e 100%);
    color: var(--white);
    text-align: center;
}

.page-hero .kicker {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.09);
    color: #e9f8ef;
}

.page-hero h1 {
    max-width: 890px;
    margin: 18px auto 15px;
    color: var(--white);
}

.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
}

.summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--green-50);
}

.summary > div:first-child strong {
    display: block;
    color: var(--green-950);
    font-size: 18px;
}

.summary > div:first-child span {
    color: var(--muted);
    font-size: 14px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating b {
    color: var(--green-950);
    font-size: 36px;
}

.vision {
    height: 100%;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
}

.vision.dark {
    border-color: transparent;
    background: linear-gradient(135deg, #084c39 0%, #0f6d50 100%);
    color: var(--white);
}

.vision-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 22px;
}

.vision.dark .vision-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #c7edd5;
}

.vision small {
    display: block;
    margin-top: 24px;
    color: var(--green-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vision.dark small {
    color: #c9ead6;
}

.vision h3 {
    margin: 12px 0;
    color: inherit;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.35;
}

.vision p {
    color: var(--muted);
    font-size: 15px;
}

.vision.dark p {
    color: rgba(255, 255, 255, 0.76);
}

.mission {
    display: grid;
    gap: 15px;
    margin-top: 22px;
}

.mission span {
    color: #50645b;
    font-size: 15px;
    font-weight: 600;
}

.mission i {
    margin-right: 8px;
    color: var(--green-600);
}

.dev-section {
    background: var(--green-25);
}

.developer {
    max-width: 880px;
    margin: auto;
    padding: 46px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.dev-icon {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 30px;
}

.developer h2 {
    margin: 16px 0 8px;
    color: var(--green-950);
    font-size: 31px;
    font-weight: 800;
}

.developer p {
    color: var(--muted);
    font-size: 15px;
}

.developer a {
    color: var(--green-700);
    font-size: 15px;
    font-weight: 800;
}

/* =========================================================
   Authentication pages
   ========================================================= */

.auth-page {
    min-height: calc(100vh - 86px);
    padding: 48px 0 68px;
    background: linear-gradient(180deg, #f2faf5 0%, #ffffff 100%);
}

.auth-shell {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    max-width: 1080px;
    margin: auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.auth-brand {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    padding: 46px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(145deg, #074a38 0%, #0f6d50 100%);
    color: var(--white);
}

.auth-brand h1 {
    margin: 24px 0 16px;
    color: var(--white);
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.auth-brand > p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
}

.auth-list {
    display: grid;
    gap: 14px;
    margin: 30px 0;
}

.auth-list span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 700;
}

.auth-list i {
    margin-right: 8px;
    color: #b8e7ca;
}

.auth-brand > img {
    position: absolute;
    right: 46px;
    bottom: 46px;
    left: 46px;
    width: calc(100% - 92px);
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
}

.auth-form {
    padding: 33px 42px 46px;
}

.auth-form-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 48px;
}

.auth-form-top img {
    width: 168px;
}

.auth-form-top > span {
    color: #718078;
    font-size: 13px;
}

.auth-form-top a {
    color: var(--green-700);
    font-weight: 800;
}

.auth-inner {
    max-width: 480px;
    margin: auto;
}

.auth-inner.wide {
    max-width: 590px;
}

.auth-inner h2 {
    margin: 15px 0 8px;
    color: var(--green-950);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.auth-inner > p {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 14px;
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    margin-bottom: 8px;
    color: #344b41;
    font-size: 13px;
    font-weight: 800;
}

.input-wrap {
    position: relative;
}

.input-wrap > i {
    position: absolute;
    top: 50%;
    left: 15px;
    color: #8ea098;
    transform: translateY(-50%);
}

.input-wrap input {
    width: 100%;
    min-height: 52px;
    padding: 12px 44px;
    border: 1px solid #d7e5dc;
    border-radius: 12px;
    outline: none;
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
}

.input-wrap input:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(43, 150, 109, 0.1);
}
.input-wrap input.is-invalid {
    border-color: #d76666;
    box-shadow: 0 0 0 4px rgba(185, 66, 66, 0.08);
}

.input-wrap button {
    position: absolute;
    top: 50%;
    right: 10px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #7f9087;
    transform: translateY(-50%);
}

.err {
    display: block;
    margin-top: 6px;
    color: var(--danger);
    font-size: 12px;
}

.auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 53px;
    gap: 8px;
}

.demo-note {
    display: flex;
    gap: 11px;
    margin-top: 22px;
    padding: 14px 15px;
    border-radius: 12px;
    background: var(--green-50);
    color: #596d63;
    font-size: 12px;
}

.demo-note i {
    color: var(--green-700);
    font-size: 18px;
}

.register .auth-brand {
    min-height: 745px;
}

.register-steps {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.register-steps span {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 700;
}

.register-steps b {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #c9ead6;
}

.agreement {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 20px 0 9px;
    color: #60736a;
    font-size: 12px;
}

.agreement input {
    margin-top: 5px;
}

/* =========================================================
   404
   ========================================================= */

.error {
    display: flex;
    align-items: center;
    min-height: 65vh;
    padding: 100px 0;
}

.error b {
    display: block;
    color: var(--green-600);
    font-size: 78px;
    line-height: 1;
}

.error h1 {
    margin: 20px 0 10px;
    color: var(--green-950);
    font-weight: 800;
}

.error p {
    margin-bottom: 25px;
    color: var(--muted);
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    padding: 68px 0 26px;
    background: #063d2f;
    color: #d8e8df;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 0.7fr 0.7fr 1.35fr;
    gap: 44px;
    padding-bottom: 44px;
}

.footer-logo-wrap {
    display: inline-flex;
    max-width: 205px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.97);
}

.footer-brand img {
    display: block;
    width: 185px;
    height: auto;
}

.footer-brand p {
    max-width: 410px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 1.8;
}

.footer-grid h6 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid a,
.footer-grid span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-grid strong {
    color: var(--white);
    font-size: 13px;
}

.footer-grid i {
    margin-right: 6px;
    color: #b8e7ca;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 991.98px) {
    .site-header .navbar {
        min-height: 78px;
    }

    .hero {
        padding-top: 58px;
    }

    .hero-main-row {
        min-height: auto;
    }

    .hero-image-wrap {
        max-width: 680px;
        margin: 30px auto 0;
    }

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

    .hero-stat-item:nth-child(2) {
        border-right: 0;
    }

    .hero-stat-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .section-heading-split {
        display: block;
    }

    .section-heading-side {
        margin-top: 18px;
    }

    .about-preview-card {
        padding: 34px;
    }

    .cta-card,
    .cta-box {
        display: block;
        padding: 40px;
    }

    .cta-card .btn,
    .cta-box .btn {
        margin-top: 24px;
    }

    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-brand,
    .register .auth-brand {
        min-height: auto;
    }

    .auth-brand > img {
        position: static;
        width: 100%;
        margin-top: 28px;
    }

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

@media (max-width: 767.98px) {
    body {
        font-size: 16px;
    }

    .navbar-brand img {
        width: 166px;
    }

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

    .hero-description {
        font-size: 16px;
    }

    .hero-image-wrap {
        padding: 8px;
        border-radius: 24px;
    }

    .hero-image {
        border-radius: 18px;
    }

    .hero-stats {
        margin-top: 34px;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading h2,
    .about-title,
    .page-hero h1 {
        font-size: 35px;
    }

    .about-preview-card {
        padding: 24px;
    }

    .about-checks,
    .checks {
        grid-template-columns: 1fr;
    }

    .cta-section,
    .cta {
        padding-bottom: 70px;
    }

    .cta-card,
    .cta-box {
        padding: 31px 25px;
        border-radius: 20px;
    }

    .summary {
        display: block;
    }

    .rating {
        margin-top: 18px;
    }

    .auth-page {
        padding: 22px 0 45px;
    }

    .auth-shell {
        border-radius: 20px;
    }

    .auth-brand,
    .auth-form {
        padding: 29px 24px;
    }

    .auth-brand h1 {
        font-size: 37px;
    }

    .auth-form-top {
        margin-bottom: 36px;
    }

    .auth-form-top > span {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom span {
        display: block;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 48px;
    }

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

    .hero-actions {
        display: grid;
    }

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

    .hero-benefits {
        display: grid;
        gap: 9px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-stat-item:last-child {
        border-bottom: 0;
    }
}
