/* ============================================
   KAISERWÄNDE S.R.O. — Landing Page Styles
   Inšpirácia: Ashley Creative Agency
   Minimalistický dizajn, veľká typografia
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #3D2B1F;
    --dark-soft: rgba(61, 43, 31, 0.8);
    --accent: #FF9800;
    --accent-hover: #E68A00;
    --text: rgba(0, 0, 0, 0.6);
    --text-heading: #000;
    --text-light: rgba(0, 0, 0, 0.4);
    --bg: #fff;
    --bg-soft: #F2F2F2;
    --border: rgba(0, 0, 0, 0.1);
    --border-light: rgba(255, 255, 255, 0.1);
    --white: #fff;
    --white-muted: rgba(255, 255, 255, 0.9);
    --white-soft: rgba(255, 255, 255, 0.4);
    --transition: 0.4s cubic-bezier(0, 0, 0.36, 1);
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ---------- TYPOGRAFIA ---------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-heading);
}

h1 { font-size: 5rem; }
h2 { font-size: 4rem; }
h3 { font-size: 2.6rem; }
h4 { font-size: 1.75rem; }
h5 { font-size: 1.25rem; line-height: 1.5; }
h6 { font-size: 1.125rem; line-height: 1.5; }

.thin { font-weight: 100; }
.upper {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
}
.text-xl {
    font-size: 1.375rem;
    line-height: 1.8;
}

/* ---------- SEKCIE ---------- */
.section {
    padding: 120px 0;
}

.section--dark {
    background: var(--dark);
    color: var(--white-muted);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
    color: var(--white);
}

.section--soft {
    background: var(--bg-soft);
}

.section__header {
    margin-bottom: 60px;
}

.section__header--center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.section__badge {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 500px;
}

.section__header--center .section__subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section--dark .section__subtitle {
    color: var(--white-soft);
}

.section--dark .section__badge {
    color: var(--accent);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: 70px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn--sm { padding: 12px 24px; font-size: 0.8rem; }
.btn--lg { padding: 22px 44px; font-size: 0.9rem; }
.btn--block { width: 100%; justify-content: center; }

.btn--accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    position: relative;
    overflow: hidden;
}
.btn--accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 60%,
        transparent 80%
    );
    animation: btnShine 4s ease-in-out infinite;
}
.navbar .btn--accent::before { display: none; }
.btn--accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}

@keyframes btnShine {
    0% { left: -100%; }
    40% { left: 150%; }
    100% { left: 150%; }
}

.btn--dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.btn--dark:hover {
    background: transparent;
    color: var(--dark);
}

.btn--outline {
    background: transparent;
    color: var(--text-heading);
    border-color: var(--border);
}
.btn--outline:hover {
    border-color: var(--dark);
    color: var(--dark);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--border-light);
}
.btn--outline-light:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn--text {
    background: transparent;
    color: var(--accent);
    border: none;
    padding: 0;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 1px;
}
.btn--text:hover {
    color: var(--dark);
}

.btn--ghost {
    background: transparent;
    color: var(--white-soft);
    border: none;
    padding: 0;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 1px;
}
.btn--ghost:hover {
    color: var(--accent);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

/* Navbar na hero — biely text */
.navbar--hero .navbar__link { color: var(--white-soft); }
.navbar--hero .navbar__link:hover,
.navbar--hero .navbar__link.active { color: var(--white); }
.navbar--hero .navbar__link::after { background: var(--accent); }
.navbar--hero .navbar__toggle span { background: var(--white); }
.navbar--hero .navbar__logo-img { filter: brightness(0) invert(1); }

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

/* Po scrolle resetovať na tmavý text */
.navbar.scrolled.navbar--hero .navbar__link { color: var(--text); }
.navbar.scrolled.navbar--hero .navbar__link:hover,
.navbar.scrolled.navbar--hero .navbar__link.active { color: var(--text-heading); }
.navbar.scrolled.navbar--hero .navbar__link::after { background: var(--dark); }
.navbar.scrolled.navbar--hero .navbar__toggle span { background: var(--text-heading); }
.navbar.scrolled.navbar--hero .navbar__logo-img { filter: none; }

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
}

.navbar__logo-img {
    height: 42px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .navbar__logo-img {
    height: 36px;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.5px;
    position: relative;
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--text-heading);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--dark);
    transition: var(--transition);
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

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

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 28px;
}

