:root {
  --sys-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --bg-main: #FFFFFF;
  --bg-alt: #F8FAFC; 
  --bg-dark: #0F172A; 
  --bg-darker: #020617;
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-light: #64748B;
  --border-light: #E2E8F0;
  --border-dark: rgba(255, 255, 255, 0.15);
  --accent: #2563EB;
  --accent-light: #3B82F6;
  --accent-cyan: #0EA5E9;
  --accent-green: #10B981;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.15);
  --gradient-primary: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
  --gradient-dark: linear-gradient(135deg, #0F172A 0%, #020617 100%);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x:clip; width: 100%; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sys-font); color: var(--text-body); background-color: var(--bg-main); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x:clip; width: 100%; position: relative; display: flex; flex-direction: column; min-height: 100vh; }
.site-wrapper { overflow-x: clip; position: relative; width: 100%; display: flex; flex-direction: column; flex-grow: 1; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }

/* Readability Hard-overrides for Dark Backgrounds */
.dark-theme, .section-dark, .hero, .subpage-hero, .cta-section, .footer, .svc-block.dark-mode, .card-solid.dark { 
  color: #F8FAFC !important; 
}
.dark-theme h1, .dark-theme h2, .dark-theme h3, .dark-theme h4, .dark-theme h5, .dark-theme h6,
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5, .section-dark h6,
.hero h1, .hero h2, .hero h3, .hero h4, .hero h5, .hero h6,
.subpage-hero h1, .subpage-hero h2, .subpage-hero h3, .subpage-hero h4, .subpage-hero h5, .subpage-hero h6,
.cta-section h1, .cta-section h2, .cta-section h3, .cta-section h4, .cta-section h5, .cta-section h6,
.svc-block.dark-mode h1, .svc-block.dark-mode h2, .svc-block.dark-mode h3, .svc-block.dark-mode h4,
.card-solid.dark h4,
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6 { 
  color: #FFFFFF !important; 
}
.dark-theme p, .section-dark p, .hero p, .subpage-hero p, .cta-section p, .footer p, .svc-block.dark-mode p, .card-solid.dark p, .footer-col p { 
  color: #E2E8F0 !important; 
}
.dark-theme .section-tag, .section-dark .section-tag, .hero .section-tag, .subpage-hero .section-tag, .cta-section .section-tag {
  color: var(--accent-cyan) !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { color: var(--text-dark); font-weight: 800; line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 20px; display: block; word-wrap: break-word; overflow-wrap: break-word; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.1; margin-bottom: 28px; }
h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 24px; color: var(--text-dark); line-height: 1.2; }
h3 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 20px; line-height: 1.3; }
h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 16px; }
h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; letter-spacing: 0.5px; }
p { margin-bottom: 1.5rem; font-size: 1.15rem; line-height: 1.65; max-width: 100%; }

