:root {
  --primary: #7c3aed;
  --secondary: #a78bfa;
  --background: #ffffff;
  --surface: #f3e8ff;
  --text: #312e81;
  --text-light: #6366f1;
  --border: #e9d5ff;
  --shadow: 0 10px 25px rgba(124, 58, 237, 0.08);
  --shadow-lg: 0 20px 40px rgba(124, 58, 237, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); color: var(--text); background: var(--background); line-height: 1.6; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.8; }
button { cursor: pointer; border: none; font-family: inherit; }

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

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  width: 0%;
  z-index: 1000;
}

header.sticky-header {
  position: sticky;
  top: 0;
  background: var(--background);
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

header.sticky-header.scrolled { box-shadow: var(--shadow); }

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); }

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.burger-menu { display: none; width: 30px; height: 24px; flex-direction: column; justify-content: space-around; background: none; }

header.minimal-header { background: var(--background); padding: 1.5rem 0; border-bottom: 1px solid var(--border); }

.breadcrumb {
  background: var(--surface);
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--text);
}

.breadcrumb a { color: var(--primary); }

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 50%, #f3e8ff 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1), transparent 50%), radial-gradient(circle at 80% 50%, rgba(167, 139, 250, 0.1), transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
  font-size: 1rem;
  cursor: pointer;
  border: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
  background: rgba(124, 58, 237, 0.1);
  color: var(--text);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: rgba(124, 58, 237, 0.2);
  transform: translateY(-2px);
}

.dashboard-section {
  padding: 5rem 0;
  background: var(--surface);
}

.dashboard-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 3rem;
}

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

.metric-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.metric-icon {
  font-size: 2.5rem;
}

.metric-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary);
}

.metric-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.expertise-section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: var(--text);
  margin-bottom: 3rem;
}

.expertise-tabs {
  max-width: 900px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: var(--surface);
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

.tab-pane { display: none; }
.tab-pane.active { display: block; }

.tab-pane h3 {
  color: var(--text);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tab-pane p {
  color: var(--text-light);
  line-height: 1.8;
}

.solutions-section {
  padding: 5rem 0;
  background: var(--surface);
}

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

.solution-card {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
  transition: var(--transition);
}

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

.solution-card h3 {
  color: var(--text);
  margin: 1rem 0;
}

.solution-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.testimonials-section {
  padding: 5rem 0;
}

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.testimonial-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card strong {
  display: block;
  color: var(--text);
}

.testimonial-card span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.faq-section {
  padding: 5rem 0;
  background: var(--surface);
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: white;
  text-align: left;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  float: right;
  color: var(--primary);
  font-size: 1.5rem;
}

.faq-item.active .faq-question::after { content: '−'; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

.contact-section {
  padding: 5rem 0;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-group input {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  color: var(--text);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: none;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

footer {
  background: var(--text);
  color: white;
  padding: 3rem 0;
}

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

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.8); }
.footer-col a:hover { color: var(--secondary); }

.footer-logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.minimal-footer {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  padding: 2rem 0;
}

.minimal-footer p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.minimal-footer a { color: var(--secondary); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text);
  color: white;
  padding: 1.5rem;
  display: none;
  gap: 1rem;
  align-items: center;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.cookie-banner.show { display: flex; }

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  width: 100%;
}

.cookie-content p {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
}

.btn-cookie-accept, .btn-cookie-decline {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

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

.btn-cookie-accept:hover { background: linear-gradient(135deg, var(--primary), var(--secondary)); }

.btn-cookie-decline {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 1px solid white;
}

.btn-cookie-decline:hover { background: rgba(255,255,255,0.3); }

.legal-page { padding: 3rem 0; }
.legal-page h1 { font-size: 2.5rem; color: var(--text); margin-bottom: 0.5rem; }
.last-updated { color: var(--text-light); font-size: 0.95rem; margin-bottom: 2rem; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { color: var(--primary); font-size: 1.5rem; margin-bottom: 1rem; }
.legal-section p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }

.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.thank-you-card {
  text-align: center;
  padding: 3rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 500px;
  box-shadow: var(--shadow-lg);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  color: var(--primary);
  margin: 0 auto 1.5rem;
}

.thank-you-card h1 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.thank-you-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.hero-about {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
}

.hero-about h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-about p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

.story-section {
  padding: 5rem 0;
  text-align: center;
}

.story-section h2 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.story-section p {
  color: var(--text-light);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.values-section {
  padding: 5rem 0;
  background: var(--surface);
}

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

.value-card {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 3px solid var(--primary);
}

.value-card h3 {
  color: var(--text);
  margin: 1rem 0;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.leadership-section {
  padding: 5rem 0;
}

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

.leader-card {
  text-align: center;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.leader-initial {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.leader-card h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.leader-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.leader-bio {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .burger-menu { display: flex; }

  .nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    padding: 1rem;
    gap: 1rem;
    box-shadow: var(--shadow);
  }

  .hero { min-height: 60vh; }
  .hero h1 { font-size: 2rem; }

  .section-title { font-size: 1.8rem; }

  .metrics-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .testimonials-row { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .cookie-banner { flex-direction: column; }
  .cookie-content { flex-direction: column; text-align: center; }
  .btn-cookie-accept, .btn-cookie-decline { width: 100%; }

  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; }

  .footer-content { grid-template-columns: 1fr; }
  .tab-buttons { flex-direction: column; }
  .tab-btn { width: 100%; }
}