.navbar__toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text-heading);
    transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: min(100vh, 900px);
    display: flex;
    align-items: flex-end;
    padding: 0 0 100px;
    background: var(--dark);
    overflow: hidden;
}

/* ── Animované objekty v hero ── */
.hero__objects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Spoločný štýl pre všetky objekty */
.hero-obj {
    position: absolute;
    fill: none;
    stroke-width: 1;
}

/* ── Geometrické tvary — pozadie, tenká línia, veľké, pomalé ── */
.hero-obj--g1 { width: 500px; height: 500px; top: -8%; right: -5%; opacity: 0.07; animation: heroDrift6 35s ease-in-out infinite; }
.hero-obj--g2 { width: 380px; height: 380px; bottom: -5%; right: 15%; opacity: 0.06; animation: heroDrift4 40s ease-in-out infinite; }
.hero-obj--g3 { width: 300px; height: 300px; top: 10%; left: 45%; opacity: 0.05; animation: heroDrift5 45s ease-in-out infinite; }
.hero-obj--g4 { width: 250px; height: 250px; top: 30%; right: 28%; opacity: 0.06; animation: heroDrift2 38s ease-in-out infinite; }

/* ── Facility objekty — popredie, roztrúsené bez prekrývania ── */
/* 1 — spray fľaša: vpravo hore */
.hero-obj--1 { width: 170px; height: 170px; top: 3%; right: 6%; opacity: 0.3; animation: heroDrift1 18s ease-in-out infinite; }
/* 2 — vedro: vľavo stred (väčšie) */
.hero-obj--2 { width: 190px; height: 190px; top: 35%; left: 42%; opacity: 0.28; animation: heroDrift2 22s ease-in-out infinite; }
/* 3 — mop: stred hore (väčší) */
.hero-obj--3 { width: 180px; height: 180px; top: 2%; right: 30%; opacity: 0.28; animation: heroDrift3 20s ease-in-out infinite; }
/* 5 — konár: vpravo stred */
.hero-obj--5 { width: 140px; height: 140px; top: 30%; right: 10%; opacity: 0.25; animation: heroDrift5 19s ease-in-out infinite; }
/* 6 — budova: vpravo dole, veľká jemná */
.hero-obj--6 { width: 320px; height: 320px; bottom: 2%; right: -2%; opacity: 0.12; animation: heroDrift6 30s ease-in-out infinite; }
/* 7 — iskrivé hviezdy: vľavo dole */
.hero-obj--7 { width: 140px; height: 140px; bottom: 8%; left: 40%; opacity: 0.3; animation: heroDrift7 16s ease-in-out infinite; }
/* 8 — kvapky: vpravo dole */
.hero-obj--8 { width: 140px; height: 140px; bottom: 15%; right: 22%; opacity: 0.3; animation: heroDrift8 21s ease-in-out infinite; }
/* 8b — kvapky kópia: vľavo hore, menšie */
.hero-obj--8b { width: 80px; height: 80px; top: 15%; left: 52%; opacity: 0.2; animation: heroDrift1 24s ease-in-out infinite; }
/* 8c — kvapky kópia: stred, väčšie */
.hero-obj--8c { width: 100px; height: 100px; bottom: 35%; left: 55%; opacity: 0.18; animation: heroDrift3 27s ease-in-out infinite; }

/* ── Nepravidelné pohyby okolo ťažiska ──
   Každý objekt má unikátnu dráhu — žiadne rotácie,
   len jemné posuny v rôznych smeroch */

@keyframes heroDrift1 {
    0%   { transform: translate(0, 0); }
    15%  { transform: translate(12px, -18px); }
    35%  { transform: translate(-8px, -10px); }
    55%  { transform: translate(5px, 14px); }
    75%  { transform: translate(-14px, 6px); }
    90%  { transform: translate(8px, -5px); }
    100% { transform: translate(0, 0); }
}

@keyframes heroDrift2 {
    0%   { transform: translate(0, 0); }
    20%  { transform: translate(-10px, 15px); }
    40%  { transform: translate(8px, 8px); }
    60%  { transform: translate(15px, -12px); }
    80%  { transform: translate(-6px, -8px); }
    100% { transform: translate(0, 0); }
}

