/* =======================================================
   RESET & GLOBAL
======================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #fafafa;
    color: #111;
    line-height: 1.6;
    opacity: 0;
    transition: opacity .6s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    width: min(1200px, 90%);
    margin-inline: auto;
}

/* Colors */
:root {
    --accent: #fc4c02;
    --accent-dark: #d63d00;
    --bg: #ffffff;
    --text: #111;
    --soft: #f3f3f3;
    --radius: 14px;
}

/* =======================================================
   HEADER & NAV
======================================================= */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Desktop nav */
.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    position: relative;
    padding-bottom: 6px;
    transition: color .3s ease;
}

.main-nav a:hover {
    color: var(--accent);
}

/* Underline hover */
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: var(--accent);
    transition: width .3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Header right */
.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Social icons */
.social-header a {
    margin-left: 12px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.social-header a:hover {
    color: var(--accent);
}

/* Language switcher */
.lang-btn {
    background: none;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    font-weight: 600;
    opacity: 0.6;
    transition: .25s;
}

.lang-btn.active,
.lang-btn:hover {
    opacity: 1;
    color: var(--accent);
}

/* Mobile nav toggle */
.nav-toggle {
    width: 32px;
    height: 26px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    height: 3px;
    background: #111;
    border-radius: 2px;
    transition: .3s;
}

/* Toggle animation */
.nav-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}
.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Mobile menu */
@media (max-width: 860px) {
    .main-nav {
        position: absolute;
        top: 68px;
        right: 0;
        width: 100%;
        padding: 20px 0;
        flex-direction: column;
        gap: 24px;
        background: #fff;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all .3s ease;
        border-bottom: 1px solid #eee;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }
}

/* =======================================================
   HERO SECTION — UPDATED PREMIUM LAYOUT
======================================================= */
.hero {
    min-height: 100vh;
    background: url("hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.hero h1 {
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.15;
    font-weight: 700;
}

.hero-lead {
    font-size: 18px;
    opacity: 0.95;
    max-width: 520px;
}

/* CTA buttons */
.hero-cta-row {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn.primary {
    background: var(--accent);
    color: #fff;
}
.btn.primary:hover {
    background: var(--accent-dark);
}

.btn.ghost {
    border: 2px solid #fff;
    color: #fff;
}
.btn.ghost:hover {
    background: #fff;
    color: #111;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 42px;
    margin-top: 10px;
}

.stat-num {
    font-size: 28px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    opacity: 0.85;
}

/* Follow section */
.follow {
    margin-top: 8px;
}

.follow-row {
    display: flex;
    gap: 10px;
}

.btn.small {
    padding: 8px 16px;
    font-size: 14px;
}

/* =======================================================
   SECTIONS GENERAL
======================================================= */
.section {
    padding: 90px 0;
}

.section-alt {
    background: #f7f7f7;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: #444;
    font-size: 18px;
}

/* =======================================================
   GRID LAYOUTS
======================================================= */
.grid-3,
.grid-4 {
    display: grid;
    gap: 32px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1000px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}
.hero-content {
    max-width: 600px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 26px;

    /* SHIFT LEFT BY 200PX */
    margin-left: -200px;
}

@media (max-width: 1100px) {
    .hero-content {
        margin-left: -120px;
    }
}

@media (max-width: 900px) {
    .hero-content {
        margin-left: 0; /* on mobile center again */
    }
}

/* =======================================================
   CARDS
======================================================= */
.card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: 0 6px 22px rgba(0,0,0,0.07);
    transition: transform .25s, box-shadow .25s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}

.card h3 {
    margin-bottom: 12px;
    font-weight: 700;
}

/* Plan card */
.plan-card ul {
    margin-top: 12px;
    padding-left: 20px;
}

.plan-card li {
    margin-bottom: 6px;
    font-size: 15px;
    color: #333;
}

/* =======================================================
   TESTIMONIALS
======================================================= */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.testimonial p {
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-meta {
    font-size: 15px;
    opacity: 0.8;
}

/* =======================================================
   CONTACT FORM
======================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

label {
    font-weight: 600;
    margin-bottom: 6px;
}

input,
textarea {
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    font-size: 16px;
    transition: border .25s;
    background: #fff;
}

input:focus,
textarea:focus {
    border-color: var(--accent);
    outline: none;
}

.form-row {
    display: flex;
    gap: 20px;
}

@media (max-width: 700px) {
    .form-row {
        flex-direction: column;
    }
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.form-status {
    font-size: 14px;
}

.form-status.success {
    color: green;
}
.form-status.error {
    color: red;
}

/* =======================================================
   SCROLL ANIMATIONS
======================================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* =====================================================
   MOBILE HERO — CLEAN & MINIMAL (FINAL VERSION)
===================================================== */
@media (max-width: 900px) {

    /* Hero container */
    .hero {
        padding-top: 120px;
        padding-bottom: 70px;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        max-width: 90%;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* MAIN TITLE */
    .hero h1 {
        font-size: 28px;      /* smaller text */
        line-height: 1.3;
        margin-bottom: 150px; /* CTA will appear 150px lower */
        text-align: center;
        font-weight: 700;
    }

    /* REMOVE HERO LEAD TEXT COMPLETELY */
    .hero-lead {
        display: none !important;
    }

    /* CTA BUTTONS */
    .hero-cta-row {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 10px;
    }

    /* FOLLOW SECTION */
    .follow {
        margin-top: 10px;
        text-align: center;
    }

    .follow span {
        font-size: 14px;
        opacity: 0.9;
    }

    .follow-row {
        margin-top: 8px;
        display: flex;
        flex-direction: row;     /* horizontal */
        justify-content: center; /* centered */
        gap: 12px;
    }

    .follow-row .btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}
@media (max-width: 900px) {

    /* STATISTICS — reduce size x2 */
    .hero-stats {
        display: flex;
        flex-direction: horizontal;
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .stat-num {
        font-size: 20px;      /* was ~28 → now ~half */
        font-weight: 600;
    }

    .stat-label {
        font-size: 15px;      /* was ~14 → now ~half */
        opacity: 0.8;
    }
}
@media (max-width: 900px) {

    /* Reduce space between stats and follow section */
    .hero-stats {
        margin-bottom: 6px !important; /* buvo apie 12–14px → per pus mažiau */
    }

    .follow {
        margin-top: 6px !important; /* buvo per daug — mažinam */
    }
}
/* ============================================
   DESKTOP CONTACT SECTION — VARIANT C (FORM UP + INFO DOWN)
============================================ */
@media (min-width: 901px) {

    /* Make container narrower */
    #contact .container {
        width: 900px;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Turn off old grid columns */
    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

    /* Form panel full width inside container */
    .contact-panel {
        width: 100%;
    }

    /* Contact info below as small centered block */
    .contact-info {
        width: 100%;
        max-width: 400px;        /* keeps it small */
        margin-inline: auto;
        text-align: center;
        padding: 24px;
    }

    .contact-info p {
        text-align: center;
    }
}
/* =======================================================
   CONTACT SECTION — FULL WIDTH + TIGHT HEIGHT
======================================================= */
@media (min-width: 901px) {

    /* Section becomes vertically compact */
    #contact.section-alt {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        background: #f7f7f7;
    }

    /* FORM FULL WIDTH */
    #contact .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-inline: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    /* Stretch form across the full width */
    .contact-panel {
        width: 100%;
        border-radius: 0; /* full width look */
        box-shadow: none;  
        background: #fff;
        border-top: 1px solid #e8e8e8;
        border-bottom: 1px solid #e8e8e8;

        /* Vertical compact look */
        padding: 30px 0 !important;
    }

    /* Inside container for nice alignment */
    .contact-panel form {
        width: min(800px, 90%);
        margin-inline: auto;
    }

    .contact-panel h2 {
        text-align: center;
        font-size: 24px;
        margin-bottom: 6px;
    }

    .contact-panel p {
        text-align: center;
        font-size: 14px;
        margin-bottom: 20px;
        opacity: 0.85;
    }

    /* Form fields smaller */
    .field {
        margin-bottom: 14px;
    }

    label {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    input,
    textarea {
        padding: 10px 12px;
        border-radius: 10px;
        border: 1px solid #ccc;
        font-size: 14px;
    }

    textarea {
        height: 90px;
    }

    .form-actions {
        justify-content: center;
        margin-top: 8px;
        gap: 10px;
    }

    .btn.primary {
        font-size: 14px;
        padding: 10px 20px;
        border-radius: 10px;
    }

    /* Status text smaller */
    .form-status {
        font-size: 12px;
        opacity: 0.7;
    }

    /* CONTACT INFO — still compact and centered */
    .contact-info {
        width: min(400px, 90%);
        padding: 16px;
        background: #fff;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }

    .contact-info h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .contact-info p {
        font-size: 14px;
        margin-bottom: 6px;
        opacity: 0.9;
    }
}
/* =======================================================
   CONTACT SECTION — APPLE / NOTION ULTRA-FLAT STYLE
======================================================= */
@media (min-width: 901px) {

    /* Super compact section */
    #contact.section-alt {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        background: #fafafa; /* fully flat */
    }

    /* Full width + clean */
    #contact .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-inline: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    /* FORM PANEL — NO CARD, NO SHADOW, NO BORDER */
    .contact-panel {
        width: 100%;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    /* Form inner wrapper for layout */
    .contact-panel form {
        width: min(700px, 92%);
        margin-inline: auto;
    }

    .contact-panel h2 {
        font-size: 24px;
        margin-bottom: 4px;
        text-align: center;
        font-weight: 700;
    }

    .contact-panel p {
        font-size: 14px;
        opacity: 0.75;
        text-align: center;
        margin-bottom: 20px;
    }

    /* Flat clean fields */
    .field {
        margin-bottom: 14px;
    }

    label {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    input,
    textarea {
        padding: 12px 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 15px;
        background: #fff;
        transition: border-color .2s ease;
    }

    input:focus,
    textarea:focus {
        border-color: var(--accent);
        outline: none;
    }

    textarea {
        height: 90px;
    }

    /* CTA super clean */
    .form-actions {
        display: flex;
        justify-content: center;
        margin-top: 10px;
        gap: 10px;
    }

    .btn.primary {
        padding: 10px 22px;
        font-size: 14px;
        border-radius: 8px;
    }

    .form-status {
        font-size: 12px;
        opacity: 0.65;
    }

    /* CONTACT INFO — tiny text block ONLY, no card */
    .contact-info {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        text-align: center;
        max-width: 350px;
        width: 100%;
    }

    .contact-info h3 {
        font-size: 18px;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .contact-info p {
        font-size: 14px;
        opacity: 0.85;
        margin-bottom: 4px;
    }
}


