:root {
    --primary: #0B1D3A;
    --primary-light: #132D5E;
    --accent: #C8A44E;
    --accent-hover: #D4B365;
    --accent-glow: rgba(200, 164, 78, 0.15);
    --text: #2C3345;
    --text-light: #6B7280;
    --text-white: #F8F9FA;
    --bg: #FFFFFF;
    --bg-warm: #FAF8F5;
    --bg-cool: #F0F4F8;
    --border: #E5E7EB;
    --success: #059669;
    --badge-bg: #ECFDF5;
    --badge-text: #065F46;
    --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.06);
    --shadow-md: 0 4px 16px rgba(11, 29, 58, 0.08);
    --shadow-lg: 0 12px 40px rgba(11, 29, 58, 0.12);
    --shadow-xl: 0 20px 60px rgba(11, 29, 58, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 48px;
}

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 420;
    color: var(--text);
    line-height: 1.65;
    letter-spacing: -0.01em;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== PROMO BAR ===== */
.promo-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.promo-bar strong {
    color: var(--accent);
}

.promo-bar a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===== HERO ===== */
.hero {
    background: url('hero-bg-ki-network.webp') center center / cover no-repeat;
    color: var(--text-white);
    padding: 60px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(10, 22, 40, 0.82) 0%, rgba(10, 22, 40, 0.6) 50%, rgba(10, 22, 40, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 164, 78, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero h1 .gold {
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(248, 249, 250, 0.8);
    max-width: 650px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(200, 164, 78, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-stat-text span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
}

.hero-stat-text small {
    font-size: 13px;
    color: rgba(248, 249, 250, 0.75);
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200, 164, 78, 0.3);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #FBBF24;
    font-size: 16px;
    letter-spacing: 2px;
}

.trust-rating span {
    font-size: 14px;
    color: rgba(248, 249, 250, 0.7);
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0.5;
}

.trust-logos img {
    height: 22px;
    filter: brightness(0) invert(1);
}

/* ===== LOGO MARQUEE ===== */
.logo-marquee-section {
    padding: 24px 0;
    overflow: hidden;
    position: relative;
}

.logo-marquee-section.in-hero {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 32px;
}

.logo-marquee-section.in-trust {
    border-top: 1px solid var(--border);
    padding-top: 32px;
}

.logo-marquee-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.logo-marquee-label.light {
    color: rgba(248, 249, 250, 0.7);
}

.logo-marquee-label.dark {
    color: var(--text-light);
}

.logo-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
    will-change: transform;
}

.logo-marquee-track:hover {
    animation-play-state: paused;
}

.logo-marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
}

.logo-marquee-item img {
    height: 32px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s, filter 0.3s;
}

.logo-marquee-item img {
    opacity: 1;
}

.logo-marquee-wrapper {
    position: relative;
    overflow: hidden;
}

.logo-marquee-wrapper::before,
.logo-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.logo-marquee-section.in-hero .logo-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--primary), transparent);
}

.logo-marquee-section.in-hero .logo-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--primary), transparent);
}

.logo-marquee-section.in-trust .logo-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.logo-marquee-section.in-trust .logo-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== FILTER BAR ===== */
.filter-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    position: sticky;
    top: 40px;
    z-index: 90;
    box-shadow: var(--shadow-sm);
}

.filter-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-right: 4px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.filter-btn[data-filter="rabatt25"] {
    font-weight: 700;
}

.filter-btn[data-filter="rabatt25"].active {
    background: #DC2626;
    color: #fff;
    border-color: #DC2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}

/* ===== SEMINARE GRID ===== */
.seminare {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px;
}

.seminare-header {
    text-align: center;
    margin-bottom: 40px;
}

.seminare-header h2 {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    color: var(--primary);
    margin-bottom: 10px;
}

.seminare-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* ===== SEMINAR CARD ===== */
.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.card:hover {
    border-color: var(--accent);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #DC2626;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.card-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
}



.card-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    margin-top: auto;
}