.text-gradient { background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-gradient-blue { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Layout & Containers */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-alt { background-color: var(--bg-alt); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.section-dark { background-color: var(--bg-dark); }

/* Background Overlays & Details */
.bg-grid-light { background-color: var(--bg-alt); }
.bg-grid-dark { background-color: var(--bg-dark); }
.bg-glow-primary { position: absolute; width: 600px; max-width: 100%; height: 600px; background: rgba(37, 99, 235, 0.15); filter: blur(100px); border-radius: 50%; pointer-events: none; mix-blend-mode: screen; z-index: 1; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; height: 72px; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-light); z-index: 1000; display: flex; align-items: center; transition: all 0.3s ease; }
.header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 40px; }
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 32px; width: auto; display: block; object-fit: contain; }
.footer-logo { display: block; margin-bottom: 24px; text-decoration: none; }
.footer-logo-img { height: 40px; width: auto; display: block; object-fit: contain; opacity: 0.92; transition: opacity 0.2s ease; }
.footer-logo:hover .footer-logo-img { opacity: 1; }
/* Form feedback — always visible when shown */
.form-feedback { display: none; border-radius: 10px; padding: 18px 22px; margin: 0 0 20px; font-weight: 600; font-size: 0.97rem; line-height: 1.6; }
.form-feedback.visible { display: block !important; animation: feedbackSlide 0.3s ease; }
.form-feedback-success { background: #D1FAE5; border: 1.5px solid #34D399; color: #065F46; }
.form-feedback-error { background: #FEF2F2; border: 1.5px solid #F87171; color: #7F1D1D; }
@keyframes feedbackSlide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.nav-menu { display: flex; align-items: center; gap: 28px; flex-shrink: 1; min-width: 0; }
.nav-link { font-weight: 600; font-size: 0.925rem; color: var(--text-dark); padding: 8px 0; transition: color 0.2s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-cta { display: block; flex-shrink: 0; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.85rem; }
.mobile-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; color: var(--text-dark); }
.mobile-toggle svg { width: 28px; height: 28px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 18px 36px; border-radius: var(--radius-sm); font-weight: 700; font-size: 1.125rem; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 2px solid transparent; gap: 12px; text-align: center; }
.btn-primary { background: var(--gradient-primary); color: #FFFFFF !important; border: none; box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5); filter: brightness(1.1); }
.btn-secondary { background-color: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.3); color: #FFFFFF !important; backdrop-filter: blur(4px); }
.btn-secondary:hover { background-color: #FFFFFF; color: var(--text-dark) !important; transform: translateY(-3px); }
.btn-outline { border-color: var(--border-light); color: var(--text-dark); background: #FFFFFF; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-alt); }

/* Improved Hero Section */
.hero { background: var(--gradient-dark); position: relative; padding: 180px 0 140px; border-bottom: 1px solid var(--border-dark); display: flex; align-items: center; min-height: 80vh; overflow: hidden; }
.hero-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 10; }
.hero-tag { display: inline-flex; align-items: center; padding: 6px 16px; background: rgba(14, 165, 233, 0.15); border: 1px solid rgba(14, 165, 233, 0.3); color: var(--accent-cyan) !important; border-radius: 100px; font-weight: 800; font-size: 0.875rem; margin-bottom: 24px; letter-spacing: 1px; text-transform: uppercase; }
.hero-desc { font-weight: 500; max-width: 650px; margin-bottom: 48px; font-size: 1.25rem; opacity: 0.95; line-height: 1.6; }
.hero-actions { display: flex; gap: 24px; flex-wrap: wrap; }

/* Real Image Premium Setup */
.real-image-container { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.1); background: var(--bg-dark); }
.real-image-container::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top right, rgba(15,23,42,0.6), rgba(37,99,235,0.2)); pointer-events: none; }
.real-image-container img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }
.real-image-float { position: absolute; inset: 0; z-index: 5; pointer-events: none; }

/* Subpage Hero */
.subpage-hero { padding: 180px 0 120px; text-align: center; background: var(--gradient-dark); position: relative; overflow: hidden; border-bottom: 1px solid var(--border-dark); }
.subpage-hero .hero-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 10; }
.subpage-hero .hero-desc { max-width: 660px; margin-left: auto; margin-right: auto; font-size: 1.15rem; line-height: 1.7; opacity: 0.88; }

/* Layout Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 64px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

/* Section Headers */
.section-header { text-align: center; max-width: 800px; margin: 0 auto 72px; position: relative; z-index: 2; }
.section-tag { display: inline-block; font-size: 0.9rem; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }

