/* =========================================
   DEVIXSCALE - CLEAN TECH B2B STYLES
   ========================================= */

/* --- CSS Variables for Light / Dark Theme --- */
:root[data-theme="light"] {
    --bg-main: #F8FAFC;
    --bg-alt: #FFFFFF;
    --text-main: #0F172A;
    --text-muted: #475569;
    --border-color: #E2E8F0;
    
    /* Brand Colors (WCAG AA Compliant on White & Light Gray) */
    --brand-primary: #1D4ED8; /* 6.9:1 on #FFFFFF */
    --brand-primary-hover: #1E40AF;
    --brand-secondary: #6D28D9; /* 6.8:1 on #FFFFFF */
    --gradient-brand: linear-gradient(135deg, #1D4ED8, #7C3AED);
    
    /* Functional Semantic Colors */
    --color-success: #047857; /* 5.8:1 on #FFFFFF */
    --color-warning: #B45309; /* 5.5:1 on #FFFFFF */
    --color-danger: #B91C1C; /* 6.5:1 on #FFFFFF */
    --color-info: #0369A1; /* 5.7:1 on #FFFFFF */
    
    /* Badges */
    --badge-bg: rgba(29, 78, 216, 0.08);
    --badge-text: #1D4ED8;
    --badge-border: rgba(29, 78, 216, 0.25);
    
    /* UI Elements */
    --theme-toggle-color: var(--text-main); /* 17.2:1 maximum contrast on white */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(226, 232, 240, 0.8);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
    
    /* Input */
    --input-bg: #FFFFFF;
    --input-border: #94A3B8;
    --input-placeholder: #64748B;
}

:root[data-theme="dark"] {
    --bg-main: #0B0F19;
    --bg-alt: #111827;
    --text-main: #F8FAFC; /* 17.5:1 on #0B0F19 */
    --text-muted: #94A3B8; /* 6.4:1 on #111827 */
    --border-color: #334155;
    
    /* Brand Colors (Bright & high contrast on dark backgrounds) */
    --brand-primary: #60A5FA; /* 7.8:1 on #111827 */
    --brand-primary-hover: #93C5FD;
    --brand-secondary: #A78BFA; /* 7.2:1 on #111827 */
    --gradient-brand: linear-gradient(135deg, #60A5FA, #C084FC);
    
    /* Functional Semantic Colors */
    --color-success: #34D399; /* 9.5:1 on #111827 */
    --color-warning: #FBBF24; /* 11.2:1 on #111827 */
    --color-danger: #F87171; /* 6.8:1 on #111827 */
    --color-info: #38BDF8; /* 9.8:1 on #111827 */
    
    /* Badges */
    --badge-bg: rgba(96, 165, 250, 0.15);
    --badge-text: #60A5FA;
    --badge-border: rgba(96, 165, 250, 0.35);
    
    /* UI Elements */
    --theme-toggle-color: var(--text-main); /* 17.5:1 maximum contrast on dark */
    --glass-bg: rgba(17, 24, 39, 0.85);
    --glass-border: rgba(51, 65, 85, 0.6);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    
    /* Input */
    --input-bg: #1E293B;
    --input-border: #475569;
    --input-placeholder: #94A3B8;
}

/* --- Global Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.section-padding {
    padding: 100px 0;
}

/* --- Typography & Utils --- */
.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.15em;
    margin-right: -0.15em;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.bg-alt { background-color: var(--bg-alt); }
.w-100 { width: 100%; }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-subtitle.text-left {
    margin-left: 0;
    margin-right: auto;
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

/* --- Background Shapes --- */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    will-change: transform;
    animation: float 10s ease-in-out infinite alternate;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.3);
}

.shape-2 {
    top: 40%;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.2);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(30px) scale(1.05); }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 9999px; /* Pill shape */
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-main);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--border-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

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

.logo {
    flex: 0 0 auto;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.625rem;
    perspective: 1000px;
    margin-right: 0;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.logo svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    transition: filter 0.3s ease;
}

.logo-path-bracket {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: 16px 16px;
}

.logo-path-scale {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: 16px 16px;
}

