/* TINY CSS FRAMEWORK - BLUE, WHITE & BROWN RE-DESIGN */
:root {
    --bg-light: #ffffff;
    --bg-alt: #f0f4f8;          /* Világos kékes-szürke háttérváltásnak */
    --text-main: #1e293b;
    --text-muted: #64748b;

    /* Színpaletta hangsúlyok */
    --primary: #1e40af;         /* Királykék főszín */
    --accent: #3b82f6;          /* Élénkebb kék kiemeléseknek */
    --brown: #854d0e;           /* Gazdag, prémium barna gombokhoz és badge-ekhez */
    --brown-dark: #713f12;      /* Mélybarna hover állapotokhoz */

    --border: #cbd5e1;
    --radius: 12px;
    --shadow: 0 4px 20px -2px rgba(30, 41, 59, 0.05), 0 2px 10px -1px rgba(30, 41, 59, 0.03);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

section {
    position: relative;
}

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

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(30, 40, 175, 0.1);
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    line-height: 1.1;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.logo-link:hover {
    color: var(--brown);
}

.logo-link:hover .logo-subtitle {
    color: var(--brown-dark);
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--brown);
    font-weight: 500;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--brown);
}

.lang-switcher-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
}

.lang-switcher-links .lang-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.2rem 0.35rem;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-switcher-links .lang-link:hover,
.lang-switcher-links .lang-link.is-active {
    color: var(--primary);
}

.lang-switcher-links .lang-link.is-active {
    background: rgba(30, 64, 175, 0.08);
}

.lang-switcher-links .lang-sep {
    color: var(--border);
    font-size: 0.75rem;
    user-select: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* BUTTONS WITH MICRO-TRANSITIONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background-color: var(--accent);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-brown {
    background-color: var(--brown);
    color: white;
}

.btn-brown:hover {
    background-color: var(--brown-dark);
    box-shadow: 0 4px 12px rgba(133, 77, 14, 0.3);
}

/* HERO SECTION RE-LAYOUT */
.hero {
    margin-top: 70px;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-badge {
    background-color: rgba(30, 64, 175, 0.06);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.hero-badge.badge-award {
    background-color: rgba(133, 77, 14, 0.1);
    color: var(--brown);
    border-color: rgba(133, 77, 14, 0.2);
    animation: soft-pulse 2s infinite ease-in-out;
}

.hero-title {
    font-size: 2.75rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-benefits {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hero-benefits li {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-photo-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.hero-photo {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: var(--radius);
    border: 4px solid white;
    box-shadow: var(--shadow);
    display: block;
    margin: 0 auto;
}

.photo-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow);
}

.stats-bar,
.trust-bar {
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.trust-bar .stat-number {
    font-size: 2.1rem;
}

.trust-bar .stat-label {
    font-size: 0.82rem;
}

.stat-card {
    text-align: center;
    background: white;
    padding: 1.25rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.stat-card-highlight {
    border-color: rgba(133, 77, 14, 0.35);
    background: rgba(133, 77, 14, 0.06);
}

.stat-card .stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-card .stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.35rem;
    line-height: 1.3;
}

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

.stat-item {
    background: var(--bg-alt);
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    border-bottom: 3px solid var(--brown);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brown);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* AWARDS */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.award-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--accent);
}

.award-card.featured {
    border-top-color: var(--brown);
    background: linear-gradient(to bottom right, white, rgba(133, 77, 14, 0.02));
}

.award-card:hover {
    transform: translateY(-4px);
}

.award-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.award-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* ABOUT SECTION ASYMMETRIC LAYOUT */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.about-block p {
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

.about-block.highlighted {
    background-color: rgba(59, 130, 246, 0.04);
    padding: 1.5rem;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(30, 41, 59, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* CASE STUDIES */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.case-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.case-card:hover {
    border-color: rgba(30, 64, 175, 0.25);
    box-shadow: 0 8px 20px -6px rgba(30, 41, 59, 0.12);
}

.case-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.case-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* SAAS PRODUCT PLATES */
.saas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.saas-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 1.5rem 1.5rem 1.35rem;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.saas-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.35), rgba(133, 77, 14, 0.35));
    opacity: 0;
    transition: opacity 0.22s ease;
}

.saas-card:hover {
    border-color: rgba(30, 64, 175, 0.25);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transform: translateY(-3px);
}

.saas-card:hover::before {
    opacity: 1;
}

.saas-card-featured {
    border-color: rgba(30, 64, 175, 0.22);
    background: linear-gradient(165deg, rgba(30, 64, 175, 0.05) 0%, #fff 45%);
}

.saas-card-featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--primary), rgba(30, 64, 175, 0.5));
}

.saas-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.saas-card h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin: 0;
    line-height: 1.3;
    font-weight: 700;
}

