/* ========== CSS VARIABLES ========== */
:root {
  --primary: #1e40af;
  --primary-light: #3b82f6;
  --primary-dark: #1e3a8a;
  --accent: #059669;
  --accent-light: #34d399;
  --bg: #e8ecf4;
  --bg-alt: #dfe4ee;
  --bg-warm: #e2e7f0;
  --bg-dark: #0f172a;
  --text: #1e293b;
  --text-light: #475569;
  --text-muted: #94a3b8;
  --border: #c8d1e0;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.12), 0 4px 6px rgba(0,0,0,0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-w: 1200px;
  --header-h: 72px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --primary: #3b82f6;
  --primary-light: #60a5fa;
  --primary-dark: #2563eb;
  --accent: #34d399;
  --accent-light: #6ee7b7;
  --bg: #1a1f2e;
  --bg-alt: #232838;
  --bg-warm: #161b27;
  --bg-dark: #0d1117;
  --text: #e2e8f0;
  --text-light: #94a3b8;
  --text-muted: #64748b;
  --border: #2d3748;
  --shadow: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.4), 0 4px 6px rgba(0,0,0,0.2);
}

[data-theme="dark"] .site-header {
  background: rgba(22, 27, 39, 0.9);
  border-bottom-color: var(--border);
}

[data-theme="dark"] .site-header.scrolled {
  background: rgba(22, 27, 39, 0.95);
}