.card-format {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--badge-text);
    background: var(--badge-bg);
    padding: 3px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card h3 {
    font-size: 18px;
    font-weight: 650;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.card-desc {
    font-size: 14px;
    font-weight: 420;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.card-date {
    font-size: 13px;
    color: var(--text-light);
}

.card-date strong {
    display: block;
    font-size: 14px;
    color: var(--text);
}

.card-price {
    text-align: right;
}

.card-price .old {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}

.card-price .current {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.card-cta-inquiry {
    display: block;
    text-align: center;
    padding: 12px 16px;
    margin: 12px 24px 0;
    background: var(--bg-cool);
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

.card-cta-inquiry:hover {
    background: #e4e9ef;
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 29, 58, 0.1);
}

.card-cta {
    display: block;
    text-align: center;
    padding: 14px 16px;
    min-height: 48px;
    margin: 8px 24px 24px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

.card-cta:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.card-img-link {
    display: block;
    overflow: hidden;
}

.card-img-link .card-img {
    transition: transform 0.4s ease;
}

.card-img-link:hover .card-img {
    transform: scale(1.05);
}

.card-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-title-link:hover {
    color: var(--accent);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: #fff;
    padding: 64px 20px;
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.trust-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-header {
    text-align: center;
    margin-bottom: 48px;
}

.trust-header h2 {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    color: var(--primary);
    margin-bottom: 10px;
}

.trust-header p {
    color: var(--text-light);
    font-size: 16px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
}

.testimonial::before {
    content: '\201E';
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 60px;
    color: var(--accent);
    position: absolute;
    top: 8px;
    left: 24px;
    line-height: 1;
    opacity: 0.4;
}

.testimonial-text {
    font-size: 15px;
    font-weight: 420;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    padding-top: 16px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-cool);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-light);
}

/* Reference Logos (legacy, kept for compatibility) */
.ref-logos {
    display: none;
}

/* ===== ZERTIFIKATE ===== */
.certs {
    background: var(--primary);
    color: var(--text-white);
    padding: 56px 20px;
    content-visibility: auto;
    contain-intrinsic-size: auto 400px;
}

.certs-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.certs h2 {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 10px;
}

.certs>.certs-inner>p {
    color: rgba(248, 249, 250, 0.7);
    font-size: 16px;
    margin-bottom: 40px;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    text-align: left;
}

.cert-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cert-icon img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

.cert-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}

.cert-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cert-card p {
    font-size: 14px;
    color: rgba(248, 249, 250, 0.65);
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 20px;
    background: var(--bg-warm);
    content-visibility: auto;
    contain-intrinsic-size: auto 1200px;
}

.faq h2 {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    color: var(--primary);
    text-align: center;
    margin-bottom: 12px;
}

.faq>p.faq-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-q {
    font-size: 16px;
    font-weight: 650;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    transition: color 0.2s ease;
}

.faq-q:hover,
.faq-q:focus-visible {
    color: var(--accent);
}

.faq-q::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 119, 182, 0.08);
    border-radius: 50%;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

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

.faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 24px 20px;
}

.faq-a p {
    font-size: 15px;
    font-weight: 420;
    color: #4a5568;
    line-height: 1.8;
}

/* ===== FINAL CTA ===== */
/* ===== TRUST & CONTACT ZONE ===== */
.trust-contact-zone {
    background: linear-gradient(135deg, #0a1628 0%, #122240 50%, #0d1b36 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
}

.trust-contact-zone::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 119, 182, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.trust-contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.trust-contact-zone h2 {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    color: #fff;
    margin-bottom: 8px;
}

.trust-contact-zone .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 119, 182, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.trust-badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
}

.trust-badge-icon.ssl {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.trust-badge-icon.eco {
    background: linear-gradient(135deg, #34D399 0%, #16A34A 100%);
}

.trust-badge-icon.hosting {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

.trust-badge-text h4 {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.trust-badge-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Contact Card */
.contact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    padding: 32px 28px;
}

.contact-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    text-align: center;
}

.contact-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 3px solid rgba(200, 164, 78, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.contact-info h3 {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

.contact-info .contact-role {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
}

.contact-info .contact-address {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-top: 8px;
}

.contact-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #20c05c);
    color: #fff;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: 14px;
    font-size: 22px;
    font-weight: 800;
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.contact-cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.contact-cta-phone .phone-icon {
    font-size: 26px;
}

.contact-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-action-btn.email {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.contact-action-btn.email:hover {
    background: rgba(255, 255, 255, 0.14);
}

.contact-action-btn.whatsapp {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.contact-action-btn.whatsapp:hover {
    background: rgba(255, 255, 255, 0.14);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 360px;
    margin-bottom: 14px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: brightness(0.85) contrast(1.1);
}

.contact-hours {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .cert-logos-group {
        display: none !important;
    }

    .hero-badge {
        display: none !important;
    }

    .trust-contact-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}



/* ===== FOOTER ===== */
footer {
    background: #0a1628;
    color: rgba(248, 249, 250, 0.75);
    padding: 0;
    font-size: 14px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: rgba(248, 249, 250, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(248, 249, 250, 0.75);
    font-size: 13px;
    margin: 0;
}

.footer-bottom a {
    color: rgba(248, 249, 250, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-tagline {
    color: rgba(248, 249, 250, 0.55);
    font-size: 13px;
    font-style: italic;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
        padding: 40px 20px 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px 36px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-contact-pill {
        margin-right: 0 !important;
        align-self: center;
    }

    .trust-logos {
        display: none;
    }

    .filter-bar {
        top: 40px;
    }

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

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

    .ref-logos {
        gap: 24px;
    }



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

    body {
        padding-bottom: 70px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-inner>* {
    animation: fadeUp 0.6s ease forwards;
}

.hero-inner>*:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-inner>*:nth-child(3) {
    animation-delay: 0.15s;
}

.hero-inner>*:nth-child(4) {
    animation-delay: 0.2s;
}

.hero-inner>*:nth-child(5) {
    animation-delay: 0.25s;
}

.hero-inner>*:nth-child(6) {
    animation-delay: 0.3s;
}

.card {
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

.card:nth-child(4) {
    animation-delay: 0.35s;
}

.card:nth-child(5) {
    animation-delay: 0.4s;
}

.card:nth-child(6) {
    animation-delay: 0.45s;
}

/* Schema.org structured data is in script below */