

:root {
    --bg-body: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-elevated: #f1f5f9;
    
    --primary: #1d4ed8; 
    --primary-hover: #1e40af;
    --primary-light: #eff6ff;
    --primary-border: #bfdbfe;
    --accent: #0284c7;

    --footer-bg: #0b0f19; 
    --footer-card: #131b2e;
    --footer-border: rgba(255, 255, 255, 0.08);
    --footer-text: #94a3b8;
    --footer-heading: #f8fafc;

    --border: #e2e8f0;
    --border-subtle: #f1f5f9;

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-subtle: #94a3b8;

    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --container: 1360px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-header: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    background-color: var(--footer-bg); 
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    font-size: 14.5px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    letter-spacing: -0.01em;
}

main {
    flex: 1 0 auto;
    width: 100%;
    background-color: var(--bg-body);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    color: var(--primary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

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

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
    line-height: 1.3;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
}

.btn-outline {
    background: #ffffff;
    border-color: var(--border);
    color: var(--text-main);
}
.btn-outline:hover {
    background: var(--bg-subtle);
    border-color: #cbd5e1;
    color: var(--text-main);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 12.5px;
    border-radius: var(--radius-xs);
}

.btn-consultation {
    background: var(--primary);
    color: #ffffff;
    border-radius: var(--radius-full);
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2);
}
.btn-consultation:hover {
    background: var(--primary-hover);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(29, 78, 216, 0.3);
    transform: translateY(-1px);
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 76px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-header);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}

.brand-badge {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #ffffff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.brand-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-main);
    border-radius: var(--radius-xs);
    transition: var(--transition);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--bg-subtle);
}

.dropdown-chevron {
    width: 11px;
    height: 11px;
    opacity: 0.55;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    margin-left: 3px;
}

.nav-item:hover .dropdown-chevron {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary);
}

.dropdown-menu-wrapper {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 250px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 12px;
    box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.1), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
    padding: 6px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.18s ease;
    z-index: 1050;
}

.dropdown-menu-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-item:hover .dropdown-menu-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dropdown-item {
    list-style: none;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.15s ease;
    background: transparent;
}

.dropdown-link:hover {
    background: #f8fafc;
}

.dropdown-icon-box {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.dropdown-link:hover .dropdown-icon-box {
    background: #eff6ff;
    color: var(--primary);
    transform: scale(1.05);
}

.dropdown-text-box {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
}

.dropdown-title {
    font-size: 12.5px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.25;
    transition: color 0.15s ease;
}

.dropdown-link:hover .dropdown-title {
    color: var(--primary);
}

.dropdown-desc {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-arrow-indicator {
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.15s ease;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.dropdown-link:hover .dropdown-arrow-indicator {
    opacity: 1;
    transform: translateX(0);
}

.header-action {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text-main);
}

.page-header {
    background: radial-gradient(circle at 50% 0%, rgba(29, 78, 216, 0.05) 0%, #ffffff 70%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 56px 0 44px;
    text-align: center;
}

.page-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--text-subtle);
    margin-bottom: 14px;
}

.page-breadcrumbs a {
    color: var(--text-muted);
}
.page-breadcrumbs a:hover {
    color: var(--primary);
}

.page-header h1 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #09090b;
    margin-bottom: 12px;
}

.page-header .lead {
    font-size: 15.5px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-body {
    padding: 64px 0 80px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 72px;
}

.about-vision-card {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 72px;
}

.value-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary-border);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0 20px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-main);
}

.service-feature-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.tech-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-main);
    margin: 2px;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-card-info {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.contact-card-form {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-card);
}

.form-group-custom {
    margin-bottom: 18px;
}

.form-label-custom {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-control-custom {
    width: 100%;
    padding: 10px 14px;
    font-size: 13.5px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    font-family: inherit;
    transition: var(--transition);
    color: var(--text-main);
    background: #ffffff;
}

.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.post-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.post-card-img {
    height: 180px;
    background: var(--bg-elevated);
    overflow: hidden;
}

.post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-img img {
    transform: scale(1.04);
}

.post-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-subtle);
    margin-bottom: 10px;
}

.post-category-badge {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-xs);
    text-transform: uppercase;
}

.post-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
}

.post-card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.18s ease;
}

.post-card-title a:hover {
    color: var(--primary);
}

.post-card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.single-post-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 56px 20px 80px;
}

.single-post-header {
    text-align: center;
    margin-bottom: 32px;
}

.single-post-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: #09090b;
    margin-top: 12px;
}

.single-post-featured-img {
    margin: 32px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.single-post-content {
    font-size: 16px;
    line-height: 1.85;
    color: #334155;
}

.single-post-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.single-post-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.single-post-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 28px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.single-post-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 24px;
    margin-bottom: 10px;
}