[data-theme="dark"] #hero {
  background: linear-gradient(135deg, #1a2340 0%, #1e2d4a 50%, #162030 100%);
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .contact-form {
  background: var(--bg-alt);
  border-color: var(--border);
}

[data-theme="dark"] .contact-info {
  background: #0d1117;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
  background: var(--bg);
  border-color: var(--border);
  color: var(--text);
}

[data-theme="dark"] .trust-bar {
  background: #0d1117;
}

[data-theme="dark"] .btn {
  background: var(--primary);
}

[data-theme="dark"] .btn-outline {
  background: transparent;
  color: var(--primary-light);
  border-color: var(--primary-light);
}

[data-theme="dark"] .pricing-card-header {
  background: var(--bg);
}

[data-theme="dark"] .pricing-notes {
  background: var(--bg-alt);
  border-color: var(--border);
}

[data-theme="dark"] #services,
[data-theme="dark"] .pricing-cta,
[data-theme="dark"] #contact { background: #1a1f2e; }

[data-theme="dark"] .pricing-cta-box {
  background: none;
  border-color: transparent;
}
[data-theme="dark"] .pricing-cta-box h2 { color: #ffffff !important; }
[data-theme="dark"] .pricing-cta-box p { color: #e2e8f0 !important; }
[data-theme="dark"] .section-title { color: #ffffff !important; }
[data-theme="dark"] .section-subtitle { color: #e2e8f0 !important; }

[data-theme="dark"] .pricing-page-hero {
  background: linear-gradient(135deg, #1a2340 0%, #1e2d4a 50%, #162030 100%);
}
[data-theme="dark"] .pricing-page-section {
  background: #111827;
}
[data-theme="dark"] .pricing-page-cta {
  background: var(--bg-alt);
  border-color: var(--border);
}

/* Theme Toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  margin-left: 0.75rem;
  font-size: 1.1rem;
}
.theme-toggle:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-warm);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-light); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ========== UTILITY ========== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.skip-link {
  position: absolute; top: -100%; left: 0; background: var(--primary); color: #fff;
  padding: 0.75rem 1.5rem; z-index: 10000; font-weight: 600; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { top: 0; }

/* ========== HEADER ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h);
  display: flex; align-items: center; z-index: 1000;
  background: rgba(226,231,240,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(226,231,240,0.97);
  box-shadow: var(--shadow-md);
}
.header-container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.25rem; color: var(--primary); }
.logo-img { height: 36px; width: auto; display: block; object-fit: contain; }

.main-nav ul { display: flex; gap: 2rem; }
.main-nav .nav-link {
  font-weight: 500; color: var(--text); padding: 0.5rem 0;
  position: relative; transition: color 0.2s;
}
.main-nav .nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--primary); transition: width 0.3s;
}
.main-nav .nav-link:hover { color: var(--primary); }
.main-nav .nav-link:hover::after { width: 100%; }

.lang-switch { display: flex; gap: 0.25rem; margin-left: 1.5rem; }
.lang-switch button, .mobile-lang-switch button {
  padding: 0.35rem 0.75rem; border-radius: 6px; font-weight: 600; font-size: 0.8rem;
  color: var(--text-light); border: 1px solid var(--border); transition: all 0.2s;
}
.lang-switch button.active, .mobile-lang-switch button.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.lang-switch button:hover:not(.active), .mobile-lang-switch button:hover:not(.active) {
  border-color: var(--primary); color: var(--primary);
}
.mobile-lang-switch { display: none; padding: 1rem 0; justify-content: center; gap: 0.5rem; }
.mobile-theme-toggle { display: none; padding: 0.5rem 0; justify-content: center; }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 0.5rem;
  z-index: 1001;
}
.mobile-menu-toggle span {
  width: 24px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */
#hero {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  background: linear-gradient(135deg, #c7d2f0 0%, #d4e4f7 50%, #c8e6d8 100%);
  position: relative; overflow: hidden; min-height: auto;
  display: flex; align-items: center;
}
#hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('../images/hero-pattern.svg') no-repeat center center;
  background-size: cover; opacity: 0.6; pointer-events: none;
}
#hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(30,64,175,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(5,150,105,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(124,58,237,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.hero-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; position: relative; z-index: 2;
}
.hero-content { max-width: 700px; }
.hero-badge {
  display: inline-block; padding: 0.4rem 1rem; border-radius: 20px;
  background: rgba(30,64,175,0.12); color: var(--primary); font-size: 0.85rem;
  font-weight: 600; margin-bottom: 1rem; border: 1px solid rgba(30,64,175,0.2);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15;
  color: var(--text); margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-light);
  margin-bottom: 2rem; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-features {
  display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(30,64,175,0.15);
}
.hero-feature-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.9rem; color: var(--text); font-weight: 500;
}
.hero-feature-icon { font-size: 1rem; }
.hero-decorations {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-deco {
  position: absolute; border-radius: 50%; opacity: 0.12;
}
.hero-deco-1 {
  width: 300px; height: 300px; top: -80px; right: -60px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}
.hero-deco-2 {
  width: 200px; height: 200px; bottom: -40px; left: -40px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}
.hero-deco-3 {
  width: 150px; height: 150px; top: 40%; left: 45%;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  opacity: 0.06;
}

/* ========== HERO VISUAL (Logo + Slideshow) ========== */
.hero-visual {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  min-height: 380px; justify-content: center;
}
.hero-logo {
  display: flex; align-items: center; justify-content: center;
}
.hero-logo img {
  width: auto; height: auto; max-width: 280px; max-height: 140px;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
  animation: logoPulse 3s ease-in-out infinite;
  display: block;
}
  box-shadow: var(--shadow-lg);
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ========== SLIDESHOW ========== */
.hero-slideshow {
  position: relative; width: 100%; max-width: 480px;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg); background: #ffffff;
  border: 1px solid var(--border);
}
.slideshow-track {
  position: relative; width: 100%; padding-bottom: 66.67%; overflow: hidden;
}
.slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: absolute; top: 0; left: 0;
}

/* Slideshow Navigation Dots */
.slideshow-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 0; background: #f1f5f9;
}
.slideshow-dots .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slideshow-dots .dot.active {
  background: var(--primary); transform: scale(1.3);
}
.slideshow-dots .dot:hover:not(.active) {
  background: var(--text-muted);
}

/* Slideshow Prev/Next Buttons */
.slide-btn {
  position: absolute; top: 50%; transform: translateY(-70%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.85); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: background 0.2s, transform 0.2s;
  opacity: 0; z-index: 5;
}
.hero-slideshow:hover .slide-btn { opacity: 1; }
.slide-btn:hover { background: var(--primary); color: #fff; transform: translateY(-70%) scale(1.1); }
.slide-prev { left: 0.75rem; }
.slide-next { right: 0.75rem; }

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--bg-dark); padding: 0.75rem 0;
}
.trust-bar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 0.75rem;
  justify-content: center; text-align: left;
}
.trust-bar-icon {
  font-size: 1.75rem; flex-shrink: 0;
}
.trust-bar-item strong {
  display: block; font-size: 1.1rem; color: #fff; font-weight: 700;
}
.trust-bar-item span {
  font-size: 0.8rem; color: var(--text-muted);
}



