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

:root {
    --green-900: #0d3b17;
    --green-800: #145224;
    --green-700: #1a6b30;
    --green-600: #227a38;
    --green-500: #2d9e48;
    --green-400: #34c759;
    --green-300: #6ee08a;
    --green-200: #a8edb8;
    --green-100: #d4f5dc;
    --green-50: #e8f5e9;
    --white: #ffffff;
    --off-white: #f8faf8;
    --gray-50: #f5f7f5;
    --gray-100: #edf0ed;
    --gray-200: #dce0dc;
    --gray-300: #c4cac4;
    --gray-400: #9aa69a;
    --gray-500: #6b7c6b;
    --gray-600: #4d5c4d;
    --gray-700: #3a4a3a;
    --gray-800: #2a342a;
    --gray-900: #1a1f1a;
    --shadow-xs: 0 1px 3px rgba(26,92,42,0.06);
    --shadow-sm: 0 2px 8px rgba(26,92,42,0.08);
    --shadow-md: 0 8px 30px rgba(26,92,42,0.12);
    --shadow-lg: 0 20px 60px rgba(26,92,42,0.15);
    --shadow-xl: 0 25px 80px rgba(26,92,42,0.2);
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--green-600); border-radius: 3px; }

section[id] { scroll-margin-top: 80px; }

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    height: 44px;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}
.nav.scrolled .nav-logo img { height: 36px; filter: none; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}
.nav.scrolled .nav-links a { color: var(--gray-700); }
.nav-links a:hover { background: rgba(255,255,255,0.15); }
.nav.scrolled .nav-links a:hover {
    background: var(--green-50);
    color: var(--green-800);
}
.nav-links a.active {
    background: rgba(255,255,255,0.2);
}
.nav.scrolled .nav-links a.active {
    background: var(--green-50);
    color: var(--green-800);
}
.nav-cta {
    background: var(--white) !important;
    color: var(--green-800) !important;
    font-weight: 600 !important;
}
.nav.scrolled .nav-cta {
    background: var(--green-800) !important;
    color: var(--white) !important;
}
.nav.scrolled .nav-cta:hover {
    background: var(--green-700) !important;
}

/* Mobile nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    width: 26px; height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.nav.scrolled .nav-toggle span { background: var(--gray-700); }
.nav-toggle.active span { background: var(--white) !important; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(13,59,23,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 9999;
    }
    .nav-links.open { opacity: 1; pointer-events: auto; }
    .nav-links a {
        color: var(--white) !important;
        font-size: 1.3rem;
        padding: 14px 36px;
    }
    .nav-links a:hover { background: rgba(255,255,255,0.12) !important; }
    .nav-links .nav-cta {
        background: rgba(255,255,255,0.15) !important;
        color: var(--white) !important;
        border: 1px solid rgba(255,255,255,0.3);
        margin-top: 8px;
    }
    .nav-links .nav-cta:hover {
        background: rgba(255,255,255,0.25) !important;
    }
    .nav-toggle { z-index: 10000; }
}

/* Light nav variant (for non-hero pages) */
.nav.nav-light { background: var(--green-800); }
.nav.nav-light.scrolled { background: rgba(255,255,255,0.97); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: var(--transition);
    text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
    background: var(--white);
    color: var(--green-800);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.btn-green {
    background: var(--green-800);
    color: var(--white);
}
.btn-green:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline-green {
    background: transparent;
    color: var(--green-800);
    border: 2px solid var(--green-800);
}
.btn-outline-green:hover {
    background: var(--green-800);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ===== SECTION COMMON ===== */
section { padding: 100px 0; }
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-block;
    background: var(--green-50);
    color: var(--green-800);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--green-900);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-topo-bg {
    position: absolute;
    inset: -10%;
    background: url('https://fsn1.your-objectstorage.com/saas-assets/media/projects/64/image.png') center center / cover no-repeat;
    opacity: 0.55;
    animation: topoPan 30s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes topoPan {
    0%   { transform: scale(1.08) translate(0, 0); }
    33%  { transform: scale(1.12) translate(-2%, 1.5%); }
    66%  { transform: scale(1.1)  translate(2%, -1%); }
    100% { transform: scale(1.08) translate(-1%, 2%); }
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    0% { transform: translate(0,0); }
    100% { transform: translate(60px,60px); }
}
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    animation: particleUp linear infinite;
}
@keyframes particleUp {
    0% { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh); opacity: 0; }
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 900px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--green-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--green-400), #7bf5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    opacity: 0.85;
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Page header (for subpages) */
.page-header {
    padding: 160px 0 80px;
    background:
        linear-gradient(135deg, rgba(13,59,23,0.82) 0%, rgba(20,82,36,0.78) 100%),
        url('https://fsn1.your-objectstorage.com/saas-assets/media/projects/64/image.png') center center / cover no-repeat;
    background-color: var(--green-900);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}