@media (hover: hover) and (pointer: fine) {
    .logo:hover {
        transform: translateY(-2px) rotateY(-12deg) rotateX(6deg);
    }

    .logo:hover svg {
        filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6))
                drop-shadow(0 0 15px rgba(59, 130, 246, 0.4));
    }

    .logo:hover .logo-path-bracket {
        transform: scale(0.90);
    }

    .logo:hover .logo-path-scale {
        transform: translate(3px, -3px) scale(1.08);
    }

    .logo:hover .logo-text {
        letter-spacing: -0.03em;
    }
}

.logo-text {
    position: relative;
    transition: letter-spacing 0.3s ease;
}

/* Static gradient text for the logo (perfectly matched with SVG colors) */
.logo .text-gradient {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.15em;
    margin-right: -0.15em;
}

.nav-links {
    flex: 0 0 auto;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links .btn {
    margin-left: 14px;
    padding: 11px 24px;
    font-size: 0.98rem;
    border-radius: 10px;
    white-space: nowrap;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
    font-size: 1.06rem;
    padding: 4px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-socials {
    justify-self: center;
    flex: 0 0 auto;
    display: flex !important;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: none;
}

.nav-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.28rem !important;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
    width: 36px;
    height: 36px;
}

.nav-social-link i {
    font-size: 1.28rem !important;
}

.nav-social-link:hover {
    color: var(--brand-primary) !important;
    transform: scale(1.2);
}

.nav-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
}

.nav-actions svg {
    vertical-align: middle !important;
    display: block !important;
}

.nav-social-link, .theme-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
}

.nav-social-link i, .theme-btn i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.theme-btn {
    justify-self: end;
    background: transparent;
    border: none;
    color: var(--theme-toggle-color);
    font-size: 1.35rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.theme-btn:hover {
    transform: scale(1.2);
}

.booking-btn {
    margin-left: 2rem;
}

/* 3-line Hamburger matching Casa La Constanța */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    box-sizing: content-box;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
    transition: transform 0.2s ease;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.hamburger.active span {
    background: var(--brand-primary) !important;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.75px) rotate(45deg) !important;
}

.hamburger.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.75px) rotate(-45deg) !important;
}

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

/* --- Floating Corner Mobile Menu Dropdown Card --- */
.mobile-menu {
    position: fixed;
    top: 76px;
    right: 20px;
    width: min(280px, calc(100vw - 32px));
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.25), 0 0 25px rgba(59, 130, 246, 0.12);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.92) translateY(-12px);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.mobile-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 4.5px solid transparent;
    -webkit-tap-highlight-color: transparent;
}

.mobile-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2.5px;
    background: var(--brand-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.mobile-link i {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: transform 0.2s ease, color 0.2s ease;
    opacity: 0.7;
}

.mobile-link.active {
    color: var(--brand-primary) !important;
    font-weight: 700;
    background: transparent !important;
    border-left-color: transparent !important;
}

.mobile-link.active::after {
    transform: scaleX(1) !important;
}

.mobile-link.active i {
    color: var(--brand-primary);
    opacity: 1;
}

.mobile-link:active,
.mobile-link.tapping {
    background: var(--badge-bg) !important;
    border-left-color: var(--brand-primary) !important;
    color: var(--brand-primary) !important;
}

.mobile-link:active::after,
.mobile-link.tapping::after {
    transform: scaleX(0) !important;
}

.mobile-link:active i,
.mobile-link.tapping i {
    color: var(--brand-primary);
    transform: translateX(3px);
    opacity: 1;
}

.mobile-menu-cta {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.mobile-menu-cta .btn {
    width: 100%;
    border-radius: 12px;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Hero Section --- */
.hero {
    padding: 160px 0 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Acordă mai mult spațiu textului */
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--badge-bg);
    color: var(--badge-text);
    border: 1px solid var(--badge-border);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.2rem, 6.5vw, 4.5rem); /* Scalare și mai fluidă pentru ecrane mici */
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.serif-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: normal;
}

.title-block {
    display: block;
    margin-top: 10px;
}

.hero-title .title-block:first-child {
    margin-top: 0;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 560px; /* Mai mult spațiu pentru textul descriptiv */
}

.hero-content,
.hero-visual {
    opacity: 1;
    transform: none;
}

.hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
}

/* Glass Card / Mockup */
.glass-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mockup-card {
    position: relative;
}

.mockup-header {
    background: var(--badge-bg);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: var(--color-danger); }
.dot.yellow { background: var(--color-warning); }
.dot.green { background: var(--color-success); }