.saas-role {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
}

.saas-role-ceo {
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.saas-role-coowner {
    background: rgba(133, 77, 14, 0.1);
    color: var(--brown);
    border: 1px solid rgba(133, 77, 14, 0.2);
}

.saas-website-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    align-self: flex-start;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 0.45rem 0.85rem;
    margin-bottom: 0.85rem;
    border-radius: 8px;
    background: rgba(30, 64, 175, 0.07);
    border: 1px solid rgba(30, 64, 175, 0.18);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.saas-website-link svg {
    flex-shrink: 0;
    opacity: 0.75;
}

.saas-website-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateX(2px);
}

.saas-website-link:hover svg {
    opacity: 1;
}

.saas-client {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid var(--border);
}

.saas-card > p:not(.saas-features-label):not(.saas-client) {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0 0 1rem;
    line-height: 1.6;
}

.saas-features-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin: 0 0 0.55rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}

.saas-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.saas-features li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.84rem;
    color: var(--text-main);
    line-height: 1.45;
}

.saas-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
}

.saas-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brown);
    background: rgba(133, 77, 14, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.saas-quote {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-left: 3px solid var(--brown);
    padding-left: 1rem;
}

.saas-card-coming {
    border-style: dashed;
    border-color: rgba(30, 64, 175, 0.25);
}

.why-list,
.build-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.75rem 1.5rem;
    list-style: none;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.why-list {
    margin-bottom: 0;
}

.why-list li,
.build-list li {
    position: relative;
    padding-left: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.why-list li::before,
.build-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brown);
    font-weight: 800;
}

.build-closing {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.awards-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.award-featured {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(133, 77, 14, 0.08));
    border: 2px solid rgba(133, 77, 14, 0.25);
    border-radius: var(--radius);
    padding: 2rem;
}

.award-badge-large {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
}

.award-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.award-featured h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.about-founder .about-content-founder {
    max-width: none;
}

.about-founder .about-block.highlighted {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2.5rem;
    padding: 2rem;
}

.about-founder .about-block p {
    margin-bottom: 0;
}

.about-founder .about-block p:last-child {
    margin-bottom: 0;
}

/* PORTFOLIO CAROUSELS */
.portfolio-carousels {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.portfolio-carousel-block {
    width: 100%;
}

.portfolio-carousel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.35rem;
}

.portfolio-carousel-top .category-title {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
    flex: 1;
}

.category-title {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.5rem;
}

.portfolio-swipe-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0 0 0.85rem;
}

.portfolio-carousel-controls {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.carousel-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    color: var(--primary);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.1rem;
}

.carousel-btn:hover:not(:disabled) {
    border-color: var(--brown);
    color: var(--brown);
    box-shadow: var(--shadow);
}

.carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.portfolio-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.portfolio-carousel::-webkit-scrollbar {
    display: none;
}

.portfolio-carousel:focus {
    outline: 2px solid rgba(30, 64, 175, 0.25);
    outline-offset: 2px;
    border-radius: var(--radius);
}

.portfolio-track {
    display: flex;
    gap: 1rem;
}

.portfolio-slide {
    flex: 0 0 calc(100% - 2rem);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(30, 64, 175, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.15);
}

.geo-icon {
    color: var(--brown);
}

.project-flag {
    margin-right: 0.4rem;
}

.project-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    min-height: 100%;
    box-shadow: var(--shadow);
}

.project-item h4 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 0.35rem;
    line-height: 1.35;
}

.project-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0 0 0.55rem;
}