@keyframes heroDrift3 {
    0%   { transform: translate(0, 0); }
    18%  { transform: translate(10px, 12px); }
    38%  { transform: translate(-12px, 5px); }
    58%  { transform: translate(-5px, -16px); }
    78%  { transform: translate(14px, -4px); }
    100% { transform: translate(0, 0); }
}

@keyframes heroDrift4 {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(-8px, -14px); }
    50%  { transform: translate(10px, -6px); }
    75%  { transform: translate(-4px, 12px); }
    100% { transform: translate(0, 0); }
}

@keyframes heroDrift5 {
    0%   { transform: translate(0, 0); }
    15%  { transform: translate(14px, 8px); }
    40%  { transform: translate(-6px, 18px); }
    60%  { transform: translate(-16px, -4px); }
    85%  { transform: translate(6px, -12px); }
    100% { transform: translate(0, 0); }
}

@keyframes heroDrift6 {
    0%   { transform: translate(0, 0); }
    30%  { transform: translate(-6px, 8px); }
    60%  { transform: translate(5px, -6px); }
    100% { transform: translate(0, 0); }
}

@keyframes heroDrift7 {
    0%   { transform: translate(0, 0); }
    20%  { transform: translate(-12px, -10px); }
    45%  { transform: translate(8px, -16px); }
    65%  { transform: translate(14px, 8px); }
    85%  { transform: translate(-6px, 14px); }
    100% { transform: translate(0, 0); }
}

@keyframes heroDrift8 {
    0%   { transform: translate(0, 0); }
    22%  { transform: translate(10px, -14px); }
    48%  { transform: translate(-14px, -4px); }
    72%  { transform: translate(-4px, 16px); }
    92%  { transform: translate(12px, 6px); }
    100% { transform: translate(0, 0); }
}

.hero__inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

.hero__sidebar {
    max-width: 380px;
    padding-top: 80px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 60px;
}

/* Badge nad nadpisom — neposúva layout */
.hero__content .hero__badge {
    position: absolute;
    top: 0;
    left: 0;
}

.hero__content {
    max-width: 700px;
}

.hero__badge {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 30px;
    background: rgba(255, 152, 0, 0.12);
    padding: 8px 20px;
    border-radius: 50px;
}

.hero__title {
    font-size: 5rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
}

/* Shine efekt po jednotlivých písmenách */
.hero__title .shine-letter {
    display: inline-block;
    color: var(--white);
    animation: letterShine 5s ease-in-out infinite;
    animation-delay: var(--d);
}

.hero__title .shine-letter.is-thin {
    font-weight: 100;
}

@keyframes letterShine {
    0%, 100% { color: var(--white); text-shadow: none; }
    12% { color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.8), 0 0 20px rgba(255,200,100,0.4); }
    24% { color: var(--white); text-shadow: none; }
}

.hero__title .thin {
    font-weight: 100;
}

.hero__sidebar {
    max-width: 380px;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--white-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero__cta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    right: 60px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-soft);
    transition: var(--transition);
}

.hero__scroll:hover {
    color: var(--accent);
}

/* ---------- STATS BAR ---------- */
.stats-bar {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item__number {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-heading);
    line-height: 1;
}

.stat-item__suffix {
    font-size: 2rem;
    font-weight: 100;
    color: var(--accent);
}

.stat-item__label {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ---------- FEATURES ---------- */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 50px 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: var(--transition);
}

.feature-card:hover::after {
    width: 100%;
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.feature-card__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-card__text {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text);
}

.feature-card__list li i {
    color: var(--accent);
    font-size: 0.7rem;
}

/* ---------- HOW IT WORKS ---------- */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.step {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    position: relative;
}

.step__number {
    width: 80px;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.step__content { flex: 1; }

.step__title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.step__text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

.step__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    border: 1px solid var(--border);
    border-radius: 50%;
}

/* ---------- SERVICES ---------- */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.service-card {
    padding: 50px 30px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.section--dark .service-card {
    border-color: var(--border-light);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: var(--transition);
}

.service-card:hover::after {
    width: 100%;
}

.service-card__badge {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
}

.service-card__icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.section--dark .service-card__title {
    color: var(--white);
}

.service-card__text {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.7;
}

.section--dark .service-card__text {
    color: var(--white-soft);
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    flex: 1;
}

.service-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.section--dark .service-card__list li {
    color: var(--white-soft);
}

.service-card__list li i {
    color: var(--accent);
    font-size: 0.7rem;
}

.services__note {
    text-align: center;
    margin-top: 60px;
    font-size: 0.9rem;
    color: var(--white-soft);
}

.services__note a {
    color: var(--accent);
    font-weight: 500;
}

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

/* ---------- PRICING ---------- */
.pricing__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.pricing__toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.pricing__toggle-label--active {
    color: var(--text-heading);
}

.pricing__toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--border);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.pricing__toggle-switch.active {
    background: var(--accent);
}

