@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --ink: #172c25;
    --forest: #113d30;
    --dark: #0d2c23;
    --lime: #d7f36c;
    --cream: #f4f5ed;
    --muted: #5e7268
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans',sans-serif;
    color: var(--ink);
    background: var(--cream)
}

h1, h2, h3, .brand-name {
    font-family: Manrope,sans-serif
}

a {
    transition: .2s ease
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 4px;
    z-index: 1000;
    background: white;
    padding: 12px
}

    .skip-link:focus {
        left: 12px
    }

.site-header {
    background: #f8f9f2
}

.navbar-brand {
    color: var(--ink)
}

    .navbar-brand:hover {
        color: var(--ink)
    }

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--forest);
    color: var(--lime);
    display: grid;
    place-items: center;
    font: 800 27px Manrope;
    letter-spacing: -4px;
    padding-right: 5px
}

.brand-dot {
    color: white
}

.brand-name {
    font-size: 15px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .08em
}

    .brand-name strong {
        color: #5e8a37
    }

    .brand-name small {
        display: block;
        font: 700 8px 'DM Sans';
        letter-spacing: .17em;
        color: #83958c;
        margin-top: 5px
    }

.nav-link {
    font-size: 14px;
    font-weight: 700;
    color: #33483c
}

    .nav-link:hover {
        color: #478044
    }

.nav-admin {
    border: 1px solid #cbd6c6;
    border-radius: 30px;
    padding: 11px 18px !important
}

    .nav-admin:hover {
        background: var(--dark);
        color: white
    }

.hero {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: white
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    right: -300px;
    top: -250px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(99,143,60,.20),transparent 65%)
}

.hero-inner {
    padding-top: 96px;
    padding-bottom: 112px;
    position: relative
}

.eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    color: var(--lime)
}

.eyebrow-line {
    display: inline-block;
    background: var(--lime);
    height: 1px;
    width: 24px;
    vertical-align: middle;
    margin-right: 10px
}

.eyebrow.dark {
    color: #5f8644
}

.hero h1 {
    font-size: clamp(54px,6.3vw,96px);
    font-weight: 800;
    letter-spacing: -.075em;
    line-height: 1.07;
    margin: 25px 0 30px
}

    .hero h1 em {
        font-style: normal;
        color: var(--lime)
    }

.hero-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #c0d1c7;
    max-width: 570px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
    margin-top: 36px
}

.btn-lime {
    background: var(--lime);
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
    border-radius: 7px;
    padding: 16px 23px
}

    .btn-lime:hover, .btn-lime:focus {
        background: white;
        color: var(--dark)
    }

    .btn-lime span {
        margin-left: 27px
    }

.text-link {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid #8ba49a;
    padding-bottom: 5px
}

    .text-link:hover {
        color: var(--lime)
    }

.hero-note {
    margin-top: 55px;
    color: #9bb6a6;
    font-size: 12px
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    margin-right: 10px
}