.single-post-content p {
    margin-bottom: 22px;
    line-height: 1.85;
}

.single-post-content strong {
    color: #0f172a;
    font-weight: 700;
}

.single-post-content ul, 
.single-post-content ol {
    margin-bottom: 24px;
    padding-left: 28px;
    line-height: 1.8;
}

.single-post-content li {
    margin-bottom: 8px;
}

.single-post-content blockquote {
    margin: 28px 0;
    padding: 16px 20px;
    background: #f8fafc;
    border-left: 4px solid #cbd5e1;
    border-radius: 0 8px 8px 0;
    color: #334155;
    font-style: italic;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 24px 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.single-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 14.5px;
}

.single-post-content table th,
.single-post-content table td {
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    text-align: left;
}

.single-post-content table th {
    background: #f8fafc;
    font-weight: 600;
    color: #0f172a;
}

.callout-box {
    display: flex;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-md, 10px);
    border: 1px solid;
    margin: 28px 0;
}

.callout-box.callout-info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1e40af;
}

.callout-box.callout-success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.callout-box.callout-warning {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.callout-box.callout-note {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #334155;
}

.callout-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.callout-content {
    flex: 1;
}

.callout-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.callout-content p {
    margin: 0 !important;
    font-size: 13.5px;
    line-height: 1.6;
}

.editorial-quote {
    border-left: 3px solid var(--primary, #1d4ed8);
    padding: 12px 0 12px 20px;
    margin: 32px 0;
    background: var(--bg-subtle, #f8fafc);
    border-radius: 0 var(--radius-sm, 6px) var(--radius-sm, 6px) 0;
}

.editorial-quote p {
    font-size: 16px;
    font-style: italic;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 8px !important;
}

.editorial-quote cite {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted, #64748b);
    font-style: normal;
}

.cta-button-block {
    margin: 32px 0;
    text-align: center;
}

.cta-button-block.align-left { text-align: left; }
.cta-button-block.align-center { text-align: center; }
.cta-button-block.align-right { text-align: right; }

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full, 9999px);
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn-cta.btn-primary {
    background: #0f172a;
    color: #ffffff;
    border: 1px solid #0f172a;
}

.btn-cta.btn-secondary {
    background: var(--primary, #1d4ed8);
    color: #ffffff;
    border: 1px solid var(--primary, #1d4ed8);
}

.btn-cta.btn-outline {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.grid-columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 28px 0;
}

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

.section-divider {
    border: 0;
    height: 1px;
    background: var(--border, #e2e8f0);
    margin: 40px 0;
}

figure.align-center { text-align: center; margin: 28px 0; }
figure.align-left { text-align: left; margin: 28px 0; }
figure.align-right { text-align: right; margin: 28px 0; }
figure.align-full { width: 100%; margin: 28px 0; }

.hero-wrapper {
    padding: 80px 0 60px;
    background: radial-gradient(circle at 50% 10%, rgba(29, 78, 216, 0.04) 0%, transparent 60%);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

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

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: #ffffff;
    border: 1px solid var(--border);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
    animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
    0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(5, 150, 105, 0); }
    100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.035em;
    color: #09090b;
    margin-bottom: 18px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #1d4ed8 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-bar {
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    color: var(--text-subtle);
    font-size: 13px;
    font-weight: 500;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-main);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.services-section {
    padding: 80px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.metrics-section {
    padding: 60px 0;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.metric-card {
    padding: 20px;
}

.metric-num {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.metric-label {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-muted);
}

.why-section {
    padding: 80px 0;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-subtle);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.why-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
}

.why-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 24px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 36px;
    margin-bottom: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-brand-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.footer-brand-desc {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--footer-text);
    margin-bottom: 18px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--footer-border);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-col-title {
    color: var(--footer-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 6px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu-list a {
    color: var(--footer-text);
    font-size: 12.5px;
    font-weight: 400;
    transition: var(--transition);
}

.footer-menu-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--footer-text);
}

.contact-item a {
    color: var(--footer-text);
}
.contact-item a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid var(--footer-border);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal-links a {
    color: #64748b;
}

.footer-legal-links a:hover {
    color: #cbd5e1;
}

.wa-floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: #ffffff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
}

.wa-floating-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

@media (max-width: 1024px) {
    .services-grid, .blog-grid, .values-grid, .workflow-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid, .about-intro-grid, .contact-layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    .page-header h1 {
        font-size: 26px;
    }
    .services-grid, .blog-grid, .metrics-grid, .values-grid, .workflow-steps-grid {
        grid-template-columns: 1fr;
    }
    .main-navigation {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    }

    .main-navigation.open {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .nav-link {
        width: 100%;
        padding: 10px 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 14px;
        display: flex;
    }

    .header-action {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