.pricing__toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.pricing__toggle-switch.active .pricing__toggle-knob {
    left: 27px;
}

.pricing__save-badge {
    background: rgba(196, 154, 108, 0.1);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 50px;
    margin-left: 4px;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}

.pricing-card {
    padding: 50px 30px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.pricing-card:last-child { border-right: none; }

.pricing-card--featured {
    background: var(--dark);
    color: var(--white-muted);
}

.pricing-card--featured h3,
.pricing-card--featured .pricing-card__amount { color: var(--white); }
.pricing-card--featured .pricing-card__desc,
.pricing-card--featured .pricing-card__period,
.pricing-card--featured .pricing-card__currency { color: var(--white-soft); }

.pricing-card__popular {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
}

.pricing-card__header { margin-bottom: 20px; }

.pricing-card__name { font-size: 1.5rem; font-weight: 500; }

.pricing-card__desc { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.pricing-card--featured .pricing-card__price { border-bottom-color: var(--border-light); }

.pricing-card__amount { font-size: 3.5rem; font-weight: 500; line-height: 1; color: var(--text-heading); }
.pricing-card__currency { font-size: 1.5rem; font-weight: 100; color: var(--text-light); }
.pricing-card__period { font-size: 0.85rem; color: var(--text-light); margin-left: 4px; }

.pricing-card__custom-price {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.pricing-card--featured .pricing-card__custom-price { border-bottom-color: var(--border-light); }

.pricing-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.pricing-card__features li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; }
.pricing-card__features li.included { color: var(--text-heading); }
.pricing-card--featured .pricing-card__features li.included { color: var(--white-muted); }
.pricing-card__features li.included i { color: var(--accent); }
.pricing-card__features li.excluded { color: var(--text-light); }
.pricing-card--featured .pricing-card__features li.excluded { color: var(--white-soft); }

.pricing__note { text-align: center; margin-top: 40px; font-size: 0.875rem; color: var(--text); }
.pricing__note a { color: var(--accent); font-weight: 500; }

/* ---------- TESTIMONIALS ---------- */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 0.8rem;
}

.testimonial-card__text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 50%;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-heading);
}

.testimonial-card__author span {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- CTA ---------- */
.cta {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: 3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta__title .thin { font-weight: 100; }

.cta__text {
    font-size: 1.1rem;
    color: var(--white-soft);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- FAQ ---------- */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-heading);
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-item__question i {
    color: var(--accent);
    font-size: 0.8rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-item__question i { transform: rotate(180deg); }

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-item__answer { max-height: 300px; }

.faq-item__answer p {
    padding: 0 0 24px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
}

/* ---------- CONTACT ---------- */
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-card:last-of-type { border-bottom: none; }

.contact-info-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
}

.contact-info-card strong {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-card a { color: var(--text-heading); font-weight: 500; font-size: 0.95rem; }
.contact-info-card a:hover { color: var(--accent); }

.contact__social { display: flex; gap: 12px; margin-top: 30px; }

.contact__social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact__social a:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* Kontaktný formulár */
.contact__form { padding: 40px; border: 1px solid var(--border); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-heading);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--border);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-heading);
    background: transparent;
    transition: var(--transition);
    outline: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--accent); }

.form-group textarea { resize: vertical; min-height: 80px; }

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--dark);
    padding: 120px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-light);
}

.footer__logo { display: inline-block; margin-bottom: 20px; }

.footer__logo-img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--transition);
}

.footer__logo:hover .footer__logo-img { opacity: 1; }

.footer__brand p { font-size: 0.9rem; color: var(--white-soft); line-height: 1.8; max-width: 320px; }

.footer__links h4 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__links li { margin-bottom: 12px; }
.footer__links a { font-size: 0.9rem; color: var(--white-soft); }
.footer__links a:hover { color: var(--accent); }