.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}
.page-header p {
    font-size: 1.15rem;
    opacity: 0.8;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-800), var(--green-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.service-icon {
    width: 56px; height: 56px;
    background: var(--green-50);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--green-800); }
.service-icon svg {
    width: 28px; height: 28px;
    fill: none;
    stroke: var(--green-800);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition);
}
.service-card:hover .service-icon svg { stroke: var(--white); }
.service-card-img {
    margin: -36px -28px 24px;
    height: 180px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.service-card:hover .service-card-img img {
    transform: scale(1.05);
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== PARTNER / SPLIT SECTION ===== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}
.split-content h6 {
    color: var(--green-600);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.split-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}
.split-content h4 {
    font-size: 1.05rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.6;
}
.split-content ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.split-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray-700);
}
.split-content ul li::before {
    content: '';
    width: 24px; height: 24px;
    min-width: 24px;
    background: var(--green-50);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%231a6b30" stroke-width="3"%3E%3Cpolyline points="20 6 9 17 4 12"/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 768px) {
    .split-section { grid-template-columns: 1fr; gap: 40px; }
    .split-section.reverse { direction: ltr; }
}

/* ===== INZINIERSKA GEODEZIA GRID ===== */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.ig-card {
    background: var(--green-50);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
}
.ig-card:hover {
    background: var(--green-800);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.ig-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.ig-card p {
    font-size: 0.93rem;
    line-height: 1.6;
    opacity: 0.75;
}
.ig-card:hover p { opacity: 0.85; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 28px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-item-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    background: var(--green-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-item-icon svg {
    width: 22px; height: 22px;
    stroke: var(--green-800);
    fill: none;
    stroke-width: 2;
}
.contact-item h4 {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.contact-item p,
.contact-item a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}
.contact-item a:hover { color: var(--green-700); }
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}
.contact-social a {
    width: 44px; height: 44px;
    background: var(--green-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.contact-social a:hover {
    background: var(--green-800);
}
.contact-social a svg {
    width: 20px; height: 20px;
    fill: var(--green-800);
    transition: var(--transition);
}
.contact-social a:hover svg { fill: var(--white); }

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--gray-700);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--gray-50);
    color: var(--gray-900);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(34,122,56,0.1);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    text-align: center;
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.cta-section::before { width: 400px; height: 400px; top: -150px; right: -100px; }
.cta-section::after { width: 300px; height: 300px; bottom: -100px; left: -50px; }
.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}
.cta-section p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.cta-section .btn { position: relative; }

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 18px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--green-400); }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ===== STATS BAR ===== */
.stats {
    background: var(--off-white);
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--green-800);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.88rem;
    color: var(--gray-500);
    font-weight: 500;
}
@media (max-width: 600px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== MAP ===== */
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    height: 350px;
    margin-top: 60px;
    border: 1px solid var(--gray-200);
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== ABOUT PAGE ===== */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.about-feature-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}
.about-feature-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--green-300);
}
.about-feature-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    background: var(--green-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-feature-icon svg {
    width: 24px; height: 24px;
    stroke: var(--green-800);
    fill: none;
    stroke-width: 2;
}
.about-feature-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.about-feature-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* ===== CONTOUR LINES BACKGROUND ===== */
.contour-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
}
.contour-bg svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-img .blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--green-800);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-card-body {
    padding: 28px 24px;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}
.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-card-meta svg {
    width: 14px;
    height: 14px;
    stroke: var(--gray-400);
    fill: none;
    stroke-width: 2;
}
.blog-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card h3 a:hover {
    color: var(--green-700);
}
.blog-card p {
    font-size: 0.93rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}
.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-800);
    transition: var(--transition);
}
.blog-card .read-more svg {
    width: 16px;
    height: 16px;
    stroke: var(--green-800);
    fill: none;
    stroke-width: 2;
    transition: var(--transition);
}
.blog-card .read-more:hover {
    color: var(--green-600);
    gap: 10px;
}
.blog-card .read-more:hover svg {
    stroke: var(--green-600);
}
@media (max-width: 400px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-800), var(--green-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.pricing-card:hover::before { transform: scaleX(1); }
.pricing-card:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.pricing-card--featured {
    background: var(--green-900);
    border-color: var(--green-700);
    color: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.pricing-card--featured::before { transform: scaleX(1); background: linear-gradient(90deg, var(--green-400), var(--green-300)); }
.pricing-card--featured:hover { transform: translateY(-12px); box-shadow: var(--shadow-xl); }
.pricing-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green-700);
    background: var(--green-50);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}