.visual-panel {
    height: 495px;
    overflow: hidden;
    position: relative;
    border-radius: 220px 220px 9px 9px;
    background: linear-gradient(#b6cf9e 0%,#d8dfae 45%,#829367 45%,#536945 100%);
    box-shadow: 0 35px 80px #041a15
}

.sun {
    position: absolute;
    width: 142px;
    height: 142px;
    background: #eef0c8;
    border-radius: 50%;
    top: 72px;
    left: 42%;
    box-shadow: 0 0 80px #e6e8ac
}

.land {
    position: absolute;
    width: 160%;
    height: 270px;
    left: -30%;
    border-radius: 50% 50% 0 0;
    transform: rotate(-10deg)
}

.land-back {
    top: 210px;
    background: #788b58
}

.land-mid {
    top: 290px;
    background: #406346;
    transform: rotate(10deg)
}

.land-front {
    top: 340px;
    background: #274c3c;
    transform: rotate(-16deg)
}

.grid-lines {
    position: absolute;
    inset: 50% -30% -25%;
    opacity: .48;
    background: repeating-linear-gradient(80deg,transparent 0 38px,#a9bb76 39px 41px,transparent 42px 72px)
}

.floating-tag {
    position: absolute;
    z-index: 1;
    background: #eff6dc;
    color: #234433;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    padding: 13px 16px;
    border-radius: 5px;
    box-shadow: 0 12px 25px #173b3155
}

    .floating-tag span {
        font-size: 17px;
        vertical-align: middle;
        margin-right: 8px;
        color: #558637
    }

.tag-top {
    right: 15px;
    top: 110px
}

.tag-bottom {
    left: 14px;
    bottom: 130px
}

.image-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #173b30e8;
    color: #e6f2de;
    padding: 20px;
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    gap: 10px
}

.hero-index {
    display: flex;
    justify-content: space-between;
    padding: 0 0 25px;
    color: #719388;
    font-size: 10px;
    letter-spacing: .2em;
    font-weight: 700
}

.section-pad {
    padding: 105px 0
}

.section-head {
    max-width: 700px;
    margin-bottom: 38px
}

    .section-head h2, .process h2, .about h2 {
        font-size: clamp(34px,4vw,55px);
        font-weight: 800;
        letter-spacing: -.065em;
        line-height: 1.17;
        margin: 18px 0
    }

    .section-head p, .process p {
        color: var(--muted);
        font-size: 16px;
        line-height: 1.7
    }

.feature-card {
    height: 100%;
    min-height: 320px;
    background: white;
    border: 1px solid #e2e9dd;
    border-radius: 10px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform .2s,box-shadow .2s
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px #173b3013
    }

.card-icon {
    display: flex;
    justify-content: space-between;
    color: #6e9552;
    font-size: 13px;
    font-weight: 800
}

    .card-icon span {
        font-size: 28px
    }

.feature-card h3 {
    margin-top: 47px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.035em
}

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

.card-bottom {
    margin-top: auto;
    font-size: 10px;
    letter-spacing: .15em;
    font-weight: 800;
    color: #7d9a78
}

.process {
    background: #e9eee2
}

.step {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid #ccd9cb;
    padding: 21px 0
}

    .step:first-child {
        border-top: 1px solid #ccd9cb
    }

    .step b {
        color: #6c9851;
        font-size: 14px
    }

    .step h3 {
        font-size: 18px;
        font-weight: 800
    }

    .step p {
        font-size: 14px;
        margin: 0
    }

.about {
    background: #204736;
    color: white
}

    .about h2 {
        max-width: 730px
    }

    .about p {
        color: #c5d8cc;
        line-height: 1.8;
        max-width: 750px
    }

.project-stamp {
    display: inline-block;
    text-align: left;
    border: 1px solid #709782;
    padding: 22px 28px;
    font: 800 15px/1.65 Manrope;
    letter-spacing: .09em
}

    .project-stamp span {
        color: var(--lime);
        font-size: 27px;
        margin-left: 35px
    }

.site-footer {
    background: #102d24;
    color: #a5b7aa;
    padding: 26px 0;
    font-size: 11px;
    letter-spacing: .13em
}

.auth-wrap {
    min-height: 65vh;
    padding: 95px 16px;
    background: #e9eee2
}

.auth-card {
    max-width: 470px;
    margin: auto;
    padding: 40px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 22px 65px #16362a14
}

    .auth-card h1 {
        font-size: 30px;
        font-weight: 800;
        letter-spacing: -.05em
    }

.form-label {
    font-size: 13px;
    font-weight: 700
}

.form-control {
    padding: 12px;
    border-color: #ccdacb
}

    .form-control:focus {
        border-color: #719c53;
        box-shadow: 0 0 0 .2rem #a7d77d44
    }

.btn-darkgreen {
    background: #173f30;
    color: white;
    padding: 13px 22px;
    font-weight: 700
}

    .btn-darkgreen:hover {
        background: #2e6343;
        color: white
    }

.admin-page {
    min-height: 65vh;
    padding: 70px 0
}

    .admin-page h1 {
        font-weight: 800;
        letter-spacing: -.05em
    }

@media(max-width:991px) {
    .navbar-collapse {
        padding: 20px 0
    }

    .hero-inner {
        padding: 72px 0
    }

    .visual-panel {
        max-width: 540px;
        margin: auto
    }

    .hero-index span:last-child {
        display: none
    }
}

@media(max-width:575px) {
    .hero h1 {
        font-size: 54px
    }

    .hero-lead {
        font-size: 16px
    }

    .visual-panel {
        height: 370px
    }

    .section-pad {
        padding: 72px 0
    }

    .auth-card {
        padding: 25px
    }
}

/* Laukų ir saulės ženklas */
.brand-symbol {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex: none
}

.navbar-brand {
    gap: 11px !important
}

@media(max-width:575px) {
    .brand-symbol {
        width: 48px;
        height: 48px
    }
}

.hero-photo {
    width: 100%;
    max-width: 520px;
    height: 540px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 32px 70px rgba(0, 15, 10, .28);
}

    .hero-photo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 55%;
    }