.footer__bottom { padding: 30px 0; text-align: center; }
.footer__bottom p { font-size: 0.8rem; color: var(--white-soft); }
.footer__bottom a { color: var(--accent); }
.footer__bottom a:hover { color: var(--white); }

.footer__member { text-align: center; padding: 12px 0 0; font-size: 0.75rem; color: var(--white-soft); letter-spacing: 0.5px; }
.footer__member a { color: var(--accent); font-weight: 500; }
.footer__member a:hover { color: var(--white); }

/* ---------- LOGIN PAGE ---------- */
.navbar--solid { background: #fff; box-shadow: 0 1px 0 var(--border); padding: 16px 0; }

.login-page { min-height: calc(100vh - 160px); display: flex; align-items: center; padding: 120px 0 60px; }

.login-page__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.login-page__box { padding: 50px; border: 1px solid var(--border); }

.login-page__box h1 { font-size: 2rem; font-weight: 500; margin-bottom: 8px; }

.login-page__subtitle { color: var(--text); font-size: 0.95rem; margin-bottom: 40px; }

.login-page__form .form-group { margin-bottom: 24px; }

.login-page__form .form-group label {
    display: block; font-size: 0.75rem; font-weight: 500; margin-bottom: 8px;
    color: var(--text-heading); text-transform: uppercase; letter-spacing: 1px;
}

.login-page__form .form-group input {
    width: 100%; padding: 14px 0; border: none; border-bottom: 1px solid var(--border);
    font-size: 1rem; font-family: inherit; font-weight: 300;
    transition: var(--transition); outline: none;
}

.login-page__form .form-group input:focus { border-bottom-color: var(--accent); }

.login-page__footer { text-align: center; margin-top: 30px; font-size: 0.875rem; color: var(--text); }
.login-page__footer a { color: var(--accent); font-weight: 500; }
.login-page__footer a:hover { color: var(--dark); }

.login-page__info h2 { font-size: 2rem; font-weight: 500; margin-bottom: 16px; }
.login-page__info p { color: var(--text); font-size: 1rem; line-height: 1.8; margin-bottom: 30px; }

.login-page__benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.login-page__benefits li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text-heading); }
.login-page__benefits li i { color: var(--accent); font-size: 0.9rem; }

/* ---------- ANIMATIONS ---------- */
[data-animate] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate].visible { opacity: 1; transform: translate(0, 0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.75rem; }
    h3 { font-size: 2rem; }
    .hero__title { font-size: 3.5rem; }
    .hero__inner { flex-direction: column; align-items: flex-start; }
    .hero__sidebar { max-width: 100%; }
    .features__grid, .services__grid, .pricing__grid, .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing__grid { border: none; }
    .pricing-card { border: 1px solid var(--border); }
    .contact__inner { grid-template-columns: 1fr; gap: 40px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 90px 0; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    .navbar__menu { display: none; }
    .navbar__actions { display: none; }
    .navbar__toggle { display: flex; }
    .navbar__menu.active {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; padding: 30px; gap: 0; box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    }
    .navbar__menu.active .navbar__link { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
    .hero { padding: 0 0 80px; }
    .hero__title { font-size: 2.5rem; }
    .hero__scroll { display: none; }
    .features__grid, .services__grid, .pricing__grid, .testimonials__grid { grid-template-columns: 1fr; }
    .pricing-card { border: 1px solid var(--border); border-right: 1px solid var(--border); }
    .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .steps::before { left: 30px; }
    .step__number { width: 60px; min-width: 60px; height: 60px; font-size: 1rem; }
    .step { gap: 24px; }
    .step__icon { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .contact__form { padding: 24px; }
    .footer { padding: 90px 0 0; }
    .footer__grid { grid-template-columns: 1fr; gap: 40px; }
    .cta__title { font-size: 2rem; }
    .login-page__inner { grid-template-columns: 1fr; gap: 40px; }
    .login-page__box { padding: 30px; }
    .login-page { padding: 100px 0 40px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .hero__cta { flex-direction: column; }
    .hero__cta .btn { width: 100%; justify-content: center; }
    .stats-bar__grid { grid-template-columns: 1fr 1fr; }
    .cta__buttons { flex-direction: column; }
    .cta__buttons .btn { width: 100%; justify-content: center; }
    .stat-item__number { font-size: 2.5rem; }
}