.mockup-body {
    padding: 24px;
}

.code-line {
    height: 12px;
    background: var(--border-color);
    border-radius: 4px;
    margin-bottom: 12px;
    opacity: 0.75;
}
.code-line.w-70 { width: 70%; }
.code-line.w-40 { width: 40%; }
.code-line.w-90 { width: 90%; }
.code-line.w-60 { width: 60%; }
.code-line.indent { margin-left: 20px; }

.chart-mockup {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
    margin-top: 32px;
    border-bottom: 1px solid var(--border-color);
}

.bar {
    flex: 1;
    background: var(--gradient-brand);
    border-radius: 4px 4px 0 0;
    opacity: 0.9;
}
.bar.h-30 { height: 30%; }
.bar.h-60 { height: 60%; }
.bar.h-40 { height: 40%; }
.bar.h-80 { height: 80%; }
.bar.h-50 { height: 50%; }

/* --- About Us Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.about-max-content {
    max-width: 800px;
}

.about-text-block {
    text-align: left;
    margin-top: 24px;
}

.about-text-block p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 90px;
}

.pillar-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-alt);
    box-shadow: var(--shadow-sm);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--badge-bg);
    color: var(--brand-primary);
    border: 1px solid var(--badge-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pillar-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pillar-meta {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-primary);
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px 36px 32px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--badge-bg);
    color: var(--brand-primary);
    border: 1px solid var(--badge-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-primary);
    flex-shrink: 0;
}

.service-product-link {
    margin-top: 28px;
    margin-bottom: 4px;
    width: 100%;
    padding: 13px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    background: transparent;
    transition: all 0.25s ease;
}

.service-product-link:hover {
    border-color: var(--brand-primary);
    background: var(--badge-bg);
    color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* --- Google Reviews Section --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.review-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    width: 100%;
}

.reviewer-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.5rem;
}

.reviewer-avatar picture {
    display: block;
    width: 100%;
    height: 100%;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-main);
}

.reviewer-link {
    display: block;
    font-size: 0.85rem;
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 0;
    transition: opacity 0.2s;
}

.reviewer-link:hover {
    opacity: 0.85;
    text-decoration: underline;
}

.reviewer-info .review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-top: 1px;
}

.review-rating {
    display: flex;
    gap: 4px;
    color: var(--color-warning);
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-meta {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: auto;
}

.verified-tag {
    font-size: 0.85rem;
    color: var(--color-success);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.google-rating-badge {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.google-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- Tech Stack --- */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.tech-item:hover {
    color: var(--text-main);
}

.tech-item i {
    font-size: 2.5rem;
}

.tech-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-alt);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-card-method:hover {
    transform: translateY(-4px);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
}

/* Click / Press Animation (Apasare) */
.contact-card-method:active {
    transform: scale(0.96) translateY(0) !important;
    box-shadow: var(--shadow-sm);
    border-color: var(--brand-primary);
}

.contact-card-method .method-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: var(--badge-bg);
    color: var(--brand-primary);
    border: 1px solid var(--badge-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-card-method:hover .method-icon {
    transform: scale(1.12);
}

.contact-card-method:active .method-icon {
    transform: scale(0.95);
}

.method-content {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-primary);
    margin-bottom: 4px;
    line-height: 1.2;
}

.method-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

/* --- Form Success Message & Trimite Iar Button --- */
.form-success-message {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: fadeInScale 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--badge-bg);
    color: var(--color-success);
    border: 2px solid var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 4px;
}

.form-success-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.form-success-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 420px;
    margin: 0 0 12px 0;
}

#btn-send-again {
    margin-top: 14px;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 9999px;
    cursor: pointer;
    animation: fadeInSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: all 0.25s ease;
}

#btn-send-again:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-2px);
}

#btn-send-again:active {
    transform: scale(0.97);
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clean-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--input-placeholder);
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.tag-checkbox {
    cursor: pointer;
}

.tag-checkbox input {
    display: none !important;
}

.tag-checkbox span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.tag-checkbox input:checked + span {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.35);
}