/* Visual Blocks Banner */
.visual-banner { width: 100%; margin: 60px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-light); background: var(--bg-alt); display: flex; position: relative; }
.visual-banner img { width: 100%; height: 400px; object-fit: cover; }
.visual-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,0.7)); pointer-events: none; }
.visual-banner-text { position: absolute; bottom: 40px; left: 40px; right: 40px; color: #FFFFFF; z-index: 10; }
.visual-banner-text h3 { color: #FFFFFF; font-size: 2rem; margin-bottom: 8px; }

/* Trust Indicators */
.trust-bar-wrapper { padding: 0 24px; margin-top: -60px; position: relative; z-index: 20; }
.trust-bar { background-color: #FFFFFF; border: 1px solid var(--border-light); padding: 48px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 1200px; margin: 0 auto; display: flex; align-items: stretch; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.trust-stat { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; flex: 1; min-width: 200px; position: relative; }
.trust-stat:not(:last-child)::after { content: ''; position: absolute; right: -16px; top: 10%; bottom: 10%; width: 1px; background: var(--border-light); }
.trust-val { font-size: 3.5rem; font-weight: 800; color: var(--text-dark); line-height: 1; margin-bottom: 8px; display: flex; align-items: baseline; gap: 4px; }
.trust-val span { font-size: 1.75rem; color: var(--accent); }
.trust-label { font-size: 1.1rem; font-weight: 700; color: var(--text-body); }

.trust-stat-partners { flex: 2.5; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding-left: 24px; }
.trust-partner-tags { display: flex; gap: 12px; font-weight: 700; font-size: 0.9rem; flex-wrap: wrap; }
.trust-partner-tag { color: #fff; background: var(--accent); padding: 8px 16px; border-radius: 6px; border: none; box-shadow: 0 4px 6px rgba(37,99,235,0.25); transition: all 0.2s; display: inline-flex; align-items: center; justify-content: center; text-align: center; }
.trust-partner-tag.eset { background: var(--accent-cyan); box-shadow: 0 4px 6px rgba(14,165,233,0.25); }
.trust-partner-tag.acronis { background: var(--accent-green); box-shadow: 0 4px 6px rgba(16,185,129,0.25); }
.trust-partner-tag.vmbackup { background: #475569; box-shadow: 0 4px 6px rgba(71,85,105,0.25); }
.trust-partner-tag:hover { transform: translateY(-3px); box-shadow: 0 6px 12px rgba(0,0,0,0.15); filter: brightness(1.1); }

/* Premium Grid Cards */
.card-solid { background: #FFFFFF; border: 1px solid var(--border-light); padding: 48px; border-radius: var(--radius-lg); transition: all 0.3s; height: 100%; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.card-solid:hover { box-shadow: var(--shadow-md); transform: translateY(-8px); border-color: var(--accent-light); }
.card-icon-wrap { width: 64px; height: 64px; background: rgba(37, 99, 235, 0.08); border-radius: var(--radius-md); display: flex; justify-content: center; align-items: center; margin-bottom: 32px; color: var(--accent); }
.card-solid h4 { font-size: 1.5rem; margin-bottom: 16px; color: var(--text-dark); }
.card-solid p { margin-bottom: 0; flex-grow: 1; color: var(--text-body); }

.card-solid.dark { background: rgba(255,255,255,0.03); border-color: var(--border-dark); }
.card-solid.dark:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); }
.card-solid.dark .card-icon-wrap { background: rgba(14, 165, 233, 0.15); color: #0EA5E9; border: none; }

/* Enhanced Service Blocks */
.service-showcase { display: flex; flex-direction: column; gap: 120px; }
.svc-block { display: grid; grid-template-columns: 5fr 6fr; gap: 80px; align-items: center; }
.svc-block:nth-child(even) { direction: rtl; }
.svc-block:nth-child(even) > * { direction: ltr; }
.svc-block.dark-mode { padding: 48px; background: var(--bg-darker); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.1); }
.feature-list { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; margin-top: 24px; }
.feature-item { display: flex; align-items: center; gap: 16px; background: var(--bg-alt); padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--border-light); font-weight: 700; color: var(--text-dark); font-size: 1.1rem; box-shadow: var(--shadow-sm); }
.svc-block.dark-mode .feature-item { background: rgba(255,255,255,0.05); border-color: var(--border-dark); color: #FFFFFF; }
.feature-icon { width: 32px; height: 32px; color: var(--accent); flex-shrink: 0; }
.svc-block.dark-mode .feature-icon { color: var(--accent-cyan); }

/* FAQ Premium */
.faq-wrap { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; width: 100%; }
.faq-box { margin-bottom: 24px; border-radius: var(--radius-md); background: #FFFFFF; border: 1px solid var(--border-light); overflow: hidden; transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
.faq-box.active { border-color: var(--accent); box-shadow: var(--shadow-md); }
.faq-head { padding: 32px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: transparent; border: none; width: 100%; text-align: left; font-size: 1.25rem; font-weight: 800; color: var(--text-dark); transition: background 0.2s; }
.faq-head:hover { background: var(--bg-alt); }
.faq-icon { width: 24px; height: 24px; color: var(--accent); transition: transform 0.3s; }
.faq-box.active .faq-head { background: var(--bg-alt); color: var(--accent); }
.faq-box.active .faq-icon { transform: rotate(180deg); }
.faq-body { padding: 0 32px; max-height: 0; overflow: hidden; transition: all 0.3s ease; color: var(--text-body); font-size: 1.15rem; font-weight: 500; opacity: 0; }
.faq-box.active .faq-body { padding: 0 32px 32px; max-height: 1000px; opacity: 1; background: var(--bg-alt); }

/* CTA Section Stronger */
.cta-section { background: var(--bg-dark); padding: 140px 0; position: relative; overflow: hidden; text-align: center; border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }
.cta-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 10; background: var(--bg-darker); border: 1px solid rgba(255,255,255,0.15); padding: 80px 48px; border-radius: var(--radius-lg); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8); }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; color: #FFFFFF !important; }
.cta-content p { font-size: 1.25rem; margin-bottom: 40px; color: #E2E8F0 !important; }

/* Contact Form area */
.contact-wrap { display: flex; flex-direction: column; gap: 64px; max-width: 1000px; margin: 0 auto; }
.form-panel { background: #FFFFFF; padding: 48px; border-radius: var(--radius-lg); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.info-panel { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-input { width: 100%; padding: 16px 20px; background: var(--bg-alt); border: 1px solid var(--border-light); border-radius: var(--radius-sm); font-family: var(--sys-font); font-size: 1rem; color: var(--text-dark); transition: all 0.2s; outline: none; }
.form-input:focus { background: #FFFFFF; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); }
textarea.form-input { min-height: 140px; resize: vertical; }
.form-label { display: block; font-weight: 700; margin-bottom: 8px; color: var(--text-body); font-size: 0.9rem; }

.info-item { display: flex; gap: 20px; background: #FFFFFF; padding: 24px; border-radius: var(--radius-md); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); align-items: center; }
.info-icon { flex-shrink: 0; width: 48px; height: 48px; background: rgba(37, 99, 235, 0.08); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--accent); }
.info-content h5 { font-size: 0.85rem; margin-bottom: 4px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.info-content p { color: var(--text-dark); margin-bottom: 0; font-size: 1.1rem; font-weight: 700; line-height: 1.4; }

/* Custom Editable Placeholders */
.editable-placeholder { color: var(--accent); font-weight: 600; font-style: italic; opacity: 0.9; }

/* Premium Map Block */
.map-container { width: 100%; height: 100%; min-height: 300px; border-radius: var(--radius-md); overflow: hidden; position: relative; border: 1px solid var(--border-light); background: var(--bg-alt); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--text-light); }
.map-container iframe { width: 100%; height: 100%; border: none; position: absolute; inset: 0; z-index: 10; display: none; } /* Set display:block when adding real iframe */
.map-placeholder-content { position: relative; z-index: 5; padding: 24px; }
.map-placeholder-content svg { width: 40px; height: 40px; color: var(--accent); margin: 0 auto 12px; }

/* Elegant Lead Capture Popup */
.lead-modal-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(8px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; padding: 24px; }
.lead-modal-overlay.active { opacity: 1; pointer-events: auto; }
.lead-modal { background: #FFFFFF; width: 100%; max-width: 480px; border-radius: var(--radius-lg); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.lead-modal-overlay.active .lead-modal { transform: translateY(0); }
.lead-modal-header { padding: 32px 32px 24px; border-bottom: 1px solid var(--border-light); background: var(--bg-alt); position: relative; }
.lead-modal-title { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.lead-modal-desc { font-size: 0.95rem; color: var(--text-body); margin: 0; }
.lead-modal-close { position: absolute; top: 24px; right: 24px; background: none; border: none; cursor: pointer; color: var(--text-light); padding: 4px; transition: color 0.2s; }
.lead-modal-close:hover { color: var(--text-dark); }
.lead-modal-body { padding: 32px; }

/* Footer - Correct Background & Contrast */
.footer { background: var(--bg-darker); padding: 100px 0 40px; border-top: 1px solid var(--border-dark); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 80px; }
.footer-logo { display: block; margin-bottom: 24px; text-decoration: none; }
.footer-col h5 { color: #FFFFFF !important; font-size: 1rem; margin-bottom: 28px; text-transform: uppercase; letter-spacing: 1px; font-weight:800;}
.footer-links { display: flex; flex-direction: column; gap: 16px; }
.footer-links a, .footer-links span { color: #CBD5E1 !important; transition:color 0.2s; font-weight:500; font-size:1.05rem;}
.footer-links a:hover { color: #FFFFFF !important; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent-light); margin-top: 4px; opacity: 0.9; }
.footer-contact-item span { margin:0; line-height: 1.5; font-size: 0.95rem; color: #CBD5E1 !important; font-weight: normal !important; word-wrap: break-word; text-transform: none; letter-spacing: 0; }
.footer-bottom { border-top: 1px solid var(--border-dark); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; color: #94A3B8 !important; }
.footer-bottom p { margin:0; }

/* ==============================
   SERVICES PAGE — PREMIUM LAYOUT
   ============================== */

/* Service Quick-Nav */
.svc-nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 18px 12px; text-align: center; border-right: 1px solid #E2E8F0; text-decoration: none; transition: background 0.2s, color 0.2s; gap: 8px; }
.svc-nav-item:last-child { border-right: none; }
.svc-nav-item:hover { background: var(--bg-alt); }
.svc-nav-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(37,99,235,0.08); display: flex; align-items: center; justify-content: center; color: var(--accent); transition: background 0.2s; }
.svc-nav-item:hover .svc-nav-icon { background: rgba(37,99,235,0.15); }
.svc-nav-num { display: none; }
.svc-nav-title { font-size: 0.82rem; font-weight: 700; color: var(--text-body); line-height: 1.3; }

/* Section Rhythm */
.svc-section { padding: 100px 0; position: relative; overflow: hidden; }
.svc-light { background: #FFFFFF; }
.svc-dark { background: var(--bg-darker); }
.svc-dark h2, .svc-dark h3, .svc-dark h4 { color: #FFFFFF !important; }
.svc-dark .section-tag { color: var(--accent-cyan) !important; }
.svc-dark p { color: #CBD5E1 !important; }

/* Split Layout */
.svc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.svc-split-reverse { direction: rtl; }
.svc-split-reverse > * { direction: ltr; }

/* Service Image Block */
.svc-split-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.1); }
.svc-split-image img { width: 100%; height: 400px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.svc-split-image:hover img { transform: scale(1.03); }
.svc-split-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.5) 0%, transparent 60%); pointer-events: none; }

/* Image Badge */
.svc-image-badge { position: absolute; bottom: 20px; left: 20px; z-index: 10; display: inline-flex; align-items: center; gap: 8px; background: rgba(15,23,42,0.85); backdrop-filter: blur(8px); color: #fff; padding: 8px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.15); }
.svc-image-badge-green { background: rgba(16,185,129,0.85); border-color: rgba(16,185,129,0.4); }
.svc-image-badge-cyan { background: rgba(14,165,233,0.85); border-color: rgba(14,165,233,0.4); }
.svc-image-badge-slate { background: rgba(71,85,105,0.9); border-color: rgba(255,255,255,0.1); }

/* Service Number — hidden by default, decorative ghost text */
.svc-number { display: none; }
.svc-number-light { display: none; }

/* Bullet List */
.svc-bullets { list-style: none; padding: 0; margin: 20px 0 24px; display: flex; flex-direction: column; gap: 12px; }
.svc-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.97rem; font-weight: 500; color: var(--text-body); line-height: 1.55; }
.svc-bullets-light li { color: #CBD5E1 !important; }
.svc-bullets strong { color: var(--text-dark); }
.svc-bullets-light strong { color: #FFFFFF !important; }

.bullet-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 7px; }
.bullet-dot-cyan { background: var(--accent-cyan); }
.bullet-dot-green { background: var(--accent-green); }

/* Tech Chips */
.svc-tech-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.svc-tech-chip { display: inline-flex; align-items: center; padding: 5px 12px; background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2); color: var(--accent); border-radius: 100px; font-size: 0.8rem; font-weight: 700; }
.svc-tech-chip-dark { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); color: #94A3B8; }

/* Responsive — Services Page */
@media (max-width: 1024px) {
  .svc-split, .svc-split-reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .svc-split-image img { height: 300px; }
  .svc-nav-item { padding: 14px 8px; }
  .svc-nav-title { font-size: 0.78rem; }
}

@media (max-width: 768px) {
  .svc-section { padding: 60px 0; }
  .svc-split-image img { height: 240px; }
  .svc-number { font-size: 2.5rem; }
  [style*="repeat(6,1fr)"] { grid-template-columns: repeat(3,1fr) !important; }
}

/* Responsive adjustments — hamburger menu activates at 1100px */
@media (max-width: 1100px) {
  .hero-layout, .grid-2, .svc-block, .svc-block:nth-child(even) { grid-template-columns: 1fr; gap: 48px; direction: ltr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  /* Switch to hamburger menu */
  .nav-menu { position: absolute; top: 100%; left: 0; right: 0; background: #FFFFFF; flex-direction: column; padding: 24px; gap: 12px; display: none; border-bottom: 1px solid var(--border-light); box-shadow: var(--shadow-md); z-index: 1000; align-items: flex-start; }
  .nav-menu.active { display: flex; }
  .nav-link { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border-light); display: block; font-size: 1.05rem; white-space: normal; }
  .nav-link:last-child { border-bottom: none; }
  .nav-cta { display: flex; width: 100%; justify-content: flex-start; margin-top: 12px; }
  .nav-cta .btn { padding: 14px 24px; font-size: 1rem; }
  .mobile-toggle { display: flex !important; position: relative; z-index: 9999; width: 44px; height: 44px; justify-content: center; align-items: center; background: var(--bg-main); border: 1px solid var(--border-light); border-radius: var(--radius-sm); }
}

@media (max-width: 768px) {
  .nav-menu { position: absolute; top: 100%; left: 0; right: 0; background: #FFFFFF; flex-direction: column; padding: 24px; gap: 12px; display: none; border-bottom: 1px solid var(--border-light); box-shadow: var(--shadow-md); z-index: 1000; align-items: flex-start; }
  .nav-menu.active { display: flex; }
  .nav-link { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border-light); display: block; }
  .nav-link:last-child { border-bottom: none; }
  .mobile-toggle { display: flex !important; position: relative; z-index: 9999; width: 44px; height: 44px; justify-content: center; align-items: center; background: var(--bg-main); border: 1px solid var(--border-light); border-radius: var(--radius-sm); }
  .nav-cta { display: flex; width: 100%; justify-content: flex-start; margin-top: 12px; }
  
  .section { padding: 60px 0; }
  .hero, .subpage-hero { padding: 120px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  
  .trust-bar-wrapper { margin-top: -30px; }
  .trust-bar { flex-direction: column; padding: 32px 24px; gap: 32px; align-items: center; }
  .trust-stat { width: 100%; border-right: none; }
  .trust-stat:not(:last-child)::after { right: 10%; left: 10%; bottom: -16px; top: auto; height: 1px; width: auto; }
  .trust-stat-partners { padding-left: 0; align-items: center; text-align: center; }
  .trust-partner-tags { justify-content: center; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 32px; }
  .svc-block { gap: 32px; }
  
  .contact-wrap { grid-template-columns: 1fr !important; gap: 32px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
  .form-panel, .cta-content { padding: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  
  .visual-banner-text h3 { font-size: 1.5rem !important; }
  .visual-banner-text p { font-size: 1rem !important; }
}