.project-item p:last-child {
    margin-bottom: 0;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.55rem;
}

.project-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.project-tag-country {
    background: rgba(30, 64, 175, 0.08);
    color: var(--primary);
    border: 1px solid rgba(30, 64, 175, 0.15);
}

.project-tag-platform {
    background: rgba(133, 77, 14, 0.09);
    color: var(--brown);
    border: 1px solid rgba(133, 77, 14, 0.18);
}

.project-item.badge-highlight {
    background: rgba(133, 77, 14, 0.04);
    border-color: rgba(133, 77, 14, 0.25);
    border-left: 3px solid var(--brown);
}

@media (min-width: 640px) {
    .portfolio-slide {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (min-width: 992px) {
    .portfolio-slide {
        flex: 0 0 calc(33.333% - 0.67rem);
    }
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: var(--transition);
}

.pricing-card.featured {
    border: 2px solid var(--brown);
    box-shadow: var(--shadow);
    transform: scale(1.02);
}

.price-header h3 {
    font-size: 1.1rem;
    color: var(--text-main);
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0.5rem 0 1.25rem;
}

.pricing-card ul {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-card li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brown);
    font-weight: bold;
}

/* CONTACT SPLIT CONTAINER */
.contact-section {
    background-color: var(--primary);
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0 2rem;
    font-size: 1.1rem;
}

.contact-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.9rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-channel:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.25);
}

.contact-channel-whatsapp:hover {
    border-color: rgba(74, 222, 128, 0.45);
}

.contact-channel-icon {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
}

.contact-channel-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.85rem;
    line-height: 1.35;
}

.contact-channel-text strong {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.75);
}

.contact-channel-text span:last-child {
    font-weight: 600;
    color: #ffffff;
}

.contact-link {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-link:hover {
    color: #bfdbfe;
}

.contact-link-whatsapp:hover {
    color: #4ade80;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.contact-form-box {
    background: white;
    color: var(--text-main);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-box h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* FOOTER & COOKIE BANNER */
.footer {
    background-color: #0f172a;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.sticky-cta {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 1999;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.85rem 1.35rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.sticky-cta-whatsapp {
    background: #25d366;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.sticky-cta-whatsapp::before {
    content: "💬";
    font-size: 1rem;
    line-height: 1;
}

.sticky-cta-whatsapp:hover {
    background: #1da851;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.cookie-banner {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    max-width: 500px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: var(--radius);
    padding: 1.25rem;
    z-index: 2000;
    border-left: 4px solid var(--brown);
    transition: opacity 0.4s ease;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* MODAL SYSTEM */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow);
}

.saas-row-two {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .saas-row-two {
        grid-template-columns: 1fr;
    }
}

.modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-content h3 {
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.modal-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* MICRO-ANIMATIONS */
@keyframes soft-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(133, 77, 14, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 0 12px 4px rgba(133, 77, 14, 0.1); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(133, 77, 14, 0.2); }
}

/* RECENT PROJECTS */
#recent-projects {
    background: #fff;
}

.recent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.recent-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.recent-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.recent-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.recent-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    flex-shrink: 0;
    object-fit: cover;
    background: #f1f5f9;
    border: 1px solid var(--border);
}

.recent-client {
    font-weight: 400;
    font-size: 0.85em;
    color: var(--text-muted);
}

.recent-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding-top: 0.2rem;
}

.recent-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    letter-spacing: 0.01em;
}

.recent-badge.upcoming {
    background: rgba(234, 179, 8, 0.12);
    color: #92400e;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.recent-badge.delivered {
    background: rgba(22, 163, 74, 0.1);
    color: #166534;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.recent-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    line-height: 1.3;
}

.recent-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.recent-store-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: 0.25rem;
    transition: opacity 0.2s;
}