.pricing-card--featured .pricing-tag {
    background: rgba(52,199,89,0.2);
    color: var(--green-300);
}
.pricing-icon {
    width: 52px; height: 52px;
    background: var(--green-50);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.pricing-card--featured .pricing-icon {
    background: rgba(255,255,255,0.1);
}
.pricing-icon svg {
    width: 26px; height: 26px;
    fill: none;
    stroke: var(--green-800);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.pricing-card--featured .pricing-icon svg { stroke: var(--green-300); }
.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.pricing-price {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}
.pricing-price span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-800);
    display: inline;
}
.pricing-card--featured .pricing-price { color: rgba(255,255,255,0.6); }
.pricing-card--featured .pricing-price span { color: var(--green-300); }
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
}
.pricing-features li {
    font-size: 0.93rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li::before {
    content: '';
    width: 20px; height: 20px;
    min-width: 20px;
    background: var(--green-50);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%231a6b30" stroke-width="3"%3E%3Cpolyline points="20 6 9 17 4 12"/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-card--featured .pricing-features li::before {
    background-color: rgba(52,199,89,0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%2334c759" stroke-width="3"%3E%3Cpolyline points="20 6 9 17 4 12"/%3E%3C/svg%3E");
}
.pricing-card--featured .btn-green {
    background: var(--green-400);
    color: var(--green-900);
}
.pricing-card--featured .btn-green:hover { background: var(--green-300); }
.pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }

/* block 33d97bed */
.reveal,.reveal-left,.reveal-right,.reveal-scale{opacity:1!important;transform:none!important;}.wow{visibility:visible!important;opacity:1!important;transform:none!important;}

/* block 8607b1db */
.gv-element-hover { outline: 1px dashed rgba(99, 102, 241, 0.5) !important; cursor: pointer; }
        .gv-element-selected { outline: 2px solid #6366f1 !important; }
        .gv-editing { outline: 2px solid #6366f1 !important; background: rgba(99, 102, 241, 0.05) !important; min-height: 1em; }
        /* Prevent text selection while not editing */
        body:not(.gv-editing-mode) { user-select: none; -webkit-user-select: none; }
        body.gv-editing-mode [] { user-select: text; -webkit-user-select: text; }

/* block 0b40be01 */
body{margin:0;}

/* block 9ad2b805 */
.gv-element-hover { outline: 1px dashed rgba(99, 102, 241, 0.5) !important; outline-offset: 1px; cursor: pointer; }
        /* Two-layer ring: 2px white inner + 4px indigo halo + 1px black edge.
           Always visible regardless of element bg (white-on-white, indigo
           button, dark text). box-shadow stacks where outline can't. */
        .gv-element-selected { outline: 2px solid #ffffff !important; outline-offset: 0 !important; box-shadow: 0 0 0 4px #6366f1, 0 0 0 5px rgba(0,0,0,0.4) !important; }
        .gv-editing { outline: 2px solid #ffffff !important; outline-offset: 0 !important; box-shadow: 0 0 0 4px #6366f1 !important; background: rgba(99, 102, 241, 0.05) !important; min-height: 1em; }
        /* Brief blink when parent breadcrumb hovers an ancestor — quick preview
           of which DOM node would become selected on click. */
        .gv-element-flash { outline: 3px solid #f59e0b !important; outline-offset: 2px; transition: outline 0.15s ease; }
        /* Prevent text selection while not editing */
        body:not(.gv-editing-mode) { user-select: none; -webkit-user-select: none; }
        body.gv-editing-mode [] { user-select: text; -webkit-user-select: text; }
        /* Iframe shield — transparent overlay that captures clicks so YouTube
           / Calendly / Vimeo embeds don't swallow the editor's selection.
           Hover shows a subtle hint chip so the user knows the click selects
           the iframe (not starts the video). Alt+Click on the shield falls
           through to the iframe for actually testing playback. */
        [data-gv-iframe-host] { position: relative; display: inline-block; line-height: 0; }
        [data-gv-iframe-host].gv-iframe-host-block { display: block; }
        .gv-iframe-shield {
            position: absolute; inset: 0; z-index: 5;
            background: transparent; cursor: pointer;
            transition: background-color 0.15s ease;
        }
        .gv-iframe-shield:hover { background-color: rgba(99, 102, 241, 0.08); }
        .gv-iframe-shield::after {
            content: 'Klikni pre výber · Alt+Click pre prehratie';
            position: absolute; top: 8px; left: 8px;
            background: rgba(15, 23, 42, 0.85); color: #fff;
            font: 500 11px/1 system-ui, sans-serif; padding: 5px 8px;
            border-radius: 6px; opacity: 0; transition: opacity 0.15s ease;
            pointer-events: none; white-space: nowrap;
        }
        .gv-iframe-shield:hover::after { opacity: 1; }