.tag-checkbox:hover span {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* --- Footer --- */
.footer {
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 24px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.social-icon-link {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .social-icon-link:hover {
        color: #ffffff;
        background: var(--gradient-brand);
        border-color: transparent;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
    }
}

.footer-links h3 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: color 0.2s;
}

@media (hover: hover) {
    .footer-links a:hover {
        color: var(--text-main);
    }

    .nav-social-link:hover {
        color: var(--text-main) !important;
    }
}

.company-subtext {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 4px;
    opacity: 0.85;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-badges {
    display: flex;
    gap: 16px;
    align-items: center;
}

.badge-link {
    display: inline-flex;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 6px;
}

@media (hover: hover) {
    .badge-link:hover {
        transform: translateY(-2px);
    }
}

.badge-link:active {
    transform: scale(0.95) !important;
}

.footer-badges img {
    height: 48px;
    width: auto;
    border-radius: 6px;
    display: block;
    background: transparent;
}

.footer-creator {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    will-change: transform;
    transition: transform 0.3s, background-color 0.3s;
    animation: wa-attention 6s ease-in-out infinite;
}

/* Pulsing ripple wave behind the button */
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #25D366;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    will-change: transform, opacity;
    animation: wa-pulse 2.5s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px) !important;
    background-color: #20ba5a;
    animation-play-state: paused;
    box-shadow: 0 8px 20px rgba(32, 186, 90, 0.5);
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes wa-attention {
    0%, 90%, 100% {
        transform: translateY(0) scale(1);
    }
    92% {
        transform: translateY(-5px) scale(1.06) rotate(-6deg);
    }
    94% {
        transform: translateY(-5px) scale(1.06) rotate(6deg);
    }
    96% {
        transform: translateY(-2px) scale(1.06) rotate(-3deg);
    }
    98% {
        transform: translateY(-2px) scale(1.06) rotate(3deg);
    }
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.2s;
}

/* --- UI Polish (Design "Mai Misto") --- */
.grid-bg {
    background-image: 
        linear-gradient(to right, var(--border-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--border-color) 1px, transparent 1px);
    background-size: 50px 50px;
    background-attachment: fixed;
    /* Make the grid very subtle */
    background-color: var(--bg-main);
    background-blend-mode: overlay;
    position: relative;
}

/* Subtle mask to fade grid at the edges */
.grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-main) 100%);
    pointer-events: none;
    z-index: -1;
}

.hover-glow {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-glow:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15), 
                0 0 20px rgba(59, 130, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}

.glow-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