.recent-store-link:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-content, .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .contact-channels {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    .contact-channel {
        text-align: left;
    }
    .hero-badges-container, .hero-cta {
        justify-content: center;
    }
    .hero-right {
        order: -1;
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .award-featured {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .pricing-card.featured {
        transform: none;
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .iso-layout {
        grid-template-columns: 140px 1fr;
        gap: 1.5rem;
    }
    .company-facts {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2.5rem 1rem;
    }

    .header {
        overflow: visible;
    }

    .nav-container {
        position: relative;
    }

    #navMenu {
        position: static;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        padding: 1.25rem 1.5rem 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        gap: 1rem;
        z-index: 1001;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    #navMenu.active .nav-links,
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .lang-switcher-links {
        padding-top: 0.5rem;
        margin-top: 0.25rem;
        border-top: 1px solid var(--border);
        width: 100%;
        justify-content: flex-start;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Hero */
    .hero-title {
        font-size: 1.85rem;
        letter-spacing: -0.02em;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-benefits {
        text-align: left;
    }
    .hero-cta {
        flex-direction: column;
    }
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    .hero-iso-row {
        justify-content: center;
    }
    .hero-photo {
        max-width: 260px;
    }
    .photo-badge {
        font-size: 0.78rem;
        padding: 0.4rem 1rem;
        white-space: normal;
        text-align: center;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Section titles */
    .section-title {
        font-size: 1.75rem;
    }

    /* About / company */
    .about-founder .about-block.highlighted {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }
    .about-founder .about-block p {
        margin-bottom: 1.1rem;
    }
    .about-founder .about-block p:last-child {
        margin-bottom: 0;
    }

    /* Company facts */
    .company-facts {
        grid-template-columns: 1fr;
    }

    /* ISO / quality */
    .iso-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .iso-badge {
        margin: 0 auto 1.25rem;
    }
    .iso-scope {
        justify-content: center;
    }
    .cert-download {
        justify-content: center;
    }
    .quality-commitments {
        padding-left: 1rem;
    }

    /* Mission/vision */
    .mv-grid {
        grid-template-columns: 1fr;
    }

    /* SaaS grid */
    .saas-grid {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

       /* Recent projects */
       .recent-grid {
           grid-template-columns: 1fr;
       }

       /* Portfolio grid */
       .portfolio-grid {
           grid-template-columns: 1fr;
       }

    /* Awards */
    .awards-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-container {
        gap: 2rem;
    }
    .contact-channels {
        grid-template-columns: 1fr;
    }
    .contact-form-box {
        padding: 1.5rem 1.25rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* Cookie, sticky */
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.1rem;
        font-size: 0.82rem;
    }
    .cookie-banner {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }
}

/* ISO 9001, MISSION, VISION, QUALITY */
.hero-iso-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.iso-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(133, 77, 14, 0.1));
    color: var(--primary);
    border: 1px solid rgba(30, 64, 175, 0.18);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.iso-pill-mark {
    background: var(--primary);
    color: #fff;
    font-size: 0.68rem;
    padding: 0.12rem 0.4rem;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

.iso-badge {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    border: 6px solid var(--primary);
    background: radial-gradient(circle at 30% 30%, #ffffff, #e8eef9);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}

.iso-badge-mark {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--brown);
}

.iso-badge-code {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin: 0.15rem 0;
}

.iso-badge-year {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
}

.iso-layout {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.iso-copy h3 {
    color: var(--primary);
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.iso-copy p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.iso-scope {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.25rem;
}

.iso-scope span {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

.company-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.75rem;
}

.company-fact {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.2rem;
    box-shadow: var(--shadow);
}

.company-fact strong {
    display: block;
    color: var(--primary);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
}

.company-fact span {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mv-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.mv-card h3 {
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.mv-card p,
.mv-card li {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.mv-card ul {
    margin: 0.75rem 0 0;
    padding-left: 1.15rem;
}

.mv-card li {
    margin-bottom: 0.5rem;
}

.quality-block {
    background: white;
    border: 1px solid var(--border);
    border-left: 4px solid var(--brown);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.quality-block p {
    color: var(--text-main);
    margin-bottom: 1rem;
}

.quality-commitments {
    margin: 1rem 0 0;
    padding-left: 1.35rem;
}

.quality-commitments li {
    margin-bottom: 0.75rem;
    color: var(--text-main);
    line-height: 1.55;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.portfolio-group {
    margin-bottom: 0.5rem;
}

.cert-download {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: var(--brown);
    text-decoration: none;
}

.cert-download:hover {
    color: var(--primary);
}