/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2rem; border-radius: 30px; font-weight: 600;
  font-size: 1rem; transition: all 0.25s; border: 2px solid transparent;
  background: var(--primary); color: #fff;
}
.btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ========== ABOUT ========== */
#about { padding: 2.5rem 0; background: #dce1ec; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 0.5rem; color: #1e293b; }
.section-subtitle { color: #475569; font-size: 1.1rem; margin-bottom: 1.5rem; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-header { text-align: center; }
.about-logo-img { max-width: 200px; height: auto; margin: 1.5rem auto 0; display: block; object-fit: contain; }
.about-content-side h3 { font-size: 1.3rem; margin-bottom: 1rem; line-height: 1.4; }
.about-content-side p { color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.8; }

/* About Trust Grid (inline styles replaced) */
.about-trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem;
}
.about-trust-item {
  text-align: center; padding: 1rem; background: #ffffff; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.about-trust-item strong {
  display: block; font-size: 1.3rem; color: var(--primary);
}
.about-trust-item span {
  font-size: 0.85rem; color: var(--text-light);
}

/* ========== SERVICES ========== */
#services { padding: 2.5rem 0; background: #dce1ec; }
.section-header { text-align: center; margin-bottom: 1.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; align-items: start; }
.service-card {
  background: #ffffff; border-radius: 16px; border: 1px solid var(--border);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.service-card.card-accent-blue { border-top-color: var(--primary); }
.service-card.card-accent-green { border-top-color: var(--accent); }
.service-card.card-accent-purple { border-top-color: #7c3aed; }
.service-card.card-accent-orange { border-top-color: #ea580c; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-header {
  padding: 2rem; cursor: pointer; position: relative;
}
.service-card-header .service-icon {
  width: 56px; height: 56px; margin-bottom: 1rem;
  background: rgba(30,64,175,0.08); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.service-card-header .service-icon img { width: 32px; height: 32px; min-width: 32px; min-height: 32px; display: block; }
.service-card-header h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card-header p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.expand-hint {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 28px; height: 28px; border-radius: 50%; background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 600; color: var(--primary);
  transition: transform 0.3s, background 0.3s;
}
.service-card.expanded .expand-hint { transform: rotate(45deg); background: var(--primary); color: #fff; }
.service-card-details {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 2rem;
}
.service-card.expanded .service-card-details { max-height: 600px; padding: 0 2rem 2rem; }
.service-card-details h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--primary); }
.service-details li {
  padding: 0.4rem 0; padding-left: 1.25rem; position: relative;
  color: var(--text-light); font-size: 0.9rem;
}
.service-details li::before { content: ''; position: absolute; left: 0; top: 0.85rem; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.service-details li.special-note { color: var(--accent); font-weight: 500; padding-left: 0; }
.service-details li.special-note::before { display: none; }

/* ========== PRICING ========== */
#pricing { padding: 5rem 0; background: #dce1ec; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.pricing-card {
  background: #ffffff; border-radius: 16px; border: 1px solid var(--border);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--primary);
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pricing-card.pricing-accent-blue { border-top-color: var(--primary); }
.pricing-card.pricing-accent-green { border-top-color: var(--accent); }
.pricing-card.pricing-accent-purple { border-top-color: #7c3aed; }
.pricing-card.pricing-accent-orange { border-top-color: #ea580c; }
.pricing-card-header {
  background: #f1f5f9; padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card-header h3 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.pricing-accent-blue .pricing-card-header h3 { color: var(--primary); }
.pricing-accent-green .pricing-card-header h3 { color: var(--accent); }
.pricing-accent-purple .pricing-card-header h3 { color: #7c3aed; }
.pricing-accent-orange .pricing-card-header h3 { color: #ea580c; }
.pricing-card-body { padding: 1.25rem 1.5rem; }
.pricing-list { list-style: none; margin: 0; padding: 0; }
.pricing-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-light); gap: 1rem;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li strong {
  font-weight: 700; color: var(--text); white-space: nowrap;
  font-size: 0.95rem;
}
.pricing-notes {
  text-align: center; margin-top: 2rem; padding: 1.25rem;
  background: #ffffff; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.pricing-notes p {
  font-size: 0.85rem; color: var(--text-light); margin: 0.25rem 0;
}

/* ========== PRICING CTA ========== */
.pricing-cta { padding: 2.5rem 0; background: #dce1ec; }
.pricing-cta-box {
  text-align: center; padding: 3rem 2rem;
  background: none;
  max-width: 600px; margin: 0 auto;
}
.pricing-cta-box h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.75rem; color: #1e293b; }
.pricing-cta-box p { color: #475569; margin-bottom: 1.5rem; line-height: 1.7; }

/* ========== CONTACT ========== */
#contact { padding: 2.5rem 0; background: #dce1ec; }
.contact-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
.contact-form { background: #ffffff; padding: 2.5rem; border-radius: 20px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-form > p { color: var(--text-light); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border);
  border-radius: 12px; background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); background: #ffffff;
  box-shadow: 0 0 0 3px rgba(30,64,175,0.1);
}
.checkbox-group { display: flex; align-items: flex-start; gap: 0.5rem; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; font-size: 0.85rem; color: var(--text-light); line-height: 1.4; }
.checkbox-input { width: 18px; height: 18px; min-width: 18px; min-height: 18px; max-width: 18px; max-height: 18px; margin-top: 3px; accent-color: var(--primary); cursor: pointer; flex-shrink: 0; }
#form-message { padding: 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: 0.95rem; display: none; }
#form-message.success { display: block; background: rgba(5,150,105,0.1); border: 1px solid var(--accent); color: var(--accent); }
#form-message.error { display: block; background: rgba(220,38,38,0.1); border: 1px solid #dc2626; color: #dc2626; }

.contact-info {
  background: var(--bg-dark); color: #fff; padding: 2.5rem; border-radius: 20px;
}
.contact-info h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-item-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-item strong { display: block; margin-bottom: 0.15rem; }
.contact-item div { font-size: 0.9rem; color: #e2e8f0; line-height: 1.5; }
.trust-indicators { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); }
.trust-indicators h4 { font-size: 1.1rem; margin-bottom: 1rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.9rem; color: #e2e8f0; }
.trust-item .check { color: var(--accent-light); font-weight: 700; }

/* ========== FOOTER ========== */
.site-footer { background: var(--bg-dark); color: #e2e8f0; padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand img { height: 32px; width: auto; display: block; object-fit: contain; }
.footer-brand span { font-size: 1.1rem; font-weight: 700; color: #60a5fa; }
.footer-description { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer-column h4 { color: var(--accent-light); font-weight: 600; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: #e2e8f0; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.badge {
  padding: 0.3rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
  background: rgba(52,211,153,0.1); color: var(--accent-light); border: 1px solid rgba(52,211,153,0.3);
}

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px;
  background: var(--primary); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s; z-index: 900;
}
.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { transform: translateY(-3px); }
.scroll-to-top svg { width: 20px; height: 20px; }

/* ========== COOKIE BANNER ========== */
#cookie-consent-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(15,23,42,0.97); color: #fff; z-index: 10000;
  backdrop-filter: blur(10px); padding: 1.5rem;
}
.cookie-banner { max-width: var(--max-w); margin: 0 auto; }
.cookie-content { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.cookie-text p { font-size: 0.85rem; color: #cbd5e1; line-height: 1.5; margin: 0; }
.cookie-text a { color: var(--accent-light); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-btn {
  padding: 0.6rem 1.25rem; border-radius: 6px; font-weight: 600; font-size: 0.85rem;
  transition: all 0.2s;
}
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-accept:hover { background: #047857; }
.cookie-settings { background: transparent; color: #cbd5e1; border: 1px solid #475569; }
.cookie-settings:hover { background: #1e293b; }

/* ========== LEGAL PAGES ========== */
.legal-page-main { padding: calc(var(--header-h) + 3rem) 0 4rem; min-height: 100vh; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-size: 2rem; margin-bottom: 2rem; color: var(--text); }
.legal-content h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--text); padding-bottom: 0.5rem; border-bottom: 2px solid var(--border); }
.legal-content h3 { font-size: 1.15rem; margin-top: 1.5rem; margin-bottom: 0.75rem; color: var(--primary); }
.legal-content h4 { font-size: 1rem; margin-top: 1.25rem; margin-bottom: 0.5rem; }
.legal-content p { margin-bottom: 1rem; color: var(--text-light); line-height: 1.8; }
.legal-content ul { margin: 1rem 0 1rem 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; color: var(--text-light); position: relative; padding-left: 1rem; }
.legal-content li::before { content: ''; position: absolute; left: 0; top: 0.7rem; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); }
.legal-more { margin-top: 2.5rem; padding: 1.5rem; background: var(--bg-alt); border-left: 4px solid var(--primary); border-radius: var(--radius-sm); }
.legal-more h4 { margin-top: 0; margin-bottom: 1rem; }
.legal-more p { margin-bottom: 0.5rem; }
.back-btn { display: inline-flex; margin-top: 2rem; }

/* ========== 404 PAGE ========== */
.error-page { text-align: center; padding: calc(var(--header-h) + 6rem) 2rem 6rem; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.error-page h1 { font-size: 6rem; color: var(--primary); font-weight: 800; margin-bottom: 1rem; }
.error-page h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.error-page p { color: var(--text-light); margin-bottom: 2rem; max-width: 500px; }

/* ========== PRICING PAGE ========== */
.pricing-page-hero {
  padding: calc(var(--header-h) + 3rem) 0 2.5rem;
  background: linear-gradient(135deg, #c7d2f0 0%, #d4e4f7 50%, #c8e6d8 100%);
  text-align: center;
}
.pricing-page-hero-content { max-width: 700px; margin: 0 auto; }
.pricing-page-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--text); margin-bottom: 0.75rem;
}
.pricing-page-subtitle {
  font-size: 1.15rem; color: var(--text-light); line-height: 1.7;
}
.pricing-page-section { padding: 3rem 0 5rem; background: #dce1ec; }
.pricing-page-cta {
  text-align: center; margin-top: 3rem; padding: 2.5rem;
  background: #ffffff; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.pricing-page-cta p { color: var(--text-light); margin-bottom: 1.25rem; font-size: 1.05rem; }

/* ========== ANIMATIONS ========== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { order: -1; }
  .hero-slideshow { max-width: 400px; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-content { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .main-nav {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
    background: #ffffff; flex-direction: column; padding: 5rem 2rem 2rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1); transition: right 0.3s ease; z-index: 999;
  }
  .main-nav.active { right: 0; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav .nav-link { padding: 1rem 0; font-size: 1.1rem; display: block; border-bottom: 1px solid var(--border); }
  .mobile-lang-switch { display: flex; }
  .mobile-theme-toggle { display: flex; }
  .lang-switch { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-title { font-size: 2rem; }
  .hero-slideshow { max-width: 100%; }
  .hero-logo img { max-width: 200px; }
  .slide-btn { opacity: 1; width: 30px; height: 30px; font-size: 0.85rem; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .trust-bar-item { flex-direction: column; text-align: center; gap: 0.25rem; }
  /* Force 2x2 grid on mobile for services and pricing */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .pricing-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .service-card-header { padding: 1.25rem; }
  .service-card-header h3 { font-size: 1rem; }
  .service-card-header p { font-size: 0.85rem; }
  .service-card-header .service-icon { width: 44px; height: 44px; }
  .service-card-header .service-icon img { width: 24px; height: 24px; }
  .expand-hint { width: 24px; height: 24px; font-size: 1rem; top: 1rem; right: 1rem; }
  .pricing-card-header { padding: 1rem 1.25rem; }
  .pricing-card-header h3 { font-size: 0.95rem; }
  .pricing-card-body { padding: 1rem 1.25rem; }
  .pricing-list li { font-size: 0.8rem; padding: 0.5rem 0; }
  .pricing-list li strong { font-size: 0.85rem; }
  .about-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-content { flex-direction: column; text-align: center; }
}

@media (max-width: 380px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
}
