/* BizHub - Complete Styles - 1:1 Figma Match */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Brand Colors */
    --primary-green: #5EE9B5;
    --secondary-green: #B2FFF7;
    --tertiary-green: #CBFBF1;

    /* Dark Colors */
    --dark-navy: #0F172B;
    --dark-teal: #0E162B;
    --dark-teal-mid: #0A4E4A;

    /* Accent Colors */
    --cyan-blue: #00B8DA;
    --cyan-teal: #00BBA6;
    --cyan-green: #00BC7C;

    /* Text Colors */
    --text-black: #000000;
    --text-white: #FFFFFF;
    --text-gray: #90A1B8;

    /* Light Backgrounds */
    --bg-very-light: #F0FDFA;
    --bg-light-blue: #EDFCF9;
    --bg-cyan-light: #CEFAFE;

    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1856px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    background: transparent;
    padding: 20px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .logo {
    color: #000000 !important;
}

.navbar.scrolled .lang-btn {
    color: #000000 !important;
}

.navbar.scrolled .lang-btn svg path {
    fill: #000000 !important;
}

.navbar.scrolled .mobile-menu-btn svg path {
    stroke: #000000 !important;
}

/* Dark navigation for specific pages (Kontakt, Cennik, Funkcie) */
.page-dark-nav .navbar .nav-links a,
.page-dark-nav .navbar .logo {
    color: #000000 !important;
}

.page-dark-nav .navbar .lang-btn {
    color: #000000 !important;
}

.page-dark-nav .navbar .lang-btn svg path {
    fill: #000000 !important;
}

