/* 
   Furnio.lt - Premium Stylesheet
   Spalvų paletė ir dizainas sukurti remiantis reklaminiu baneriu.
   Naudojamas grynas CSS be jokių išorinių priklausomybių.
*/

/* 1. DIZAINO SISTEMA (TOKENS) */
:root {
    /* Spalvos pagal banerį */
    --primary-dark: #0B2520;      /* Gili tamsiai žalia fonui */
    --primary-medium: #11342D;    /* Šiek tiek šviesesnė gamybos žalia */
    --primary-light: #1E5C4E;     /* Aktyvi šoninio meniu žalia */
    --primary-lightest: #2D826F;  /* Pagalbinė šviesi žalia */
    --accent-gold: #DE882A;       /* Pagrindinė oranžinė iš banerio */
    --accent-gold-hover: #C57218; /* Tamsesnė oranžinė mygtukams */
    --accent-mint: #4ade80;       /* Sėkmingo statuso žalia */
    
    /* Neutralios spalvos */
    --bg-light: #F2F6F5;
    --bg-white: #FFFFFF;
    --text-white: #FFFFFF;
    --text-light: #E4ECE9;
    --text-dark: #0F221E;
    --text-muted: #64817A;
    --text-danger: #f87171;
    --text-warning: #fbbf24;
    
    /* Šriftai */
    --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Suapvalinimai */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    /* Šešėliai */
    --shadow-sm: 0 2px 8px rgba(11, 37, 32, 0.04);
    --shadow-md: 0 8px 24px rgba(11, 37, 32, 0.08);
    --shadow-lg: 0 16px 48px rgba(11, 37, 32, 0.12);
    --shadow-xl: 0 24px 64px rgba(11, 37, 32, 0.2);
    
    /* Perėjimai */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. BAZINIAI STILIAI JAUKUMUI IR ŠVARAI */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. BENDRINIAI STRUKTŪRINIAI ELEMENTAI */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 780px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, #FFC170 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-danger {
    color: var(--text-danger) !important;
}

.text-warning {
    color: var(--text-warning) !important;
}