@media (max-width: 991px) {
    .hero-photo {
        height: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .hero-photo {
        height: 390px;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-top: 38px;
}

.hero-primary,
.hero-primary:disabled {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 17px 22px;
    background: var(--lime);
    color: var(--dark);
    border: 0;
    border-radius: 9px;
    opacity: 1;
    font-size: 16px;
    font-weight: 800;
    cursor: not-allowed;
}

.soon-label {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    opacity: .65;
}

.hero-arrow {
    margin-left: 18px !important;
    font-size: 20px;
}

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

    .hero-secondary a {
        color: #e5eee6;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 1px solid #8ca99a;
        padding-bottom: 5px;
    }

        .hero-secondary a:hover,
        .hero-secondary a:focus {
            color: var(--lime);
            border-color: var(--lime);
        }

.hero-actions {
    display: grid;
    width: min(100%, 540px);
    gap: 12px;
    margin-top: 38px;
}

.hero-action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 66px;
    padding: 16px 20px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    text-decoration: none;
}

    .hero-action span {
        margin-left: 0;
    }

.hero-action-primary,
.hero-action-primary:disabled {
    min-height: 82px;
    width: 100%;
    border: 2px solid var(--lime);
    background: var(--lime);
    color: var(--dark);
    opacity: 1;
    font-weight: 800;
    cursor: not-allowed;
}

.soon-label {
    font-size: inherit;
    font-weight: 600;
    opacity: .7;
}

.hero-action-secondary {
    border: 1px solid #789487;
    background: rgba(255, 255, 255, .04);
    color: #f1f7ee;
}

    .hero-action-secondary:hover,
    .hero-action-secondary:focus {
        border-color: var(--lime);
        background: rgba(215, 243, 108, .12);
        color: white;
    }

@media (max-width: 575px) {
    .hero-action {
        font-size: 16px;
        padding: 14px;
    }

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

.hero-action-primary,
.hero-action-primary:disabled {
    position: relative;
    justify-content: center;
    font-size: 21px;
    text-align: center;
}

    .hero-action-primary > span:first-child {
        margin: 0;
    }

    .hero-action-primary > span:last-child {
        position: absolute;
        right: 20px;
    }

    .hero-action-primary,
    .hero-action-primary:disabled {
        transition: background-color .2s ease, box-shadow .2s ease;
    }

        .hero-action-primary:hover,
        .hero-action-primary:disabled:hover {
            background-color: #e8fb9c;
            box-shadow: 0 8px 24px rgba(215, 243, 108, .18);
            cursor: not-allowed;
        }

/* Viršutinės juostos šriftai */
.brand-name {
    font-size: 18px;
}

    .brand-name small {
        font-size: 10px;
        margin-top: 6px;
    }

.site-header .nav-link {
    font-size: 16px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .site-header .navbar-nav {
        gap: 8px !important;
    }

    .site-header .nav-link {
        font-size: 15px;
    }
}
.project-stamp {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 280px;
    padding: 34px 42px;
    text-align: left;
}

    .project-stamp > span:not(.project-stamp-arrow) {
        display: block;
        margin: 0;
        color: white;
        font-size: 20px;
        line-height: 1.2;
    }

    .project-stamp .project-stamp-arrow {
        position: absolute;
        right: 36px;
        bottom: 30px;
        margin: 0;
        color: var(--lime);
        font-size: 28px;
    }