.page-dark-nav .mobile-menu-btn svg path {
    stroke: #000000 !important;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 38.89px;
    color: var(--white);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links li a {
    display: block;
    padding: 8px 24px;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s;
    height: 40px;
    line-height: 24px;
}

.nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-lang {
    display: flex;
    align-items: center;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
    transition: background-color 0.3s;
    height: 40px;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Language Dropdown */
.nav-lang {
    position: relative;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(15, 23, 43, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 200px;
    padding: 8px 0;
    margin-top: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.lang-dropdown.show {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.lang-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
    background-color: rgba(0, 187, 167, 0.15);
    color: #5EE9B5;
}

.lang-option .flag {
    font-size: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    background: #0A2F2D;
    padding-top: 150px;
    padding-bottom: 60px;
    overflow: hidden;
}

/* Hero Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: -15px;
    width: calc(100% + 30px);
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(15, 23, 43, 0.85) 0%, rgba(11, 79, 74, 0.75) 50%, rgba(15, 23, 43, 0.9) 100%);
    z-index: 2;
}

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

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-text {
    flex: 1;
    max-width: 800px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 95.46px;
    line-height: 119.325px;
    color: var(--white);
    margin-bottom: 60px;
}

.hero-description {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 23.865px;
    line-height: 38.781px;
    color: var(--bg-very-light);
    margin-bottom: 50px;
    max-width: 750px;
}

.hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
    max-width: 60%;
}

.hero-buttons .btn {
    width: 100%;
    min-width: unset;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 16px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: #009689;
    box-shadow: 0px 24.859px 49.719px -11.933px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 60%;
}

.hero-badges .badge {
    width: 100%;
    min-width: unset;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 32px;
    border-radius: 16px;
}

.badge-label {
    font-size: 12px;
    color: #D1D5DC;
    margin-bottom: 4px;
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

/* Hero Images - Dashboard */
.hero-images {
    position: absolute;
    right: -280px;
    top: -90px;
    width: 75%;
    max-width: 1440px;
    z-index: 4;
}

.hero-dashboard-img {
    width: 100%;
    height: auto;
}

/* Hero Floating Cards */
.hero-floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0px 27.458px 54.916px -13.18px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 240px;
    position: absolute;
    pointer-events: auto;
}

/* Position Revenue card (Výnosy) - top left above laptop */
.card-revenue {
    top: 110px;
    left: 140px;
}

/* Position Documents card (Dokumenty) - bottom right below laptop */
.card-documents {
    bottom: 40px;
    right: 240px;
}

.card-icon {
    width: 52px;
    height: 52px;
    background: #CBFBF1;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-green {
    background: #DCFCE7;
}

.card-label {
    font-size: 13px;
    color: #62748E;
    margin-bottom: 4px;
}

.card-value {
    font-size: 22px;
    font-weight: 700;
    color: #009689;
}

.card-value-green {
    color: #00A63E;
}

/* Stats Section - EXACT FIGMA SPECS */
.stats-section {
    background: #00C48C;
    padding: 60px 0;
    min-height: 238px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

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

.stats-section .stat-number {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 79.36px;
    line-height: 66.843px;
    color: #000000 !important;
    margin-bottom: 20px;
}

.stats-section .stat-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 23.865px;
    line-height: 38.781px;
    color: #000000 !important;
}

/* Why Section */
.why-section {
    background: #F8FBFD;
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 45px;
    color: #0F172B;
    margin-bottom: 20px;
}

.section-header p {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 39px;
    color: #45556C;
}

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

.feature-card {
    padding: 40px;
    border-radius: 24px;
    border: 1px solid;
}

.feature-card-teal {
    background: linear-gradient(153.125deg, #FFFFFF 0%, #F0FDFA 100%);
    border-color: #CBFBF1;
}

.feature-card-green {
    background: linear-gradient(153.397deg, #FFFFFF 0%, #ECFDF5 100%);
    border-color: #D0FAE5;
}

.feature-card-blue {
    background: linear-gradient(152.888deg, #FFFFFF 0%, #ECFEFF 100%);
    border-color: #CEFAFE;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: 0px 10px 15px -3px rgba(0, 187, 167, 0.3), 0px 4px 6px -4px rgba(0, 187, 167, 0.3);
}

.feature-icon-teal {
    background: linear-gradient(135deg, #00BBA7 0%, #00B8DB 100%);
}

.feature-icon-green {
    background: linear-gradient(135deg, #00BC7D 0%, #00C950 100%);
}

.feature-icon-blue {
    background: linear-gradient(135deg, #00B8DB 0%, #00BBA7 100%);
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: var(--text-black);
    margin-bottom: 16px;
}

.feature-card p {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    color: #45556C;
}

/* Integrations Section */
.integrations-section {
    background: #fff;
    padding: 80px 0;
}

.integrations-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-items: center;
    gap: 250px;
    width: 100%;
    margin: 40px auto 0;
    padding: 0 60px;
}

.integration-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.integration-logo img {
    max-height: 100px;
    max-width: 280px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.integration-logo-large img {
    transform: scale(2);
}

.integration-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.integration-logo-large img:hover {
    opacity: 1;
    transform: scale(2.1);
}

/* How Section - EXACT FIGMA SPECS */
.how-section {
    background: #0F172B;
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 1080px;
}

/* How Section Background Image */
.how-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}

.how-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* How Section Gradient Overlays */
.how-gradient-overlay {
    display: none;
}

.how-section .container {
    position: relative;
    z-index: 3;
}

.how-section .section-header h2 {
    color: white !important;
}

.section-title-white {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 45px;
    color: white !important;
    text-align: center;
    margin-bottom: 80px;
    margin-top: 50px;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 550px;
}

.quote-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #CBFBF1;
    border-radius: 24px;
    padding: 35px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.quote-arrow {
    position: absolute;
    left: -48px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    opacity: 0.3;
}

.quote-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 32.827px;
    line-height: 41.033px;
    color: var(--white);
    text-align: center;
}

/* Green Section with Phones - EXACT FIGMA SPECS */
.green-section {
    background: #1A2D2E;
    padding: 100px 0;
    text-align: center;
    position: relative;
    min-height: 1080px;
    overflow: hidden;
}


/* Phone Mockups */
.phone-mockup {
    position: absolute;
    z-index: 3;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 37px;
}

.phone-left {
    left: 160px;
    top: 200px;
    width: 312px;
    height: 677px;
}

.phone-center-left {
    left: 237px;
    top: 222px;
    width: 312px;
    height: 677px;
}

.phone-center {
    left: 342px;
    top: 195px;
    width: 338px;
    height: 731px;
}

.phone-main {
    left: 400px;
    top: 86px;
    width: 506px;
    height: 954px;
    z-index: 4;
}

/* Background Entrepreneur Image */
.green-bg-entrepreneur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}

.green-bg-entrepreneur img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(1.1);
}

/* Green Section Content */
.green-section .container {
    position: relative;
    z-index: 5;
    padding-top: 0px;
    margin-top: -50px;
}

.section-title-dark {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 61px;
    color: var(--white);
    margin-bottom: 40px;
}

.btn-white-solid {
    background: var(--white);
    color: #009689;
    box-shadow: 0px 24.859px 49.719px -11.933px rgba(0, 0, 0, 0.25);
}

.btn-white-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0px 30px 60px -15px rgba(0, 0, 0, 0.3);
}

/* CTA Section - EXACT FIGMA SPECS */
.cta-section {
    background: linear-gradient(160.15deg, #0E162B 0%, #0A4E4A 50%, #0E162B 100%);
    padding: 140px 0;
}

.cta-content {
    text-align: center;
    max-width: 1133px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    color: var(--white);
    margin-bottom: 30px;
}

.cta-content p {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 39px;
    color: #CBFBF1;
    margin-bottom: 50px;
    padding: 0 80px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-cta-primary {
    background: linear-gradient(to right, #00BBA7, #00B8DB 50%, #00BC7D);
    color: var(--white);
    padding: 24px 40px;
    border-radius: 16px;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 20px 40px rgba(0, 187, 167, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 24px 40px;
    border-radius: 16px;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

/* Footer - EXACT FIGMA SPECS */
.footer {
    background: #0F172B;
    color: #90A1B8;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px;
    margin-bottom: 60px;
    padding: 0 350px;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #90A1B8;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #1D293D;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 60px;
    padding-right: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 44.122px;
    line-height: 55.152px;
    color: var(--white);
}

.footer-bottom p {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 10.747px;
    line-height: 17.463px;
    color: #90A1B8;
    text-align: center;
}

/* Contact Page Styles */
.contact-page {
    background: #CBFBF1;
    padding: 120px 0;
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    padding-top: 60px;
}

.contact-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 75px;
    color: #0F172B;
    margin-bottom: 20px;
}

.contact-header p {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 39px;
    color: #45556C;
    max-width: 900px;
    margin: 0 auto;
}

.contact-content {
    margin-bottom: 100px;
}

.contact-info-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: -50px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: linear-gradient(171.917deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 34px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 120px;
}

.info-icon {
    width: 64px;
    height: 64px;
    border-radius: 16.4px;
    background: linear-gradient(135deg, #00BBA7 0%, #00BC7D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #62748E;
    margin-bottom: 10px;
}

.info-value {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #0F172B;
    text-decoration: none;
}

.info-value:hover {
    color: #00BBA7;
}

.support-box {
    background: linear-gradient(151.651deg, #0F172B 0%, #0B4F4A 100%);
    border-radius: 24px;
    padding: 40px;
}

.support-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: white;
    margin-bottom: 32px;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 120px;
}

.support-icon {
    width: 48px;
    height: 48px;
    border-radius: 16.4px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-option h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22.5px;
    color: white;
    margin-bottom: 8px;
}

.support-option p {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #CBFBF1;
}

.support-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.support-box-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.support-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.support-contact-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22.5px;
    color: white;
    margin-bottom: 8px;
}

.support-contact-item p,
.support-contact-item a {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #CBFBF1;
    text-decoration: none;
}

.support-contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    background: linear-gradient(to right, #F0FDFA, #ECFEFF);
    border: 2px solid #96F7E4;
    border-radius: 24px;
    padding: 64px;
    text-align: center;
}

.contact-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
    color: #0F172B;
    margin-bottom: 24px;
}

.contact-cta p {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32.5px;
    color: #45556C;
    margin-bottom: 40px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Page Styles */
.features-hero {
    background: #5EE9B5;
    padding: 150px 0 100px;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #0F172B;
    margin-bottom: 20px;
}

.features-header p {
    font-size: 24px;
    color: #0F172B;
    opacity: 0.8;
}

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

.feature-card {
    background: linear-gradient(153deg, #F0FDFA 0%, #ECFEFF 100%);
    border: 2px solid white;
    border-radius: 24px;
    padding: 42px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #0F172B;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 18px;
    color: #45556C;
    line-height: 1.6;
}

/* Access Section */
.access-section {
    background: linear-gradient(160deg, #0F172B 0%, #0B4F4A 50%, #0F172B 100%);
    padding: 100px 0;
}

.access-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.access-section .section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.access-section .section-header p {
    font-size: 24px;
    color: #CBFBF1;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.access-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 42px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.access-card:hover {
    transform: translateY(-10px);
    border-color: #00BBA7;
    box-shadow: 0 20px 40px rgba(0, 187, 167, 0.15);
}

.access-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #CBFBF1 0%, #CEFAFE 100%);
    border-radius: 16.4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.access-card:hover .access-icon {
    transform: scale(1.1) rotate(5deg);
}

.access-icon img {
    width: 36px;
    height: 36px;
}

.access-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #0F172B;
    margin-bottom: 12px;
}

.access-card p {
    font-size: 18px;
    color: #45556C;
}

/* How It Works Section - Funkcie Page - FIGMA EXACT MATCH */
.funkcie-how-section {
    background: white;
    padding: 100px 0;
}

.funkcie-how-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.funkcie-how-section .section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #0F172B;
    margin-bottom: 20px;
}

.funkcie-how-section .section-header p {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: #45556C;
    line-height: 1.6;
}

/* Single Row Layout - Box → Icon → Box → Icon → Box */
.steps-single-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 80px;
    padding: 0 60px;
    position: relative;
}

.step-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.step-icon-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 0 20px;
}

.step-number-figma {
    width: 131px;
    height: 131px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 27px 34px -6px rgba(0, 0, 0, 0.1), 0 10px 13px -8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number-figma:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 45px -8px rgba(0, 0, 0, 0.15), 0 15px 20px -10px rgba(0, 0, 0, 0.15);
}

.step-number-figma span {
    font-family: 'Raleway', sans-serif;
    font-size: 82px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.step-num-1 {
    background: linear-gradient(135deg, #00BBA7 0%, #00B8DB 100%);
}

.step-num-2 {
    background: linear-gradient(135deg, #00B8DB 0%, #00BC7D 100%);
}

.step-num-3 {
    background: linear-gradient(135deg, #00BC7D 0%, #00C950 100%);
}

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

.step-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #0F172B;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: #45556C;
    line-height: 1.6;
}

.step-icon-inline svg,
.step-icon-inline img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* Move BRIEFCASE (2nd element) down */
.steps-single-row > .step-icon-inline:nth-child(2) {
    margin-top: 50px;
}

/* Make ROBOT (4th element) bigger */
.steps-single-row > .step-icon-inline:nth-child(4) img {
    width: 150px;
    height: 150px;
}

/* Dotted Arrow Overlay */
.step-arrows-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 300px;
    z-index: 0;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .steps-single-row {
        flex-direction: column;
        align-items: center;
        gap: 60px;
        padding: 0 20px;
    }

    .step-icon-inline {
        transform: rotate(90deg);
    }

    .step-arrows-overlay {
        display: none;
    }

    .step-number-figma {
        width: 110px;
        height: 110px;
    }

    .step-number-figma span {
        font-size: 70px;
    }

    .step-content h4 {
        font-size: 24px;
    }

    .step-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 24px;
        max-width: 100%;
    }

    /* Navigation */
    .nav-links {
        display: none;
    }

    .lang-selector {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Hero Section - EXACT FIGMA MOBILE */
    .hero {
        padding: 80px 0 0;
        min-height: auto;
        background: linear-gradient(103.98deg, #00BBA7 0%, #00B8DB 50%, #00BC7D 100%);
        position: relative;
    }

    .hero-bg-image {
        opacity: 0.61;
        mix-blend-mode: multiply;
    }

    .hero-gradient-overlay {
        background: linear-gradient(90deg, transparent 0%, #031917 102.92%);
        mix-blend-mode: multiply;
    }

    .hero-content {
        flex-direction: column;
        position: relative;
        z-index: 2;
    }

    .hero-text {
        width: 100%;
    }

    .hero-title {
        font-size: 47px;
        line-height: 65px;
        margin-bottom: 40px;
        color: white;
        font-weight: 700;
    }

    .hero-description {
        font-size: 23.865px;
        line-height: 38.781px;
        margin-bottom: 40px;
        color: #F0FDFA;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 16px;
        margin-bottom: 24px;
    }

    .hero-buttons .btn-primary {
        background: white;
        color: #009689;
        box-shadow: 0px 24.859px 49.719px -11.933px rgba(0, 0, 0, 0.25);
        border-radius: 15.91px;
        font-size: 15.91px;
        padding: 16px 32px;
        flex: 1;
    }

    .hero-buttons .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        border: 1.989px solid rgba(255, 255, 255, 0.3);
        color: white;
        border-radius: 15.91px;
        font-size: 15.91px;
        padding: 16px 32px;
        flex: 1;
    }

    .hero-badges {
        display: flex;
        flex-direction: row;
        gap: 16px;
        margin-bottom: 40px;
    }

    .hero-badges .badge {
        background: rgba(0, 0, 0, 0.8);
        border: 0.888px solid rgba(255, 255, 255, 0.1);
        border-radius: 14.559px;
        padding: 11px 22px;
        flex: 1;
    }

    .hero-badges .badge-label {
        font-size: 10.653px;
        color: #D1D5DC;
    }

    .hero-badges .badge-text {
        font-size: 14.204px;
        color: white;
    }

    .hero-images {
        width: 100%;
        max-width: 480px;
        margin: 0 -42px;
        position: relative;
    }

    .hero-dashboard-img {
        width: 100%;
        height: auto;
    }

    .hero-floating-cards {
        display: none;
    }

    /* Stats Section - GREEN BACKGROUND */
    .stats-section {
        padding: 0 !important;
        background: #5EE9B5;
        min-height: auto !important;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px 0;
    }

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

    .stat-number {
        font-size: 24px !important;
        line-height: 28px !important;
        color: #000000;
        font-weight: 700;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 12px !important;
        line-height: 1.2 !important;
        color: #000000;
        margin: 0;
    }

    .stats-section .stat-number {
        font-size: 24px !important;
        line-height: 28px !important;
    }

    .stats-section .stat-label {
        font-size: 12px !important;
        line-height: 1.2 !important;
    }

    /* Why Section (Prečo BizHub) */
    .why-section {
        padding: 80px 0;
        background: white;
    }

    .section-header h2 {
        font-size: 36px;
        line-height: 45px;
        text-align: center;
        color: #0F172B;
    }

    .section-header p {
        font-size: 20px;
        line-height: 32.5px;
        text-align: center;
        color: #45556C;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 64px;
    }

    .feature-card {
        padding: 32px;
        border-radius: 24px;
        border: 0.666px solid;
    }

    .feature-card-teal {
        background: linear-gradient(141.6deg, #FFFFFF 0%, #F0FDFA 100%);
        border-color: #CBFBF1;
    }

    .feature-card-green {
        background: linear-gradient(141.6deg, #FFFFFF 0%, #ECFDF5 100%);
        border-color: #D0FAE5;
    }

    .feature-card-blue {
        background: linear-gradient(144.35deg, #FFFFFF 0%, #ECFEFF 100%);
        border-color: #CEFAFE;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 32px;
        border-radius: 16px;
        box-shadow: 0px 10px 15px -3px rgba(0, 187, 167, 0.3), 0px 4px 6px -4px rgba(0, 187, 167, 0.3);
    }

    .feature-icon-teal {
        background: linear-gradient(135deg, #00BBA7 0%, #00B8DB 100%);
    }

    .feature-icon-green {
        background: linear-gradient(135deg, #00BC7D 0%, #00C950 100%);
    }

    .feature-icon-blue {
        background: linear-gradient(135deg, #00B8DB 0%, #00BBA7 100%);
    }

    .feature-card h3 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 12px;
        color: #0F172B;
    }

    .feature-card p {
        font-size: 16px;
        line-height: 26px;
        color: #45556C;
    }

    /* Integrations Section Mobile */
    .integrations-section {
        padding: 60px 0;
    }

    .integrations-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .integration-logo {
        height: 80px;
    }

    .integration-logo img {
        max-height: 70px;
        max-width: 200px;
    }

    .integration-logo-large img {
        transform: scale(2);
    }

    /* How Section - MOBILE: 3 SEPARATE VERTICAL CARDS WITH WORKER IMAGES */
    .how-section {
        min-height: auto;
        padding: 0;
        background: transparent;
    }

    .how-bg-image {
        display: none;
    }

    .how-gradient-overlay {
        display: none;
    }

    .how-section .section-header {
        display: none;
    }

    .section-title-white {
        display: none;
    }

    /* Quote Cards - 3 VERTICAL CARDS STACKED, EACH 670PX TALL WITH WORKER IMAGE */
    .quotes-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 0;
    }

    .quote-card {
        position: relative;
        min-height: 670px;
        padding: 0;
        border: none;
        border-radius: 0;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        background-color: #B2FFF7;
    }

    /* Dark gradient overlay on top */
    .quote-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(3, 25, 23, 0) 12.807%, #031917 97.128%);
        mix-blend-mode: multiply;
        z-index: 1;
    }

    /* Additional dark gradient at bottom */
    .quote-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 240px;
        background: linear-gradient(180deg, rgba(3, 25, 23, 0) 12.807%, #031917 97.128%);
        mix-blend-mode: multiply;
        z-index: 2;
    }

    /* Card 1 - MOBILE Worker 1 Image (background only) */
    .quote-card:nth-child(1) {
        background-image: url('../assets/images/mobile-worker-1-final.jpg');
    }

    /* Card 2 - MOBILE Worker 2 Image (background only) */
    .quote-card:nth-child(2) {
        background-image: url('../assets/images/mobile-worker-2-final.jpg');
    }

    /* Card 3 - MOBILE Worker 3 Image (background only) */
    .quote-card:nth-child(3) {
        background-image: url('../assets/images/mobile-worker-3-final.jpg');
    }

    /* Text box styling - glassmorphism effect */
    .quote-card p {
        position: relative;
        z-index: 3;
        max-width: 320px;
        width: calc(100% - 48px);
        padding: 24px 32px;
        margin: 0 auto 80px;
        background: linear-gradient(158deg, rgba(255, 255, 255, 0) 0%, rgba(240, 253, 250, 0) 100%);
        border: 0.7px solid #CBFBF1;
        border-radius: 17px;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 23px;
        line-height: 29px;
        font-weight: 500;
        color: white;
        text-align: center;
    }

    /* Hide arrows on mobile */
    .quote-arrow {
        display: none;
    }

    /* Green Section */
    .green-section {
        padding: 60px 0;
        background: #5EE9B5;
        position: relative;
        overflow: hidden;
        max-height: 700px;
        min-height: 600px;
    }

    .green-section .section-title-dark {
        font-size: 27px;
        line-height: 30px;
        margin-bottom: 32px;
        max-width: 240px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .green-section .btn-white-solid {
        display: none;
    }

    .phone-mockup {
        display: none;
    }

    .phone-mockup.phone-main {
        display: block !important;
        position: absolute;
        left: -20px;
        bottom: 40px;
        width: 240px;
        max-width: 70%;
        z-index: 5;
    }

    .phone-mockup.phone-main img {
        width: 100%;
        height: auto;
        display: block;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    }

    .green-bg-entrepreneur {
        opacity: 1;
        mix-blend-mode: normal;
        height: 100%;
        max-height: 700px;
    }

    .green-bg-entrepreneur img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }

    /* CTA Section */
    .cta-section {
        padding: 80px 0;
        background: linear-gradient(126.26deg, #0F172B 0%, #0B4F4A 50%, #0F172B 100%);
    }

    .cta-content h2 {
        font-size: 36px;
        line-height: 45px;
        margin-bottom: 24px;
        text-align: center;
    }

    .cta-content p {
        font-size: 20px;
        line-height: 32.5px;
        padding: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Footer */
    .footer {
        background: #0F172B;
        padding: 80px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
        margin-bottom: 60px;
    }

    .footer-col h4 {
        font-size: 19.98px;
        line-height: 24.975px;
        margin-bottom: 16px;
        color: white;
    }

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        font-size: 13.986px;
        line-height: 19.98px;
        color: #90A1B9;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        padding: 0;
        border-top: none;
        align-items: center;
    }

    .footer-bottom p {
        text-align: center;
        font-size: 13.986px;
        line-height: 22.727px;
        color: #90A1B9;
    }

    .footer-logo {
        justify-content: center;
    }

    /* Other pages */
    .features-hero h1 {
        font-size: 36px;
        line-height: 44px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .features-access-grid {
        grid-template-columns: 1fr;
    }

    .access-grid {
        grid-template-columns: 1fr !important;
    }

    .features-how-grid {
        grid-template-columns: 1fr;
    }

    .steps-single-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 60px !important;
    }

    .step-icon-inline {
        transform: none !important;
    }

    .features-ai-grid {
        grid-template-columns: 1fr;
    }

    .ai-features {
        grid-template-columns: 1fr !important;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        padding: 40px 32px;
    }

    .audience-features {
        grid-template-columns: 1fr;
    }

    .audience-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-grid-4 {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-card {
        padding: 40px 32px;
    }

    .pricing-grid-4 .pricing-card {
        padding: 32px 24px;
    }

    .pricing-featured {
        margin-top: 0;
        padding: 40px 32px;
    }

    .pricing-card-extended {
        transform: none;
    }

    .pricing-badge {
        top: -16px;
    }

    .discount-section {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .discount-items {
        flex-direction: column;
        gap: 12px;
    }

    .discount-content h3 {
        font-size: 22px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 700px;
    }

    .overage-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 32px;
    }

    .overage-features {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-box-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .support-box-rows {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 80px;
}

.step {
    text-align: center;
}

.step-number {
    width: 131px;
    height: 131px;
    background: linear-gradient(135deg, #00BBA7 0%, #00B8DB 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', sans-serif;
    font-size: 82px;
    font-weight: 700;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 27px 34px -6px rgba(0,0,0,0.1), 0 10px 13px -8px rgba(0,0,0,0.1);
}

.step-number.step-green {
    background: linear-gradient(135deg, #00B8DB 0%, #00BC7D 100%);
}

.step-number.step-darker {
    background: linear-gradient(135deg, #00BC7D 0%, #00C950 100%);
}

.step h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 33px;
    font-weight: 500;
    color: #0F172B;
    margin-bottom: 12px;
}

.step p {
    font-size: 25px;
    color: #45556C;
}

/* New Steps Design - Matching Figma */
.steps-container-new {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-top: 80px;
    position: relative;
}

.step-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number-box {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 20px 30px -5px rgba(0,0,0,0.15);
}

.step-number-box span {
    font-family: 'Raleway', sans-serif;
    font-size: 70px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.step-box-1 {
    background: linear-gradient(135deg, #00BBA7 0%, #00B8DB 100%);
}

.step-box-2 {
    background: linear-gradient(135deg, #00B8DB 0%, #00BC7D 100%);
}

.step-box-3 {
    background: linear-gradient(135deg, #00BC7D 0%, #00C950 100%);
}

.step-icon-large {
    margin-bottom: 30px;
}

.step-icon-large svg {
    width: 120px;
    height: 120px;
}

.step-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #0F172B;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 18px;
    color: #45556C;
    line-height: 1.6;
}

.step-arrow {
    align-self: start;
    margin-top: 40px;
    width: 100%;
    max-width: 200px;
}

.step-arrow-1 {
    margin-top: 50px;
}

.step-arrow-2 {
    margin-top: 250px;
}

/* Responsive for Steps */
@media (max-width: 768px) {
    .steps-container-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-arrow {
        display: none;
    }

    .step-number-box {
        width: 90px;
        height: 90px;
    }

    .step-number-box span {
        font-size: 55px;
    }

    .step-icon-large svg {
        width: 100px;
        height: 100px;
    }

    .step-item h4 {
        font-size: 24px;
    }

    .step-item p {
        font-size: 16px;
    }
}

.step-connector {
    width: 100%;
    height: 2px;
    background: #E2E8F0;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    background: #00BBA7;
    border-radius: 50%;
}

/* AI Section */
.ai-section {
    background: url('assets/images/ai-section-bg.svg') center/cover;
    background-color: #5EE9B5;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(3, 25, 23, 0) 12%, #031917 97%);
    mix-blend-mode: multiply;
}

.ai-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.ai-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.ai-header p {
    font-size: 24px;
    color: #CBFBF1;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.ai-card {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ai-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ai-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16.4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.ai-card:hover .ai-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.ai-icon img {
    width: 32px;
    height: 32px;
}

.ai-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: white;
    margin-bottom: 12px;
}

.ai-card p {
    font-size: 16px;
    color: #CBFBF1;
    line-height: 1.6;
}

/* ========================================
   FOR WHOM PAGE (prekoho.html)
   ======================================== */

/* Hero Section */
.forwhom-hero {
    background: linear-gradient(135deg, #00BBA7 0%, #00BC7D 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.forwhom-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.forwhom-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.forwhom-header p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* Audience Comparison Section */
.audience-section {
    background: #F8FBFD;
    padding: 100px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 60px;
}

.audience-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(15, 23, 43, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(15, 23, 43, 0.12);
}

.audience-icon {
    margin-bottom: 32px;
}

.audience-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0F172B;
    margin-bottom: 12px;
}

.audience-subtitle {
    font-size: 18px;
    color: #45556C;
    margin-bottom: 32px;
    line-height: 1.6;
}

.audience-benefits {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
}

.audience-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #0F172B;
    line-height: 1.6;
}

.audience-benefits svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.audience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid #E8EEF4;
}

.stat {
    text-align: center;
}

.audience-stats .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #00BBA7 0%, #00BC7D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.accountant-card .stat-number {
    background: linear-gradient(135deg, #00B8DB 0%, #2B7FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: #45556C;
    font-weight: 500;
}

/* Use Cases Section */
.usecases-section {
    background: white;
    padding: 100px 0;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.usecase-card {
    background: #F8FBFD;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.usecase-card:hover {
    background: white;
    box-shadow: 0 12px 40px rgba(15, 23, 43, 0.08);
    transform: translateY(-4px);
}

.usecase-icon {
    margin-bottom: 24px;
}

.usecase-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #0F172B;
    margin-bottom: 16px;
}

.usecase-card > p {
    font-size: 16px;
    color: #45556C;
    line-height: 1.6;
    margin-bottom: 24px;
}

.usecase-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.usecase-features li {
    font-size: 14px;
    color: #0F172B;
    padding: 10px 0;
    border-bottom: 1px solid #E8EEF4;
    position: relative;
    padding-left: 20px;
}

.usecase-features li:last-child {
    border-bottom: none;
}

.usecase-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00BBA7;
    font-weight: bold;
    font-size: 18px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0F172B 0%, #1E3A5F 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

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

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00BBA7 0%, #00BC7D 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 187, 167, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   PRICING PAGE (cennik.html)
   ======================================== */

/* Pricing Hero Section */
.pricing-hero {
    background: #D1F4EF;
    padding: 150px 0 120px;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="pricing-grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,187,167,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-grid)"/></svg>');
    opacity: 0.5;
}

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

.pricing-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #0F172B;
    margin-bottom: 24px;
    line-height: 1.2;
}

.pricing-header p {
    font-size: 20px;
    color: #45556C;
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 100%;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 187, 167, 0.15);
}

.pricing-featured {
    background: linear-gradient(146.79deg, #00BBA7 0%, #00B8DB 50%, #00BC7D 100%);
    border: 2px solid #00BBA7;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 187, 167, 0.2);
    position: relative;
    overflow: visible;
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-featured h3,
.pricing-featured .price-amount,
.pricing-featured .pricing-description,
.pricing-featured .pricing-features li {
    color: white;
}

.pricing-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    background: #F8FBFD;
    color: #00BBA7;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.featured-badge {
    background: #00C950;
    color: white;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 201, 80, 0.3);
}

.pricing-icon {
    margin-bottom: 32px;
}

.pricing-icon svg {
    display: block;
}

.pricing-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0F172B;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 16px;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #0F172B;
}

.price-period {
    font-size: 18px;
    color: #45556C;
    margin-left: 4px;
}

.pricing-description {
    font-size: 16px;
    color: #45556C;
    margin-bottom: 32px;
    line-height: 1.6;
    min-height: 48px;
}

.pricing-features {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #0F172B;
    line-height: 1.6;
}

.pricing-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li span {
    flex: 1;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, #00BBA7 0%, #00BC7D 100%);
    color: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 187, 167, 0.3);
}

.pricing-btn-featured {
    background: white;
    color: #00BBA7;
    border: 2px solid white;
}

.pricing-btn-featured:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* 4-Column Pricing Grid */
.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
}

.pricing-grid-4 .pricing-card {
    padding: 32px 24px;
}

.pricing-grid-4 .pricing-card h3 {
    font-size: 24px;
}

.pricing-grid-4 .price-amount {
    font-size: 36px;
}

.pricing-vat {
    font-size: 14px;
    color: #64748B;
    margin-top: -8px;
    margin-bottom: 24px;
}

/* Basic Card - White/Light gray */
.pricing-card-basic {
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    border: 2px solid #E2E8F0;
}

.pricing-card-basic .pricing-icon {
    width: 48px;
    height: 48px;
    background: #3B82F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-basic .pricing-icon svg path {
    stroke: white;
}

/* Extended Card - Yellow/Gold */
.pricing-card-extended {
    background: linear-gradient(180deg, #FDE68A 0%, #FCD34D 100%);
    border: 2px solid #FCD34D;
    overflow: visible;
}

.pricing-card-extended h3,
.pricing-card-extended .pricing-description,
.pricing-card-extended .pricing-vat {
    color: #1E293B;
}

.pricing-card-extended .price-amount,
.pricing-card-extended .price-period {
    color: #1E293B;
}

.pricing-card-extended .pricing-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-extended .pricing-btn {
    background: #1E293B;
    color: white;
}

.pricing-card-extended .pricing-btn:hover {
    background: #0F172A;
}

/* Business Card - Light Cyan/Turquoise */
.pricing-card-business {
    background: linear-gradient(180deg, #67E8F9 0%, #22D3EE 100%);
    border: 2px solid #22D3EE;
}

.pricing-card-business h3,
.pricing-card-business .pricing-description,
.pricing-card-business .pricing-vat {
    color: #0F172B;
}

.pricing-card-business .pricing-features li {
    color: #1E293B;
}

.pricing-card-business .price-amount,
.pricing-card-business .price-period {
    color: #0F172B;
}

.pricing-card-business .pricing-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-business .pricing-btn {
    background: #0F172B;
    color: white;
}

.pricing-card-business .pricing-btn:hover {
    background: #1E293B;
}

/* Custom Card - Blue Gradient */
.pricing-card-custom {
    background: linear-gradient(180deg, #1E3A8A 0%, #1E40AF 100%);
    border: 2px solid #1E3A8A;
}

.pricing-card-custom h3,
.pricing-card-custom .pricing-description,
.pricing-card-custom .pricing-features li {
    color: white;
}

.pricing-card-custom .custom-label {
    color: #FCD34D;
    font-size: 18px;
}

.pricing-card-custom .price-amount {
    color: white;
    font-size: 32px;
}

.pricing-card-custom .pricing-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-custom .pricing-btn-custom {
    background: #22C55E;
    color: white;
}

.pricing-card-custom .pricing-btn-custom:hover {
    background: #16A34A;
}

/* Highlight features (top section) */
.pricing-features-highlight {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.pricing-card-business .pricing-features-highlight {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.pricing-card-custom .pricing-features-highlight {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Discount Section - Yellow */
.discount-section {
    background: linear-gradient(135deg, #FDE68A 0%, #FCD34D 100%);
    border-radius: 24px;
    padding: 40px 60px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.discount-icon {
    width: 80px;
    height: 80px;
    background: #1E3A8A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discount-icon span {
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.discount-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 20px;
}

.discount-items {
    display: flex;
    gap: 60px;
    margin-bottom: 16px;
}

.discount-items p {
    font-size: 22px;
    color: #1E293B;
    margin: 0;
}

.discount-items strong {
    color: #DC2626;
    font-size: 24px;
}

.discount-note {
    font-size: 16px;
    color: #64748B;
    margin: 0;
    font-style: italic;
}

/* Overage Section - DARK GREEN */
.overage-section {
    background: linear-gradient(135deg, #008B80 0%, #006B5A 100%);
    padding: 80px 0;
    margin-top: 80px;
}

.overage-card {
    background: transparent;
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    border: none;
}

.overage-left h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.overage-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 32px;
}

.overage-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-big {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: white;
}

.price-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
}

.overage-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.overage-features li {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #1A202C;
    line-height: 1.6;
    font-weight: 600;
}

.overage-features svg {
    flex-shrink: 0;
}

.pricing-overage {
    font-size: 14px;
    color: #00BBA7;
    margin-top: 8px;
    font-weight: 600;
}

/* Comparison Section - LIGHT GREEN */
.comparison-section {
    background: #D1F4EF;
    padding: 100px 0;
}

.comparison-table-wrapper {
    margin-top: 60px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 43, 0.06);
}

.comparison-table thead {
    background: linear-gradient(135deg, #0F172B 0%, #1E3A5F 100%);
}

.comparison-table th {
    padding: 24px 20px;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child {
    border-radius: 16px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 16px 0 0;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #E8EEF4;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #F8FBFD;
}

.comparison-table td {
    padding: 20px;
    font-size: 15px;
    color: #0F172B;
}

.comparison-table td.feature-name {
    font-weight: 500;
    color: #0F172B;
}

.comparison-table .check {
    color: #00BBA7;
    font-size: 20px;
    font-weight: bold;
}

.comparison-table .cross {
    color: #CBD5E1;
    font-size: 20px;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    background: #F8FBFD;
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 32px rgba(15, 23, 43, 0.08);
    transform: translateY(-4px);
}

.faq-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0F172B;
    margin-bottom: 16px;
}

.faq-item p {
    font-size: 15px;
    color: #45556C;
    line-height: 1.7;
    margin: 0;
}

/* Pricing CTA Section */
.pricing-cta-section {
    background: #D1F4EF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.pricing-cta-section .cta-content h2 {
    color: #0F172B;
}

.pricing-cta-section .cta-content p {
    color: #45556C;
}

.pricing-cta-section .btn-primary {
    background: linear-gradient(135deg, #00BBA7 0%, #00BC7D 100%);
    color: white;
}

.pricing-cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 187, 167, 0.3);
}

.pricing-cta-section .btn-secondary {
    border-color: white;
}

.pricing-cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ========================================
   VIDEO PAGE (video.html)
   ======================================== */

/* Video Hero Section */
.video-hero {
    background: linear-gradient(135deg, #00BBA7 0%, #00BC7D 100%);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.video-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.video-header p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* Video Section */
.video-section {
    background: #F8FBFD;
    padding: 100px 0;
}

.video-wrapper {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.video-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-description h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0F172B;
    margin-bottom: 20px;
}

.video-description p {
    font-size: 18px;
    color: #45556C;
    line-height: 1.7;
}

/* Video Player Layout with Playlist */
.video-player-layout {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.video-main {
    flex: 1;
    min-width: 0;
}

.video-now-playing {
    padding: 16px 0;
}

.video-now-playing h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0F172B;
    margin: 0;
}

.video-playlist {
    width: 320px;
    flex-shrink: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 500px;
}

.video-playlist h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0F172B;
    padding: 16px 20px;
    margin: 0;
    border-bottom: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.playlist-items {
    overflow-y: auto;
    flex: 1;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #F3F4F6;
}

.playlist-item:hover {
    background: #F3F4F6;
}

.playlist-item.active {
    background: linear-gradient(135deg, rgba(0, 194, 168, 0.1), rgba(0, 140, 120, 0.1));
    border-left: 3px solid #00C2A8;
}

.playlist-item img {
    width: 80px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.playlist-item span {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.playlist-item.active span {
    color: #00A08A;
    font-weight: 600;
}

/* Video playlist responsive */
@media (max-width: 992px) {
    .video-player-layout {
        flex-direction: column;
    }

    .video-playlist {
        width: 100%;
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .video-playlist {
        max-height: 250px;
    }

    .playlist-item img {
        width: 60px;
        height: 34px;
    }

    .playlist-item span {
        font-size: 12px;
    }

    .video-now-playing h3 {
        font-size: 16px;
    }
}

/* Form Message Styles */
.form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(0, 187, 167, 0.1) 0%, rgba(0, 188, 125, 0.1) 100%);
    border: 2px solid #00BBA7;
    color: #00BBA7;
}

.form-message.error {
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.1) 0%, rgba(255, 51, 102, 0.1) 100%);
    border: 2px solid #FF5252;
    color: #FF5252;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Loading State */
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .hero-title {
        font-size: 72px;
        line-height: 90px;
    }

    .features-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        margin-top: 0 !important;
    }

    .hero-floating-cards {
        position: static;
        margin-top: 60px;
        flex-direction: row;
    }

    .card-documents,
    .card-revenue {
        display: none !important;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        max-width: 100%;
    }

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

    .hero-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        max-width: 100%;
    }

    .hero-badges .badge {
        width: 100%;
    }

    .hero-images {
        position: static;
        width: 100%;
        margin-top: 40px;
    }

    .phone-mockup {
        display: none;
    }

    .phone-mockup.phone-main {
        display: block !important;
        position: absolute;
        left: -20px;
        bottom: 40px;
        width: 240px;
        max-width: 70%;
        z-index: 5;
    }

    .phone-mockup.phone-main img {
        width: 100%;
        height: auto;
        display: block;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    }

    .footer-grid {
        padding: 0 80px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1003;
    position: relative;
    pointer-events: auto;
    min-width: 48px;
    min-height: 48px;
    touch-action: manipulation;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.mobile-menu-btn:active {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    pointer-events: none;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(146.79deg, #00BBA7 0%, #00B8DB 50%, #00BC7D 100%);
    z-index: 1001;
    padding: 80px 32px 32px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1002;
    min-width: 48px;
    min-height: 48px;
    border-radius: 8px;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-close:active {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
}

.mobile-menu nav a {
    display: block;
    padding: 20px 16px;
    font-size: 22px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:active {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 24px;
}

.mobile-lang-selector {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-lang-selector h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-lang-options {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.mobile-lang-option:hover,
.mobile-lang-option:active {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 24px;
}

.mobile-lang-option.active {
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.mobile-lang-option .flag {
    font-size: 24px;
}

@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 24px;
        max-width: 100%;
    }

    /* Navigation */
    .nav-links {
        display: none;
    }

    .lang-selector {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-title {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 16px;
    }

    .hero-badges {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 16px;
    }

    .hero-images {
        display: none;
    }

    .hero-floating-cards {
        position: static;
        margin-top: 40px;
    }

    /* Stats Section */
    .stats-section {
        padding: 0 !important;
        min-height: auto !important;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px 0;
    }

    .stat-number {
        font-size: 24px !important;
        line-height: 28px !important;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 12px !important;
        line-height: 1.2 !important;
        margin: 0;
    }

    .stats-section .stat-number {
        font-size: 24px !important;
        line-height: 28px !important;
        margin-bottom: 2px;
    }

    .stats-section .stat-label {
        font-size: 12px !important;
        line-height: 1.2 !important;
        margin: 0;
    }

    /* Why Section */
    .why-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .section-header p {
        font-size: 16px;
        line-height: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    /* Features Page */
    .features-hero h1 {
        font-size: 36px;
        line-height: 44px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .features-access-grid {
        grid-template-columns: 1fr;
    }

    .access-grid {
        grid-template-columns: 1fr !important;
    }

    .features-how-grid {
        grid-template-columns: 1fr;
    }

    .steps-single-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 60px !important;
    }

    .step-icon-inline {
        transform: none !important;
    }

    .features-ai-grid {
        grid-template-columns: 1fr;
    }

    .ai-features {
        grid-template-columns: 1fr !important;
    }

    /* Pre Koho Page */
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        padding: 40px 32px;
    }

    .audience-features {
        grid-template-columns: 1fr;
    }

    .audience-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing Page */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-card {
        padding: 40px 32px;
    }

    .pricing-featured {
        margin-top: 0;
        padding: 40px 32px;
    }

    .pricing-badge {
        top: -16px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        min-width: 600px;
    }

    .overage-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 32px;
    }

    .overage-features {
        grid-template-columns: 1fr;
    }

    /* Contact Page */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-box-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .support-box-rows {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .cta-content p {
        font-size: 16px;
        padding: 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0;
    }

    .footer-column {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        padding: 24px 0;
    }

    .footer-bottom p {
        text-align: center;
    }

    /* How Section */
    .how-section {
        min-height: auto;
        padding: 60px 0;
    }

    .how-bg-image {
        display: none;
    }

    .section-title-white {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 40px;
        margin-top: 0;
    }

    /* Quote Cards - Mobile Image Cards */
    .quotes-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        margin-top: 0 !important;
        display: grid !important;
    }

    .quote-card {
        position: relative;
        min-height: 670px;
        padding: 0;
        border: none;
        border-radius: 0;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: flex-end;
    }

    /* Card 1 - MOBILE Worker 1 Image (background only) */
    .quote-card:nth-child(1) {
        background-image: url('../assets/images/mobile-worker-1-final.jpg');
    }

    /* Card 2 - MOBILE Worker 2 Image (background only) */
    .quote-card:nth-child(2) {
        background-image: url('../assets/images/mobile-worker-2-final.jpg');
    }

    /* Card 3 - MOBILE Worker 3 Image (background only) */
    .quote-card:nth-child(3) {
        background-image: url('../assets/images/mobile-worker-3-final.jpg');
    }

    /* Show gradient overlays and text */
    .quote-card::before {
        display: block !important;
    }

    .quote-card p {
        display: block !important;
    }

    .quote-arrow {
        display: none;
    }

    /* Buttons */
    .btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Logo */
    .logo {
        font-size: 28px;
    }

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

/* ========================================
   HOVER LIFT ANIMATIONS - MEDIUM INTENSITY
   ======================================== */

/* Navigation & Logo Hover Lift */
.logo {
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.nav-links li a {
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.lang-btn {
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* All Buttons & CTAs - Enhanced to 10px lift */
.btn {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-white-solid {
    transition: all 0.3s ease;
}

.btn-white-solid:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.btn-cta-primary:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 187, 167, 0.3);
}

.btn-cta-secondary:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* App Store & Google Play Badges */
.badge {
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 187, 167, 0.2);
}

.feature-card-teal:hover {
    border-color: #00BBA7;
}

.feature-card-green:hover {
    border-color: #00BC7D;
}

.feature-card-blue:hover {
    border-color: #00B8DB;
}

/* Hero Floating Cards */
.hero-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Stats Items */
.stat-item {
    transition: transform 0.3s ease;
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-10px);
}

/* Quote/Testimonial Cards */
.quote-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.quote-card:hover {
    /* Removed hover effects - only text rectangle should popup on mobile */
}

/* Pricing Cards - Updated to 10px */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 187, 167, 0.2);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 187, 167, 0.3);
}

.pricing-btn {
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 187, 167, 0.3);
}

/* Images - Dashboard & Phones */
.hero-dashboard-img {
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.hero-dashboard-img:hover {
    transform: translateY(-10px);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
}

.phone-mockup {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.phone-mockup:hover {
    transform: translateY(-10px);
}

.phone-mockup img {
    transition: filter 0.3s ease;
}

.phone-mockup:hover img {
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
}

/* Footer Links - Color Change Only */
.footer-col a {
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #00BBA7;
}

.footer-logo {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Audience Section - Pre koho je BizHub */
.audience-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
    align-items: stretch;
}

.audience-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.audience-card-cyan {
    border: 2px solid #17C9C7;
}

.audience-card-green {
    border: 2px solid #00C48C;
}

.audience-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-shrink: 0;
}

.audience-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: block;
}

.audience-icon svg {
    width: 80px;
    height: 80px;
    display: block;
}

.audience-icon img {
    width: 80px;
    height: 80px;
    display: block;
    object-fit: contain;
}

.audience-title-group h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.2;
}

.audience-subtitle {
    font-size: 18px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

.audience-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audience-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    font-size: 17px;
    line-height: 1.6;
    color: #333333;
}

.audience-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.audience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid #E5E5E5;
    margin-top: auto;
}

.audience-stats .stat {
    text-align: center;
}

.audience-stats .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1;
}

.audience-stats .stat-label {
    font-size: 16px;
    color: #666666;
    line-height: 1.4;
}

/* Responsive Design for Audience Section */
@media (max-width: 1024px) {
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .audience-card {
        padding: 40px;
    }

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

    .pricing-card-extended {
        transform: none;
    }
}

@media (max-width: 768px) {
    .audience-section {
        padding: 60px 0;
    }

    .audience-card {
        padding: 30px;
    }

    .audience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .audience-title-group h3 {
        font-size: 26px;
    }

    .audience-subtitle {
        font-size: 16px;
    }

    .audience-features li {
        font-size: 16px;
    }

    .audience-stats {
        flex-direction: column;
        gap: 24px;
    }

    .audience-stats .stat {
        text-align: left;
    }
}

/* ========================================
   FAQ PAGE (faq.html)
   ======================================== */

/* FAQ Hero Section */
.faq-page-hero {
    background: linear-gradient(135deg, #00BBA7 0%, #00BC7D 100%);
    padding: 150px 0 60px;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.faq-page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-page-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.faq-page-header p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* FAQ Search */
.faq-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.faq-search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 4px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.faq-search-icon {
    flex-shrink: 0;
    margin-right: 12px;
}

.faq-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    padding: 16px 0;
    color: #0F172B;
    background: transparent;
}

.faq-search-input::placeholder {
    color: #9CA3AF;
}

.faq-search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
}

.faq-search-clear:hover {
    background: #F3F4F6;
}

.faq-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    max-height: 320px;
    overflow-y: auto;
    z-index: 100;
}

.faq-search-result-item {
    padding: 14px 24px;
    cursor: pointer;
    font-size: 15px;
    color: #0F172B;
    border-bottom: 1px solid #F3F4F6;
    transition: background 0.2s;
}

.faq-search-result-item:last-child {
    border-bottom: none;
}

.faq-search-result-item:hover {
    background: #F0FDF9;
    color: #00BBA7;
}

.faq-search-no-results {
    padding: 20px 24px;
    text-align: center;
    color: #9CA3AF;
    font-size: 15px;
}

/* FAQ TOC Section */
.faq-toc-section {
    background: #F8FBFD;
    padding: 80px 0;
}

.faq-toc-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0F172B;
    text-align: center;
    margin-bottom: 48px;
}

.faq-toc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-toc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.faq-toc-item:hover {
    border-color: #00BBA7;
    box-shadow: 0 4px 16px rgba(0, 187, 167, 0.12);
    transform: translateY(-2px);
}

.faq-toc-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #00BBA7;
    background: #D1F4EF;
    padding: 4px 8px;
    border-radius: 6px;
    flex-shrink: 0;
}

.faq-toc-label {
    font-size: 14px;
    font-weight: 500;
    color: #0F172B;
    line-height: 1.3;
}

/* FAQ Content Section */
.faq-content-section {
    background: white;
    padding: 80px 0;
}

.faq-category {
    margin-bottom: 64px;
    scroll-margin-top: 100px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0F172B;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid #E5E7EB;
}

.faq-category-number {
    font-size: 16px;
    font-weight: 700;
    color: #00BBA7;
    background: #D1F4EF;
    padding: 6px 12px;
    border-radius: 8px;
    flex-shrink: 0;
}

.faq-questions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-qa {
    background: #F8FBFD;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-qa:hover {
    border-color: #E5E7EB;
}

.faq-qa.open {
    border-color: #00BBA7;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 187, 167, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #0F172B;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #00BBA7;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #9CA3AF;
}

.faq-qa.open .faq-chevron {
    transform: rotate(180deg);
    color: #00BBA7;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-qa.open .faq-answer {
    max-height: 800px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 15px;
    color: #45556C;
    line-height: 1.7;
    margin: 0 0 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 8px 0 12px;
    padding-left: 24px;
    color: #45556C;
    font-size: 15px;
    line-height: 1.7;
}

.faq-answer li {
    margin-bottom: 6px;
}

.faq-answer code {
    background: #E5E7EB;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 13px;
    color: #0F172B;
}

/* FAQ Table */
.faq-table-wrapper {
    overflow-x: auto;
    margin-bottom: 16px;
}

.faq-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.faq-table th {
    background: #D1F4EF;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #0F172B;
    white-space: nowrap;
}

.faq-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #E5E7EB;
    color: #45556C;
}

.faq-table tr:last-child td {
    border-bottom: none;
}

/* FAQ Page Responsive */
@media (max-width: 1024px) {
    .faq-toc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-page-hero {
        padding: 120px 0 40px;
    }

    .faq-page-header h1 {
        font-size: 36px;
    }

    .faq-page-header p {
        font-size: 18px;
    }

    .faq-toc-section {
        padding: 60px 0;
    }

    .faq-toc-section h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .faq-toc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .faq-toc-item {
        padding: 12px 16px;
    }

    .faq-toc-label {
        font-size: 13px;
    }

    .faq-content-section {
        padding: 60px 0;
    }

    .faq-category-title {
        font-size: 22px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-qa.open .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-category {
        margin-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .faq-toc-grid {
        grid-template-columns: 1fr;
    }

    .faq-page-header h1 {
        font-size: 28px;
    }

    .faq-search-input {
        font-size: 14px;
    }
}

/* ======================================== */
