@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --color-bg: #f7f8fb;
    --color-surface: #ffffff;
    --color-primary: #66CC00;
    --color-primary-dark: #017B4F;
    --color-secondary: #5ebb01;
    --color-text: #1b1f2f;
    --color-muted: #61667a;
    --color-border: rgba(27, 31, 47, 0.1);
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-soft: 0 18px 45px rgba(18, 32, 59, 0.08);
    --shadow-card: 0 16px 32px rgba(20, 33, 60, 0.12);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
	
}

a {
    color: inherit;
    text-decoration: none;
	    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .15));
}
p{
	    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .15));
}
h1,h2,h3,h4,h5,h6{
	    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .2));
}
a:hover,
a:focus {
    color: var(--color-primary);
}

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

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}
.w100{
	width:100%;
}
/* Ikonice u dugmićima */
.btn i { line-height: 1; }
.btn .btn-icon-start { order: 0; }
.btn .btn-label { order: 1; }
.btn .btn-icon-end { order: 2; }
.btn .btn-icon-start,
.btn .btn-icon-end { font-size: 1.05em; }

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 12px 24px rgba(102, 204, 0, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: #fff;
}

.btn-outline:hover,
.btn-outline:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #fff;
    box-shadow: 0 18px 38px rgba(102, 204, 0, 0.28);
}

.btn-gradient:hover,
.btn-gradient:focus {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(102, 204, 0, 0.34);
}

.btn-ghost {
    background: var(--color-surface);
    color: var(--color-primary);
    border: 1.5px solid rgba(102, 204, 0, 0.8);

}

.btn-ghost:hover,
.btn-ghost:focus {
    border-color: var(--color-primary);
    box-shadow: 0 12px 26px rgba(102, 204, 0, 0.18);
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: 0.75rem;
}

.hero-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.hero-link:hover::after,
.hero-link:focus::after {
    transform: translateX(4px);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: clamp(1.9rem, 1.6rem + 1vw, 2.6rem);
    margin: 0 0 0.75rem;
}