.hero-glow {
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.15),
                0 0 100px rgba(139, 92, 246, 0.1) inset;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.text-gradient-icon {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-badge {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Make mockup code lines glow slightly */
.glow-line { background: rgba(59, 130, 246, 0.6); box-shadow: 0 0 10px rgba(59, 130, 246, 0.4); }
.glow-line-alt { background: rgba(139, 92, 246, 0.6); box-shadow: 0 0 10px rgba(139, 92, 246, 0.4); }
.bar-glow { background: var(--brand-secondary); box-shadow: 0 0 15px var(--brand-secondary); opacity: 1 !important; }
.mockup-text { font-family: monospace; font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.ml-auto { margin-left: auto; }

/* --- Flow Diagram Mockup (Hero Right) --- */
.diagram-window {
    background: var(--bg-alt) !important;
    border: 1px solid var(--border-color);
}

.diagram-body {
    padding: 30px 20px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-map {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
}

.map-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 12px;
    z-index: 2;
}

.triggers-col, .outputs-col {
    width: 110px;
}

.center-col {
    justify-content: center;
    width: 100px;
}

.map-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.map-node i {
    font-size: 1.1rem;
}

.map-node.node-trigger:hover, .map-node.node-output:hover {
    transform: translateY(-2px);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
}

/* Center core node styling */
.map-node.node-core {
    position: relative;
    width: 100%;
    padding: 20px 10px;
    border: 1px solid var(--border-color);
    box-shadow: none;
    background: var(--bg-alt);
    border-radius: 16px;
}

.map-node.node-core i {
    font-size: 1.8rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
}

.map-node.node-core span {
    font-size: 0.8rem;
    z-index: 2;
}

.core-glow-effect {
    display: none;
}

@keyframes corePulse {
    0% { transform: scale(0.98); opacity: 0.03; }
    100% { transform: scale(1.02); opacity: 0.08; }
}

/* SVG Connector layout */
.connector-svg-unified {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connector-svg-unified path.bg-line {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 1.5;
    opacity: 0.6;
}

.connector-svg-unified path.flow-line {
    fill: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-dasharray: 8 40;
    animation: flowData 2.5s linear infinite;
}

.connector-svg-unified path.flow-line:nth-of-type(2) {
    stroke: var(--brand-primary);
}

.connector-svg-unified path.flow-line:nth-of-type(4) {
    stroke: var(--brand-secondary);
}

.connector-svg-unified path.flow-line:nth-of-type(6) {
    stroke: var(--brand-primary);
}

@keyframes flowData {
    from {
        stroke-dashoffset: 48;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* --- Concept Section Styles --- */
.concept-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.concept-step {
    padding: 40px 32px;
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
}

.concept-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-primary);
}

.concept-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.concept-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .container,
    .hero-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        gap: 1rem !important;
    }

    .logo {
        margin-right: 0 !important;
    }

    .desktop-only { display: none !important; }
    .hamburger { 
        display: flex !important;
    }
    
    .nav-actions {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-left: auto !important;
        margin-right: 1rem !important;
        width: auto !important;
    }
    
    .nav-actions::before {
        display: none !important;
    }
    
    .nav-socials {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .theme-btn {
        margin: 0 !important;
    }
    
    .booking-btn {
        margin-left: 0.5rem !important;
    }
    
    .checkbox-group {
        padding: 0 8px;
    }

    .hero-container,
    .about-grid,
    .contact-grid,
    .footer-top,
    .services-grid,
    .concept-steps {
        grid-template-columns: 1fr;
    }
    
    .about-pillars {
        margin-top: 0;
    }
    
    .hero {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .section-header-split {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .section-header-split .text-left {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container,
    .hero-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .nav-container {
        padding: 12px 14px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }
    
    .logo {
        font-size: 1.32rem !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .logo svg {
        width: 32px !important;
        height: 32px !important;
    }
    
    .nav-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1.75rem !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .booking-btn {
        display: none !important;
    }

    .nav-socials {
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1.5rem !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
    }
    
    .nav-social-link {
        font-size: 1.3rem !important;
        padding: 2px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .nav-social-link i {
        font-size: 1.3rem !important;
    }
    
    .theme-btn {
        font-size: 1.35rem !important;
        flex-shrink: 0 !important;
        padding: 2px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
    }
    
    .hamburger {
        width: 26px;
        height: 18px;
        flex-shrink: 0 !important;
        margin: 0 !important;
        display: flex !important;
    }
    
    .mobile-menu {
        top: 115px;
        right: 16px;
        max-height: calc(100vh - 130px);
    }

    .hero-title { font-size: 2.6rem; }
    .reviews-grid,
    .portfolio-grid { grid-template-columns: 1fr; }
    .clean-form { padding: 24px; }
    .section-padding { padding: 60px 0; }

    /* Diagram mobile optimizations: compact center node so lines are fully visible */
    .diagram-body {
        height: 280px !important;
        padding: 12px 6px !important;
    }
    .triggers-col, .outputs-col {
        width: 96px !important;
    }
    .center-col {
        width: 70px !important;
        justify-content: center !important;
    }
    .map-node {
        padding: 8px 4px !important;
        font-size: 0.68rem !important;
        border-radius: 10px !important;
    }
    .map-node i {
        font-size: 0.95rem !important;
    }
    .map-node.node-core {
        padding: 10px 4px !important;
        border-radius: 12px !important;
    }
    .map-node.node-core i {
        font-size: 1.25rem !important;
    }
    .map-node.node-core span {
        font-size: 0.68rem !important;
    }
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 16px !important;
    }
    .footer-badges {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }
    .hero-buttons .btn {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    .hero-buttons .btn-large {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container,
    .hero-container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .nav-container {
        padding: 10px 10px !important;
    }
    .logo {
        font-size: 1.24rem !important;
        gap: 5px !important;
        flex-shrink: 0 !important;
    }
    .logo svg {
        width: 24px !important;
        height: 24px !important;
    }
    .nav-actions {
        gap: 1.5rem !important;
        margin: 0 auto !important;
    }
    .nav-socials {
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1.25rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
    }
    .nav-social-link {
        font-size: 1.22rem !important;
        padding: 1px !important;
        min-width: 26px !important;
        min-height: 26px !important;
    }
    .nav-social-link i {
        font-size: 1.22rem !important;
    }
    .theme-btn {
        font-size: 1.28rem !important;
        flex-shrink: 0 !important;
        padding: 1px !important;
        min-width: 26px !important;
        min-height: 26px !important;
        margin: 0 !important;
    }
    .hamburger {
        width: 24px;
        height: 17px;
        flex-shrink: 0 !important;
    }
    .mobile-menu {
        top: 110px;
        right: 10px;
        width: min(280px, calc(100vw - 20px));
        max-height: calc(100vh - 125px);
        overflow-y: auto;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .diagram-body {
        height: 260px !important;
        padding: 8px 4px !important;
    }
    .triggers-col, .outputs-col {
        width: 86px !important;
    }
    .center-col {
        width: 62px !important;
    }
    .map-node {
        padding: 6px 3px !important;
        font-size: 0.62rem !important;
        border-radius: 8px !important;
    }
    .map-node i {
        font-size: 0.85rem !important;
    }
    .map-node.node-core {
        padding: 8px 3px !important;
        border-radius: 10px !important;
    }
    .map-node.node-core i {
        font-size: 1.15rem !important;
    }
    .map-node.node-core span {
        font-size: 0.62rem !important;
    }
    .review-card {
        padding: 20px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    .faq-question {
        padding: 16px 20px;
        font-size: 1rem;
    }
    .faq-answer-inner {
        padding: 0 20px 20px 20px;
        font-size: 0.9rem;
    }
    .service-card,
    .concept-step {
        padding: 28px 20px;
    }
    .pillar-card {
        padding: 16px;
    }
    .clean-form {
        padding: 16px;
    }
    .contact-grid {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    .contact-card-method {
        padding: 14px 16px !important;
        gap: 12px !important;
        border-radius: 12px !important;
    }
    .contact-card-method .method-icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        font-size: 1.15rem !important;
        border-radius: 10px !important;
    }
    .method-value {
        font-size: 1.05rem !important;
        word-break: break-all !important;
    }
    .method-label {
        font-size: 0.72rem !important;
        letter-spacing: 1.5px !important;
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: 8px 6px !important;
    }
    .logo {
        font-size: 1.12rem !important;
        gap: 4px !important;
        flex-shrink: 0 !important;
    }
    .logo svg {
        width: 20px !important;
        height: 20px !important;
    }
    .nav-actions {
        gap: 1.25rem !important;
        margin: 0 auto !important;
    }
    .nav-socials {
        gap: 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex: 0 0 auto !important;
    }
    .nav-social-link {
        font-size: 1.1rem !important;
        min-width: 24px !important;
        min-height: 24px !important;
    }
    .nav-social-link i {
        font-size: 1.1rem !important;
    }
    .theme-btn {
        font-size: 1.18rem !important;
        min-width: 24px !important;
        min-height: 24px !important;
        margin: 0 !important;
    }
    .triggers-col, .outputs-col {
        width: 78px !important;
    }
    .center-col {
        width: 54px !important;
    }
    .map-node.node-core i {
        font-size: 1rem !important;
    }
    .map-node.node-core span {
        font-size: 0.58rem !important;
    }
}

/* =========================================
   NEW PREMIUM FEATURES (SCROLL & FAQ & UX)
   ========================================= */

/* --- Navbar Scroll State & Scrollspy Active --- */
.navbar.navbar-scrolled {
    padding: 0;
    box-shadow: var(--shadow-md);
}

.navbar.navbar-scrolled .nav-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-link.active {
    color: var(--text-main);
}

.nav-link.active::after {
    width: 100%;
}

/* --- FAQ Section & Accordion --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--brand-primary);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--brand-primary);
    font-size: 0.95rem;
}

/* Accordion Open State for Icon */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Form Validation Feedbacks --- */
.form-group input.valid,
.form-group textarea.valid {
    border-color: var(--color-success) !important;
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.2) !important;
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: var(--color-danger) !important;
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.2) !important;
}

/* --- Mobile Menu Active Link Highlight --- */
.mobile-link.active {
    color: var(--brand-primary) !important;
    font-weight: 700;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--brand-primary), var(--brand-secondary));
    border-radius: 9999px;
    border: 2px solid var(--bg-main);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-secondary);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  animation: pulse-wa 2s infinite;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background-color: #20ba5a;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
}