/* Antraščių grupavimas sekcijose */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(222, 136, 42, 0.1);
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag.green-tag {
    background-color: rgba(30, 92, 78, 0.1);
    color: var(--primary-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* 4. MYGTUKAI (BUTTONS) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(222, 136, 42, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 136, 42, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline:active {
    transform: translateY(0);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Mygtukų dydžiai */
.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-xs {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
}

/* 5. NAVIGACIJA (HEADER) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 37, 32, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    height: 80px;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo Stiliai */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.brand-name {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.brand-dot-lt {
    color: var(--accent-gold);
}

/* Navigacinės nuorodos */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    margin-right: 8px;
}

.lang-btn {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 2px 4px;
    font-weight: inherit;
    transition: color var(--transition-fast);
}

.lang-btn:hover {
    color: var(--text-white);
}

.lang-btn.active {
    color: var(--accent-gold);
}

.lang-divider {
    opacity: 0.4;
    user-select: none;
}

/* Burgeris mobiliems */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
    border-radius: 5px;
}

/* 6. HERO SEKCIJA */
.hero {
    background: radial-gradient(circle at 70% 30%, #153E35 0%, var(--primary-dark) 80%);
    padding-top: 160px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
    color: var(--text-white);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 5;
}

/* Ženklelis virš antraštės */
.badge-lithuanian-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-check-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-mint);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    width: 100%;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-play-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Trust taškai po mygtukais */
.hero-trust-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trust-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
}

.bullet-check {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* Hero visual & mockups */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 640px;
}

/* Nešiojamojo kompiuterio maketas (Laptop Mockup) */
.laptop-container {
    width: 100%;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    transition: transform 0.5s var(--transition-smooth);
}

.laptop-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.laptop-screen-bezel {
    background-color: #1a1a1a;
    border: 12px solid #1a1a1a;
    border-radius: 16px 16px 0 0;
    aspect-ratio: 1.6 / 1;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.laptop-screen-content {
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    position: relative;
}

.laptop-keyboard-base {
    height: 14px;
    background: linear-gradient(to bottom, #d1d5db 0%, #9ca3af 100%);
    border-radius: 0 0 16px 16px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.laptop-keyboard-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background-color: #4b5563;
    border-radius: 0 0 4px 4px;
}

/* Telefono maketas (Phone Mockup) */
.phone-container {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 180px;
    height: 360px;
    background-color: #1a1a1a;
    border: 8px solid #1a1a1a;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
    z-index: 10;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateZ(50px) rotateY(-5deg) scale(0.95);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.phone-speaker {
    width: 50px;
    height: 4px;
    background-color: #374151;
    border-radius: 10px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.phone-screen {
    flex: 1;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 14px;
    color: var(--text-dark);
}

.hero-bottom-curve {
    position: absolute;
    bottom: -1px; /* Pridedame -1px, kad visiškai neliktų jokių linijų tarp sekcijų */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-bottom-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 45px;
}

.hero-bottom-curve .shape-fill {
    fill: var(--bg-white);
}

/* 7. INTERAKTYVUS HTML/CSS DASHBOARDAS */
.dashboard-mockup {
    display: grid;
    grid-template-columns: 105px 1fr;
    height: 100%;
    font-size: 7.5px; /* Miniatiūrinis šriftas, kad viskas tilptų */
    color: var(--text-white);
}

/* Dashboard šoninis meniu */
.dash-sidebar {
    background-color: var(--primary-dark);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    padding: 8px 6px;
}

.dash-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 4px;
    margin-bottom: 12px;
}

.dash-logo-icon {
    width: 12px;
    height: 12px;
}

.dash-logo-text {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 8px;
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.dash-nav-item {
    background: transparent;
    border: none;
    color: var(--text-light);
    opacity: 0.65;
    font-size: 6.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 6px;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: all var(--transition-fast);
}

.dash-nav-item:hover:not(.disabled) {
    opacity: 0.9;
    background-color: rgba(255, 255, 255, 0.04);
}

.dash-nav-item.active {
    opacity: 1;
    background-color: var(--primary-light);
    color: var(--text-white);
}

.dash-nav-item.disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

.dash-icon {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}

.dash-user {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.user-avatar {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 5px;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 700;
    font-size: 6px;
}

.user-role {
    font-size: 5px;
    opacity: 0.5;
}

/* Dashboard turinio sritis */
.dash-content {
    background-color: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 10px 14px;
}

.dash-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(11, 37, 32, 0.06);
}

.dash-page-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-dark);
}

.dash-page-subtitle {
    font-size: 6.5px;
    color: var(--text-muted);
}

.dash-body {
    flex: 1;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Apžvalgos Widgets */
.dash-widgets {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.widget-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(11, 37, 32, 0.05);
    border-radius: var(--radius-sm);
    padding: 5px;
    box-shadow: var(--shadow-sm);
}

.widget-meta {
    font-size: 5px;
    color: var(--text-muted);
    font-weight: 600;
}

.widget-value {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 2px 0;
}

.widget-trend {
    font-size: 5px;
    font-weight: 700;
}

.widget-trend.green {
    color: var(--primary-light);
}

.widget-trend.red {
    color: #e11d48;
}

/* Dashboard Grid */
.dash-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.dash-subcard-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-subcard {
    background-color: var(--bg-white);
    border: 1px solid rgba(11, 37, 32, 0.05);
    border-radius: var(--radius-sm);
    padding: 7px;
    box-shadow: var(--shadow-sm);
}

.subcard-title {
    font-size: 7.5px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(11, 37, 32, 0.04);
    padding-bottom: 3px;
}

/* Donut Chart */
.donut-chart-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.donut-chart {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.donut-inner {
    width: 22px;
    height: 22px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donut-num {
    font-size: 8px;
    font-weight: 800;
    color: var(--primary-dark);
}

.donut-lbl {
    font-size: 4px;
    color: var(--text-muted);
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.legend-item {
    font-size: 5.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    display: inline-block;
}

.dot.plan { background-color: var(--primary-light); }
.dot.gam { background-color: var(--accent-gold); }
.dot.baig { background-color: #4ade80; }
.dot.vel { background-color: #f87171; }

/* Lists inside Dashboard */
.dash-list {
    display: flex;
    flex-direction: column;
    gap: 3.5px;
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 5.5px;
}

.item-name {
    font-weight: 500;
    color: #374151;
}

.badge {
    padding: 1.5px 3.5px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 4.5px;
}

.badge-danger {
    background-color: #ffe4e6;
    color: #b91c1c;
}

.list-item-detailed {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 2.5px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.list-item-detailed:last-child {
    border-bottom: none;
}

.item-icon {
    font-size: 8px;
}

.item-details {
    display: flex;
    flex-direction: column;
}

.detail-title {
    font-weight: 600;
    color: #111827;
}

.detail-desc {
    font-size: 4.5px;
    color: var(--text-muted);
}

/* Profit Chart */
.profit-bar-chart {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bar-chart-container {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bar-val {
    font-size: 4.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.bar-column {
    width: 14px;
    border-radius: 2px 2px 0 0;
}

.bar-column.bg-dark { background-color: var(--primary-dark); }
.bar-column.bg-medium { background-color: var(--primary-light); }
.bar-column.bg-accent { background-color: var(--accent-gold); }

.bar-label {
    font-size: 4px;
    color: var(--text-muted);
    margin-top: 2px;
}

.profit-margin-badge {
    background-color: #ecfdf5;
    border: 1px solid #10b981;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.margin-num {
    font-size: 7px;
    font-weight: 800;
    color: #047857;
}

.margin-lbl {
    font-size: 3.5px;
    color: #065f46;
}

/* INTERACTIVE TAB PANES (Loaded dynamically via script) */
/* Projects Tab Mockup Styling */
.projects-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 5.5px;
}

.projects-table th {
    text-align: left;
    color: var(--text-muted);
    font-weight: 600;
    padding: 3px 4px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.projects-table td {
    padding: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.project-progress-bar {
    width: 30px;
    height: 3px;
    background-color: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}

.prog-fill {
    height: 100%;
    background-color: var(--primary-light);
}

/* Estimates Tab Mockup Styling */
.estimate-builder {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.est-row-title {
    font-size: 6.5px;
    font-weight: 700;
    color: var(--primary-dark);
}

.est-calc-box {
    background-color: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 4px;
    padding: 6px;
}

.est-line {
    display: flex;
    justify-content: space-between;
    padding: 2.5px 0;
    font-size: 5.5px;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.est-line:last-child {
    border-bottom: none;
    font-weight: 800;
    color: var(--primary-dark);
}

/* Gamyba (Production) Tab Mockup Styling */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.kanban-col {
    background-color: var(--bg-light);
    border-radius: 4px;
    padding: 4px;
}

.kanban-title {
    font-size: 5px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 3.5px;
    text-transform: uppercase;
}

.kanban-card {
    background-color: var(--bg-white);
    padding: 3.5px;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    margin-bottom: 3px;
    border-left: 2.5px solid var(--primary-lightest);
}

.kanban-card.orange {
    border-left-color: var(--accent-gold);
}

.kanban-card-title {
    font-weight: 600;
    color: #111827;
}

.kanban-card-time {
    font-size: 4px;
    color: var(--text-muted);
}

/* 8. TELEFONO MAKETAS (DETALESNI STILIAI) */
.phone-header {
    background-color: var(--primary-dark);
    color: var(--text-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 10px;
    font-size: 8px;
}

.phone-logo {
    font-family: var(--font-title);
    font-weight: 800;
}

.phone-scrollable {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
    font-size: 7px;
}

.phone-page-title {
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.phone-widget {
    background-color: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 6px;
    padding: 6px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.pw-label {
    font-size: 5px;
    color: var(--text-muted);
    font-weight: 600;
}

.pw-value {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 1px 0;
}

.pw-trend {
    font-size: 4.5px;
    color: var(--primary-light);
    font-weight: 700;
}

.phone-chart-title {
    font-weight: 700;
    font-size: 7.5px;
    margin-top: 8px;
    margin-bottom: 4px;
}

.phone-donut-chart {
    background-color: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 6px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-donut-visual {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-donut-inner {
    width: 16px;
    height: 16px;
    background-color: var(--bg-white);
    border-radius: 50%;
    font-size: 6px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-donut-legend {
    display: flex;
    flex-direction: column;
    gap: 1.5px;
    font-size: 4.5px;
}

.p-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    display: inline-block;
}

.p-dot.plan { background-color: var(--primary-light); }
.p-dot.gam { background-color: var(--accent-gold); }
.p-dot.baig { background-color: #4ade80; }

.phone-navbar {
    height: 28px;
    background-color: var(--bg-white);
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 5px;
    font-weight: 600;
    color: var(--text-muted);
}

.phone-navbar .p-nav-item.active {
    color: var(--primary-light);
}

.phone-home-btn {
    width: 36px;
    height: 3px;
    background-color: #374151;
    border-radius: 10px;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}

/* 9. FUNKCIJŲ SEKCIJA (4 KORTELĖS) */
.functions-section {
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(11, 37, 32, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-smooth);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--accent-gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 92, 78, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Aktyvi kortelė, sujungta su dashboard'u */
.feature-card.highlighted {
    border-color: var(--primary-light);
    box-shadow: 0 8px 30px rgba(30, 92, 78, 0.15);
    background-color: #fafcfb;
}

.feature-card.highlighted::before {
    transform: scaleX(1);
}

.feature-card-icon-wrapper {
    width: 54px;
    height: 54px;
    background-color: rgba(30, 92, 78, 0.06);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    margin-bottom: 24px;
    transition: all var(--transition-fast);
}

.feature-card:hover .feature-card-icon-wrapper {
    background-color: var(--primary-light);
    color: var(--text-white);
    transform: scale(1.05);
}

.feature-card-icon {
    width: 24px;
    height: 24px;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.feature-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 20px;
}

.feature-card-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-light);
    transition: gap var(--transition-fast);
}

.arrow-right {
    width: 16px;
    height: 16px;
}

.feature-card:hover .feature-card-action {
    color: var(--accent-gold);
    gap: 12px;
}

/* 10. DETALESNĖS NAUDOS SEKCIJA */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.benefit-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(222, 136, 42, 0.08);
    color: var(--accent-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.b-icon {
    width: 22px;
    height: 22px;
}

.benefit-text {
    display: flex;
    flex-direction: column;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 11. INTERAKTYVI ROI SKAIČIUOKLĖ */
.calculator-card {
    background-color: var(--primary-dark);
    background: radial-gradient(circle at 10% 10%, #153E35 0%, var(--primary-dark) 80%);
    border-radius: var(--radius-xl);
    padding: 60px;
    color: var(--text-white);
    box-shadow: var(--shadow-xl);
}

.calculator-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px auto;
}

.calc-tag {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.calc-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.calc-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Input slankikliai */
.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-labels {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.input-labels label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
}

.input-val {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-gold);
}

/* Individualus input range (slankiklio) stilius */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    outline: none;
    margin-bottom: 8px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(222, 136, 42, 0.5);
    transition: transform var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Rezultatai dešinėje */
.calculator-results {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.results-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.result-details {
    display: flex;
    flex-direction: column;
}

.result-label {
    font-weight: 700;
    font-size: 0.95rem;
}

.result-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.7;
}

.result-number {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
}

.total-result-box {
    background: linear-gradient(135deg, rgba(222, 136, 42, 0.1) 0%, rgba(30, 92, 78, 0.2) 100%);
    border: 1px solid rgba(222, 136, 42, 0.25);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    margin-bottom: 28px;
}

.total-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.total-number {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.total-note {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* 12. D.U.K. SEKCIJA */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid rgba(11, 37, 32, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(30, 92, 78, 0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-light);
    line-height: 1;
    transition: transform var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
    padding: 0 24px;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Atidaryto D.U.K. stiliai */
.faq-item.open {
    border-color: var(--primary-light);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-gold);
}

/* 13. REGISTRACIJOS SEKCIJA */
.register-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(11, 37, 32, 0.08);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.register-card::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 92, 78, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.register-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 2;
}

.register-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.register-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
    transition: opacity var(--transition-fast);
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.form-group input, .form-group select {
    padding: 14px 18px;
    border: 1.5px solid rgba(11, 37, 32, 0.12);
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.form-group input::placeholder {
    color: rgba(11, 37, 32, 0.4);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary-light);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(30, 92, 78, 0.08);
}

.form-privacy-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

/* Sėkmės būsena */
.register-success {
    display: none; /* Valdoma per JS */
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
    position: relative;
    z-index: 2;
    animation: fadeIn 0.4s var(--transition-smooth);
}

.success-icon-wrapper {
    width: 72px;
    height: 72px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.success-check-icon {
    width: 32px;
    height: 32px;
}

.success-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.success-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.6;
}

/* 14. FOOTER */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-brand-desc {
    font-size: 0.95rem;
    opacity: 0.75;
    margin-bottom: 24px;
    max-width: 380px;
}

.footer-made-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.made-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-mint);
}

.footer-links-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.footer-link {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-link:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.footer-link-text {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* 15. SCREEN REŠENIA (RESPONSIVENESS) */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-description {
        max-width: 600px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Paslėpti telefono maketą mažuose ekranuose, kad neužgožtų ekrano */
    .phone-container {
        display: none;
    }
    
    .laptop-container {
        transform: none !important;
    }
    
    /* Mobilioji Navigacija */
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 40px 24px;
        gap: 28px;
        transition: left 0.4s var(--transition-smooth);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }
    
    .header-actions .btn-primary {
        display: none; /* Paslepiame mažą mygtuką, navigacija bus burgeriu */
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-card, .register-card {
        padding: 24px;
        border-radius: var(--radius-lg);
    }
    
    .form-row-two {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .calculator-results {
        padding: 20px;
    }
    
    .total-number {
        font-size: 1.8rem;
    }
}

/* Animacijos */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