.section-header p {
    margin: 0;
    color: var(--color-muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(247, 248, 251, 0.9);
    border-bottom: 1px solid rgba(27, 31, 47, 0.05);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 4vw;
}

.logo {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo img {
    height: 1.5em;
    margin-right: 0.5em;
}

.logo span {
    color: var(--color-primary);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-controls .btn-outline {
    border-color: rgba(102, 204, 0, 0.25);
    color: var(--color-primary);
    background: rgba(102, 204, 0, 0.08);
}

.header-controls .btn-outline:hover,
.header-controls .btn-outline:focus {
    background: rgba(102, 204, 0, 0.16);
    border-color: rgba(102, 204, 0, 0.45);
}

.header-hotline {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.header-hotline .hotline-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(27, 31, 47, 0.1);
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-text);
    transition: background 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus {
    background: rgba(102, 204, 0, 0.08);
    border-color: rgba(102, 204, 0, 0.4);
}

.nav-toggle {
    display: none;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(12, 18, 32, 0.45);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.3s ease;
}

.site-nav {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(320px, 80vw);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
    transform: translateX(-100%);
    transition: transform 0.35s ease, visibility 0.35s ease, opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1.4rem 1.6rem;
    gap: 1.5rem;
    z-index: 1000;
    overflow-y: auto;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
}

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

.nav-logo {
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-logo span {
    color: var(--color-primary);
}

.nav-close {
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-weight: 600;
}

.nav-menu a {
    display: block;
    color: var(--color-text);
    padding: 0.65rem 0;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--color-primary);
}

.nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-toggle:checked ~ .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.nav-toggle:checked ~ .site-nav {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

/* Dropdown meni: Calculadoras */
.nav-menu li { position: relative; }
.nav-menu .has-submenu > a.nav-parent .caret,
.nav-menu .has-submenu > .nav-parent-row .caret { margin-left: 8px; display: inline-flex; align-items: center; }
.nav-menu .has-submenu > a.nav-parent .caret i,
.nav-menu .has-submenu > .nav-parent-row .caret i {
    font-size: 0.85em;
    color: var(--color-muted);
    transition: transform 0.2s ease, color 0.2s ease;
}
.nav-menu .submenu {
    list-style: none;
    padding: 0.6rem 0;
    margin: 0;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: none;
    z-index: 1001;
}
.nav-menu .submenu li a {
    display: block;
    padding: 0.55rem 0.9rem;
    border-bottom: none;
    color: var(--color-text);
}
.nav-menu .submenu li a:hover,
.nav-menu .submenu li a:focus {
    background: rgba(102, 204, 0, 0.08);
    color: var(--color-primary);
}
@media (hover: hover) and (min-width: 940px) {
    .nav-menu .has-submenu:hover > .submenu,
    .nav-menu .has-submenu:focus-within > .submenu { display: block; }
    .nav-menu .has-submenu:hover > a.nav-parent .caret i,
    .nav-menu .has-submenu:hover > .nav-parent-row .caret i { transform: rotate(180deg); color: var(--color-primary); }
}
/* Mobilni meni: pokaži subitems u toku drawer-a */
@media (max-width: 939px) {
    /* Osigurač: hamburger uvek vidljiv do 939px */
    .site-header .menu-toggle { display: flex !important; }
    /* Forsiraj prikaz hamburger ikone na mobilnim i tablet širinama */
    .menu-toggle { display: flex; }
    .site-nav .nav-menu .has-submenu > .nav-parent-row { display: flex; align-items: center; justify-content: space-between; }
    .site-nav .nav-menu .has-submenu > .submenu-toggle { position: absolute; opacity: 0; pointer-events: none; }
    .site-nav .nav-menu .has-submenu > .submenu {
        position: static;
        display: none;
        padding: 0;
        border: none;
        box-shadow: none;
        margin-left: 0.6rem;
    }
    .site-nav .nav-menu .has-submenu > .submenu li a {
        padding: 0.55rem 0;
        color: var(--color-muted);
    }
    .site-nav .nav-menu .has-submenu > .submenu-toggle:checked ~ .submenu { display: block; }
    .site-nav .nav-menu .has-submenu > .submenu-toggle:checked ~ .nav-parent-row .caret i { transform: rotate(180deg); color: var(--color-primary); }
    /* JS-driven open state for mobile dropdowns */
    .site-nav .nav-menu .has-submenu.open > .submenu { display: block; }
    .site-nav .nav-menu .has-submenu.open > a.nav-parent .caret i { transform: rotate(180deg); color: var(--color-primary); }
}

.section-hero {
    position: relative;
    padding: 4.5rem 0 3.5rem;
    background: linear-gradient(180deg, rgba(102, 204, 0, 0.12) 0%, rgba(94, 187, 1, 0.08) 100%);
}

.hero-layout {
    display: grid;
    gap: 2.5rem;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(102, 204, 0, 0.12);
    color: var(--color-primary);
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.section-hero h1 {
    font-size: clamp(2.3rem, 1.9rem + 2vw, 2.5rem);
    line-height: 1.15;
    margin: 0;
}

.section-hero p {
    margin: 0;
    color: var(--color-muted);
    font-size: 1.05rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    grid-auto-rows: auto;
}

.hero-stats > div:last-child {
    grid-column: 1 / -1;
    justify-self: center;
}

/* Force stat value and label to stack on separate lines */
.hero-stats .stat-value {
    display: block;
    line-height: 1.1;
}

.hero-stats .stat-label {
    display: block;
    margin-top: 0.2rem;
}

.hero-stats > div {
    text-align: center;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.hero-showcase {
    display: grid;
    gap: 1.6rem;
}

.hero-figure {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.hero-figure img {
    height: 100%;
    object-fit: cover;
}

.hero-figure figcaption {
    padding: 1rem 1.4rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.hero-widget {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
}

.hero-widget h3 {
    margin: 0 0 0.6rem;
}

.hero-widget p {
    margin: 0 0 1rem;
    color: var(--color-muted);
}

.hero-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero-widget li::before {
    content: '✔';
    margin-right: 0.45rem;
    color: var(--color-primary);
}

.section-benefits,
.section-services,
.section-tools,
.section-blog,
.section-states,
.section-faq,
.section-testimonials,
.section-cta {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    gap: 1.6rem;
}

.benefit-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 2rem 1.6rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover,
.benefit-card:focus-within {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.benefit-icon {
    font-size: 1.9rem;
    color: var(--color-primary);
}

.section-services {
    background: var(--color-surface);
}

.services-grid {
    display: grid;
    gap: 1.2rem;
}

.service-card {
    background: rgba(102, 204, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    color: var(--color-text);
}

/* Centriranje za sekciju "Soluciones principales" */
.section-services .service-card {
    text-align: center;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(102, 204, 0, 0.12);
    color: var(--color-primary);
    font-size: 1.4rem;
    box-shadow: 0 8px 16px rgba(102, 204, 0, 0.12);
    margin-bottom: 0.3rem;
}

/* Ikonice u "Soluciones principales" centrirane */
.section-services .service-icon {
    align-self: center;
}

.service-card:hover,
.service-card:focus {
    transform: translateY(-4px);
    background: rgba(102, 204, 0, 0.12);
    box-shadow: var(--shadow-soft);
}

.section-tools {
    background: linear-gradient(180deg, rgba(102, 204, 0, 0.10) 0%, rgba(94, 187, 1, 0.06) 100%);
}

.tools-layout {
    display: grid;
    gap: 2rem;
}

.tool-feature {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.chip {
    background: rgba(28, 79, 215, 0.12);
    color: var(--color-primary);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tools-grid {
    display: grid;
    gap: 1.2rem;
}

.tool-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.4rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover,
.tool-card:focus-within {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.tool-image {
    height: 160px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(102, 204, 0, 0.15), rgba(94, 187, 1, 0.2));
}

.section-blog {
    background: var(--color-surface);
}

.articles-grid {
    display: grid;
    gap: 1.6rem;
}

.article-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
	padding:0;
}

.article-card img {
    height: 200px;
    object-fit: cover;
}

.article-card:hover,
.article-card:focus-within {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.article-content {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.article-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section-states {
    background: linear-gradient(180deg, rgba(247, 248, 251, 1) 0%, rgba(102, 204, 0, 0.08) 100%);
}

.states-grid {
    display: grid;
    gap: 0.9rem;
}

.state-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.3rem;
    font-weight: 600;
    color: var(--color-text);
    border: 1px solid rgba(102, 204, 0, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.state-card span {
    font-size: 0.85rem;
    color: var(--color-muted);
    font-weight: 500;
}

.state-card:hover,
.state-card:focus {
    transform: translateY(-3px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.section-actions {
    text-align: center;
    margin-top: 2.5rem;
}

.section-faq {
    background: var(--color-surface);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f4f6fb;
    border-radius: var(--radius-md);
    padding: 1.2rem 1.4rem;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.faq-item input {
    position: absolute;
    opacity: 0;
}

.faq-item label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.trust-banner-v2 {
    background-color: var(--color-primary-dark);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.trust-banner-v2-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.trust-banner-v2-item img {
    max-height: 80px;
    filter: brightness(0) invert(1);
}

.trust-banner-v2-item .stars {
    margin-top: 0.5rem;
}

.trust-banner-v2-content p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.trust-banner-v2 .btn-v2-primary {
    background: #fff;
    color: var(--color-primary-dark);
}

.services-v2 {
    padding: 4rem 0;
}

.section-title-v2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.services-v2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-v2-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-v2-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-v2-icon {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.cta-v2 {
    background-color: var(--color-primary-dark);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-v2 h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.btn-v2-cta {
    background: #fff;
    color: var(--color-primary-dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.stats-v2 {
    padding: 4rem 0;
}

.stats-v2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-v2-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-v2-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.stat-v2-card:hover {
    border-color: var(--color-primary-dark);
}

.stat-v2-icon {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.faq-item label::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform 0.2s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--color-muted);
}

.faq-content p {
    margin: 0.8rem 0 0;
}

.faq-item input:checked + label::after {
    transform: rotate(45deg);
}

.faq-item input:checked ~ .faq-content {
    max-height: 200px;
}

.section-testimonials {
    background: linear-gradient(135deg, rgba(102, 204, 0, 0.08) 0%, rgba(94, 187, 1, 0.12) 100%);
}

/* Slider layout */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-slider .slider-track {
    display: flex;
    gap: 1.5rem;
    will-change: transform;
    transition: transform 0.35s ease;
}

.testimonials-slider .testimonial-card {
    flex: 0 0 calc((100% - 3rem) / 3); /* 3 items per view with gaps */
}

/* Responsive per-view widths for testimonials */
@media (max-width: 939px) {
    .testimonials-slider .testimonial-card {
        /* 2 items per view with 1.5rem gap */
        flex: 0 0 calc((100% - 1.5rem) / 2) !important;
    }
}
@media (max-width: 639px) {
    .testimonials-slider .slider-track { gap: 1rem; }
    .testimonials-slider .testimonial-card {
        /* 1 item per view on small mobiles */
        flex: 0 0 100% !important;
    }
}

.testimonials-slider .slider-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.slider-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.85);
    color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(102, 204, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-btn:hover,
.slider-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(102, 204, 0, 0.22);
}

/* Avatar + header inside testimonial */
.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.testimonial-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stars {
    color: #f3b340;
    letter-spacing: 0.2rem;
}

/* CTA Section */
.section-cta.cta-section {
    background: var(--color-surface);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-lg);
    padding: 2.8rem 2.2rem;
    color: #fff;
    box-shadow: var(--shadow-card);
}

.cta-badge {
    background-color: #dcfce7;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #166534;
    display: inline-block;
    margin-bottom: 20px;
}

.cta-wrapper h2 {
    font-size: 38px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-actions .btn {
    width: 100%;
    text-align: center;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    font-weight: 600;
}

.cta-actions .btn-gradient {
    background: white;
    color: var(--color-primary);
    border: 2px solid white;
}

.cta-actions .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-meta {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    color: rgba(255,255,255,0.85);
}

/* CTA responsive layout */
@media (max-width: 939px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem 1.4rem;
    }
    .cta-wrapper h2 {
        font-size: 28px;
        line-height: 1.25;
    }
    .cta-badge {
        font-size: 13px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }
    .cta-actions {
        margin-top: 0.5rem;
    }
}
@media (max-width: 639px) {
    .cta-wrapper {
        border-radius: 16px;
    }
    .cta-actions .btn {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
}

.site-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.86);
    padding: 3.5rem 0 2.2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-grid h3 {
    margin-top: 0;
    color: #fff;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid a:hover,
.footer-grid a:focus {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2.2rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 600px) {
    .hero-layout {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
    }

    .hero-figure img {
        height: 320px;
        width: 100%;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tools-layout {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .states-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 940px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .site-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 4vw;
    }

    .header-bar {
        padding: 1rem 0;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }

    .header-hotline {
        display: flex;
    }

    .header-controls {
        gap: 1.4rem;
    }

    .menu-toggle {
        display: none;
    }

    .site-nav {
        all: unset;
        display: flex;
        align-items: center;
        gap: 2.5rem;
        margin-left: 2rem;
    }

    .nav-backdrop {
        display: none;
    }

    .nav-header,
    .nav-close {
        display: none;
    }

    .nav-menu {
        flex-direction: row;
        align-items: center;
        gap: 1.6rem;
        border: none;
    }

    .nav-menu a {
        border: none;
        padding: 0;
        position: relative;
    }

    .nav-menu a::after {
        content: none;
    }

    .nav-menu a:hover::after,
    .nav-menu a:focus::after { }

.hero-layout-landing {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-stats-landing {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(27, 31, 47, 0.1);
}

.hero-stats-landing > div {
    text-align: left;
}

.hero-form-wrapper {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.form-container h3 {
    margin-top: 0;
    text-align: center;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.form-legal {
    font-size: 0.8rem;
    color: var(--color-muted);
    text-align: center;
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .hero-layout-landing {
        grid-template-columns: 1fr 1fr;
    }
}


    .nav-actions {
        flex-direction: row;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .header-bar {
        padding: 1.1rem 0;
    }

    .container {
        width: min(1200px, 86vw);
    }

    .section-hero {
        padding: 5.5rem 0 4rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .articles-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .states-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .state-card span {
        display: none;
    }

    .states-grid .state-card:nth-child(n+21) {
        display: none;
    }

    .states-grid.expanded .state-card {
        display: flex;
    }

    .cta-wrapper {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
    }
}

.cta-section{padding:80px 20px;}

/* V2 Styles */
.hero-v2 {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(102, 204, 0, 0.12) 0%, rgba(94, 187, 1, 0.08) 100%);
}

.hero-v2-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .hero-v2-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-v2-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-v2-benefits {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
}

.hero-v2-benefits li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.hero-v2-benefits li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-primary-dark);
    position: absolute;
    left: 0;
    top: 0;
}

/* Meta na vrhu artikla */
.post-meta-v2 {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-top: 8px;
}

.form-v2-container {
    	    background: linear-gradient(180deg, rgba(102, 204, 0, 0.10) 0%, rgba(94, 187, 1, 0.06) 100%) !important;
    padding: 2rem;
    border-radius: 8px;
	border: 1px solid #f0f0f0;
        box-shadow: 8px 8px 20px rgb(0 0 0 / 10%);
}

.form-v2-container h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-v2-group {
    margin-bottom: 1rem;
}

.form-v2-group input,
.form-v2-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.form-v2-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.btn-v2-primary {
    background: var(--color-primary-dark);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-v2-secondary {
    background: #e2e8f0;
    color: #1a202c;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.state-cities-section {
    padding: 4rem 0;
    background: var(--color-surface);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.city-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-weight: 600;
    color: var(--color-text);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


/* === BASE STYLES === */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.ca-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem; /* razmak između glavnog dijela i sidebara */
}

/* Glavni wrapper za listu i zaglavlje */
.ca-main { width: 100%; }

/* Zaglavlje arhive */
.ca-archive-header { margin: 0 0 1.5rem; }
.ca-archive-header .ca-page-title { font-size: clamp(1.8rem, 1.5rem + 1vw, 2.2rem); margin: 0; }
.ca-archive-header .ca-category-description { color: var(--color-muted); margin: .5rem 0 0; }

.ca-page-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* === POST LIST === */
.ca-post-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ca-post-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 8px;
  background-color: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.ca-post-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.ca-post-thumb img {
  width: 100%;
  border-radius: 6px;
  height: auto;
  object-fit: cover;
}

.ca-post-content {
  margin-top: 1rem;
}

.ca-post-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.ca-post-title:hover {
  color: var(--color-primary-dark);
}

.ca-post-meta {
  font-size: 0.875rem;
  color: #777;
  margin: 0.25rem 0 0.75rem;
}

.ca-read-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #0077cc;
  text-decoration: none;
}

.ca-read-more:hover {
  text-decoration: underline;
}

/* === SIDEBAR === */
.ca-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.ca-widget {
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 8px;
  background: #fafafa;
}

.ca-widget h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.ca-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ca-widget li {
  margin-bottom: 0.4rem;
}

.ca-widget a {
  color: #0077cc;
  text-decoration: none;
}

.ca-widget a:hover {
  text-decoration: underline;
}

/* === PAGINATION === */
.ca-pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
	    margin-bottom: 40px;
}


.ca-pagination .page-numbers {
  padding: 0.5rem 0.75rem;
  border: 1px solid #e2e3ea;
  color: var(--color-primary-dark);
  border-radius: 8px;
  text-decoration: none;
  min-width: 40px;
  text-align: center;
  background: #fff;
}

.ca-pagination .current {
  background: var(--color-primary-dark);
  color: #fff;
  border-color: var(--color-primary-dark);
}

.ca-pagination .next, .ca-pagination .prev {
  font-weight: 600;
}

/* === SINGLE POST === */
.ca-single {
  display: block;
	margin-top:2rem;

}

.ca-single-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.ca-single-thumb img {
  border-radius: 8px;
  width: 100%;
  margin: 1rem 0;
}

.ca-cta-box {
  border: 2px solid #0077cc;
  background: #f1f8ff;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 600;
  margin: 1.5rem 0;
  text-align: center;
}

.ca-cta-box a {
  color: #0077cc;
  text-decoration: underline;
}

.ca-post-content p {
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.ca-related-posts h3 {
  margin-top: 2.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.ca-related-posts ul {
  list-style: disc;
  padding-left: 1.5rem;
}

/* === RESPONSIVE === */
@media (min-width: 768px) {
  .ca-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .ca-main {
    width: 70%;
  }

  .ca-sidebar {
    width: 28%;
    margin-top: 0;
  }

  .ca-post-card {
    flex-direction: row;
    gap: 1rem;
  }

  /* Responsivna slika u kartici: širina/visina se prilagođavaju */
  .ca-post-thumb {
    flex: 0 0 min(280px, 35%);
    width: min(280px, 35%);
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 6px;
  }

  .ca-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
/* ===== Sidebar Container ===== */
.ca-sidebar {
    background: var(--color-surface);
    border-radius: 10px;
	border: 1px solid #f0f0f0;
    padding: 1.8rem;
        box-shadow: 8px 8px 20px rgb(0 0 0 / 10%);
    color: var(--color-text);
    margin-top: 2rem;
	margin-bottom: 2rem;
    font-size: .95rem;
	        min-width: 280px;
}

@media (min-width: 768px) {
    .ca-sidebar {
        position: sticky;
        top: 100px;
    }
}

/* ===== Section Headings ===== */
.ca-sidebar h2,
.ca-sidebar .wp-block-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.ca-sidebar h2::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    display: inline-block;
}

/* ===== Search Form ===== */
.ca-sidebar input[type="search"],
.ca-sidebar .wp-block-search__input {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid #e2e3ea;
    border-radius: 6px;
    font-size: .95rem;
    color: var(--color-text);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.ca-sidebar input[type="search"]:focus,
.ca-sidebar .wp-block-search__input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(102, 204, 0, .2);
    outline: none;
}

.ca-sidebar input[type="submit"],
.ca-sidebar .wp-block-search__button {
    width: 100%;
    padding: .75rem;
    background: var(--color-primary-dark);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: .5rem;
    transition: background .2s ease;
}

.ca-sidebar input[type="submit"]:hover,
.ca-sidebar .wp-block-search__button:hover {
    background: var(--color-primary);
}

/* ===== List Groups (Recent Posts, Categories, Archives) ===== */
.ca-sidebar ul,
.ca-sidebar ol {
    padding-left: 0;
    list-style: none;
    margin: 0 0 1.4rem 0;
}

.ca-sidebar li {
    margin-bottom: .55rem;
}

.ca-sidebar a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color .2s ease;
}

.ca-sidebar a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* ===== Divider Between Widgets ===== */
.ca-sidebar section {
    padding-bottom: 1.4rem;
    border-bottom: 1px solid #f0f1f5;
    margin-bottom: 1.4rem;
}

.ca-sidebar section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* ===== Compact Comments Styling ===== */
.ca-sidebar .wp-block-latest-comments__comment-author,
.ca-sidebar .wp-block-latest-comments__comment-link {
    font-size: .9rem;
    color: var(--color-muted);
}

/* ===== Fade Hover Effect for All Links ===== */
.ca-sidebar a:hover {
    opacity: .9;
}
article{
    background: var(--color-surface);
    border-radius: 10px;
    padding: 1.8rem;
    box-shadow: 0 1px 4px rgb(0 0 0 / 6%);
    color: var(--color-text);
    width: 99%;
    max-width: 1200px;
    font-size: .95rem;
		 border-radius: 10px;
	border: 1px solid #66CC00;
    padding: 1.8rem;
        box-shadow: 8px 8px 20px rgb(0 0 0 / 10%);
}


/* ========== Tool Pages (global styles for calculators/simulators) ========== */
.tool-body { padding: 24px 0 40px; }
.tool-body .container { width: min(960px, 92vw); margin: 0 auto; padding: 0 22px; }
.tool-body .tool-card { background:#fff; border:1px solid #e5e7eb; border-radius: 14px; padding: 18px 18px 22px; box-shadow: 0 8px 24px rgba(15,23,42,0.06); }
.tool-body .tool-title { margin:0 0 12px; font-size:1.25rem; font-weight:700; }
.tool-body .form-grid { display:grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 700px){ .tool-body .form-grid{ grid-template-columns: repeat(2,1fr);} }
.tool-body .form-item label { display:block; font-weight:600; margin: 2px 0 6px; }
.tool-body .form-item input, .tool-body .form-item select { width:100%; padding: 10px 12px; border:1px solid #d1d5db; border-radius:10px; font-size:1rem; }
.tool-body .choice { display:flex; gap:16px; }
.tool-body .btn-v2-primary { display:inline-block; padding: 12px 16px; border-radius: 10px; color:#fff; text-decoration:none; font-weight:600; box-shadow: 0 18px 38px rgba(102, 204, 0, 0.28); background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%); border:0; cursor:pointer; }
.tool-body .result-grid { display:grid; grid-template-columns: 1fr; gap: 12px; margin-top: 16px; }
@media (min-width: 800px){ .tool-body .result-grid{ grid-template-columns: repeat(3,1fr);} }
.tool-body .result-card { border:1px solid #e5e7eb; border-radius:12px; padding: 12px 14px; background:#f9fafb; }
.tool-body .result-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.tool-body .badge { display:inline-block; padding:6px 10px; background:#111827; color:#fff; border-radius:8px; font-size:.85rem; }
.tool-body .badge-green { background:#16a34a; }
.tool-body .tool-note { color:#6b7280; font-size: .95rem; margin-top: 8px; }

/* Buttons used outside of .btn base */
.btn-v2-primary { display:inline-flex; align-items:center; justify-content:center; gap:.35rem; padding: 12px 16px; border-radius: 10px; color:#fff; font-weight:600; box-shadow: 0 18px 38px rgba(102, 204, 0, 0.28); background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%); border:0; cursor:pointer; }
.btn-v2-secondary { display:inline-flex; align-items:center; justify-content:center; gap:.35rem; padding: 12px 16px; border-radius: 10px; color:#111827; font-weight:600; background:#eef2f7; border: 1px solid #e5e7eb; cursor:pointer; }
.btn-v2-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-v2-secondary:hover { transform: translateY(-1px); filter: brightness(1.02); }
 .funnel-v2-container {     background: linear-gradient(180deg, rgba(102, 204, 0, 0.10) 0%, rgba(94, 187, 1, 0.06) 100%); border:1px solid #e5e7eb; border-radius: 14px; padding: 24px; margin: 16px 0 20px; box-shadow: 0 12px 18px -6px rgba(0,0,0,0.10), 0 6px 10px -4px rgba(0,0,0,0.06); }
        .funnel-title { margin: 0 0 10px 0; font-size: 1.75rem; font-weight: 700; letter-spacing: -0.01em; }
        .funnel-sub { color: #4b5563; margin: 0 0 16px 0; font-size: 0.98rem; line-height: 1.6; }
        .funnel-hook { color: #374151; margin: 6px 0 12px 0; font-size: 0.98rem; line-height: 1.6; }

        .card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 18px; margin-top: 16px; }
        .hidden { display: none; }

        .lead-q { padding: 40px 20px; }
        .lead-q-text { font-weight: 600; margin-bottom: 14px; font-size: 1.05rem; line-height: 1.6; color: #111827; }
        .lead-q-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

        /* Dugmići – scoped unutar funnel-a */
        .funnel-v2-container .btn-v2-primary, .funnel-v2-container .btn-v2-secondary {
            display: inline-flex; align-items: center; gap: 8px; padding: 14px 20px; min-height: 46px;
            border-radius: 10px; font-weight: 600; text-decoration: none;
            transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
        }
        .funnel-v2-container .btn-v2-primary {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
            color: #fff; border: none;
            box-shadow: 0 18px 38px rgba(102, 204, 0, 0.28);
        }
        .funnel-v2-container .btn-v2-primary:hover { filter: brightness(1.06); transform: translateY(-1px); box-shadow: 0 12px 22px -6px rgba(37,99,235,0.32); }
        .funnel-v2-container .btn-v2-primary:focus { outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,0.25); }

        .funnel-v2-container .btn-v2-secondary {
            background: #eef2f7; color: #111827; border: 1px solid #e5e7eb;
        }
        /* Alias za postojece dugmice u pitanju (btn btn-gradient / btn btn-ghost) */
        .funnel-v2-container .btn.btn-gradient {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
            color: #fff; border: none;
            box-shadow: 0 18px 38px rgba(102, 204, 0, 0.28);
        }
        .funnel-v2-container .btn.btn-ghost {
            background: #eef2f7; color: #111827; border: 1px solid #e5e7eb;
        }
        .funnel-v2-container .btn-v2-secondary:hover { filter: brightness(1.02); transform: translateY(-1px); }
        .funnel-v2-container .btn-v2-secondary:focus { outline: none; box-shadow: 0 0 0 3px rgba(17,24,39,0.12); }

        .lead-cta-banner .lead-cta-title { font-weight: 700; margin-bottom: 10px; }
        .lead-cta-banner .lead-cta-sub { color: #4b5563; margin-bottom: 16px; line-height: 1.6; }
        .lead-cta-banner .cta-actions { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 8px; }
        .lead-cta-banner .cta-actions .btn-v2-primary,
        .lead-cta-banner .cta-actions .btn-v2-secondary { width: 100%; justify-content: center; }
        .lead-cta-banner.card { border-left: 4px solid var(--color-primary-dark);; }

        .lead-form .lead-form-title { margin: 0 0 10px 0; font-size: 1.18rem; font-weight: 600; }
        .lead-form .lead-form-desc { color: #4b5563; margin: 0 0 12px 0; }
        .lead-form-body .form-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
        .lead-form-body .form-col input { width: 100%; padding: 14px 16px; border: 1px solid #d1d5db; border-radius: 10px; font-size: 16px; background: #f9fafb; transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease; }
        .lead-form-body .form-col input:focus { outline: none; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.15); background: #fff; }
        .lead-form-body .submit-row { margin-top: 10px; }
        @media (min-width: 640px) { .lead-form-body .form-row { grid-template-columns: 1fr 1fr; } }

        /* Animacije */
        @keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
        @keyframes slideUp { from { opacity: 0; transform: translateY(8px) } to { opacity: 1; transform: translateY(0) } }
        .animate-fade-in { animation: fadeIn 200ms ease-out both; }
        .animate-slide-up { animation: slideUp 220ms ease-out both; }
        @media (prefers-reduced-motion: reduce) { .animate-fade-in, .animate-slide-up { animation: none; } }

        /* Processing state */
        .lead-processing { margin-top: 12px; padding: 16px; }
        .processing-header { display: flex; align-items: center; gap: 10px; }
        .processing-title { font-weight: 600; }
        .processing-sub { color: #6b7280; font-size: 0.95rem; margin-top: 6px; }
        .processing-loader { width: 18px; height: 18px; border: 2px solid #c7d2fe; border-top-color: #2563eb; border-radius: 50%; animation: spin 0.8s linear infinite; }
        @keyframes spin { to { transform: rotate(360deg); } }
        .processing-bar { margin-top: 10px; height: 6px; background: #eef2ff; border-radius: 999px; overflow: hidden; }
        .processing-bar-fill { width: 0%; height: 100%; background: linear-gradient(90deg, #2563eb, #22c55e); transition: width 420ms ease; }

        /* Confetti */
        .confetti-container { position: relative; height: 0; }
        .confetti-piece { position: absolute; top: -8px; border-radius: 50%; opacity: 0.95; animation: fall 2.4s ease-in forwards; }
        @keyframes fall { 0% { transform: translateY(0) rotate(0deg); opacity:1 } 90% { opacity: 0.9 } 100% { transform: translateY(160px) rotate(720deg); opacity:0 } }

        /* Dodatni spacing za hero form wrapper */
        .hero-v2-form-wrapper { margin-top: 16px; }

        /* Veći spacing na desktopu */
        @media (min-width: 768px) {
            .funnel-v2-container { padding: 26px; }
            .card { padding: 20px; }
        }
.tool-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin-bottom: 1rem;
  color: #017B4F; /* ili tvoja primarna boja */
}
.state-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.2rem 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  transition: all 0.2s ease-in-out;
  line-height: 1.3;
}

.state-card span {
  display: block; /* <<< ključna linija */
  font-size: 0.9rem;
  font-weight: 400;
  color: #6b7280;
  margin-top: 4px;
}
@media (max-width:767px){
	.section-hero {
		position: relative;
		padding: 1.5rem 0 3.5rem;
	}
	.btn-gradient, .btn-ghost{width:100%}
}
.hero-v3{
	    background: linear-gradient(180deg, rgba(102, 204, 0, 0.10) 0%, rgba(94, 187, 1, 0.06) 100%);
}
/* NOVI MINIMALNI GRID ZA KALKULATORE */
.tools-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 32px;
}

/* Kartica */
.tool-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 22px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: #111827;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: all .2s ease;
}

/* Hover efekt */
.tool-box:hover {
    border-color: #66CC00;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(102,204,0,0.18);
}

/* Ikonica */
.tool-icon {
    font-size: 32px;
    margin-bottom: 10px;
    color: #66CC00;
}

/* Naziv kalkulatora */
.tool-title {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}
.tool-feature-min {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.tool-feature-min h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tool-feature-min p {
    color: #4b5563;
    font-size: .97rem;
    margin-bottom: 14px;
    line-height: 1.45;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: inline-block;
    padding: 6px 12px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    font-size: .8rem;
    color: #374151;
    font-weight: 500;
}
.chip-list {
    row-gap: 10px;
}
