:root {
  --primary: #c2410c;
  --secondary: #fbbf24;
  --background: #ffffff;
  --surface: #fef9e7;
  --text: #78350f;
  --text-light: #b45309;
  --border: #fed7aa;
  --shadow: 0 10px 25px rgba(194, 65, 12, 0.08);
  --shadow-lg: 0 20px 40px rgba(194, 65, 12, 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;
  transition: width 0.1s ease;
}

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);
  letter-spacing: -0.5px;
}

.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; }
.burger-menu span { width: 100%; height: 2px; background: var(--text); border-radius: 2px; }

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;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #fed7aa 0%, #fbbf24 50%, #f59e0b 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text);
  opacity: 0.9;
  line-height: 1.8;
}

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

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-shapes {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.1));
}

.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: #a11b04;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 65, 12, 0.3);
}

.btn-secondary {
  background: rgba(120, 53, 15, 0.2);
  color: var(--text);
  border: 2px solid var(--text);
}

.btn-secondary:hover {
  background: rgba(120, 53, 15, 0.3);
  transform: translateY(-2px);
}

.stats-section {
  padding: 4rem 0;
  background: var(--surface);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

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

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

.stat-metric {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-number { color: var(--primary); }
.stat-suffix { color: var(--secondary); font-size: 1.3rem; }

.stat-card p {
  color: var(--text);
  font-weight: 500;
  margin-top: 0.5rem;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--text);
}

.check-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-element {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring-lg {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 5px 15px rgba(194, 65, 12, 0.2));
}

.ring-progress {
  transition: stroke-dashoffset 1s ease;
  transform-origin: center;
}

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

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

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

.capability-card {
  padding: 2.5rem;
  background: var(--background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

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

.capability-card h3 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.capability-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

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

.services-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-btn:hover { border-color: var(--primary); }

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

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

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

.benefits-list {
  list-style: none;
  color: var(--text-light);
}

.benefits-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.benefits-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

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

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

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

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

.quote-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1;
}

.quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

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

.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: var(--surface);
  text-align: left;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover { background: #fef3c7; }

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

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

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

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

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

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

.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);
  color: var(--text);
  background: white;
}

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

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

.form-group input.error { border-color: #c2410c; }
.form-group input.error ~ .error-message { display: block; }

.cta-banner {
  background: linear-gradient(135deg, var(--primary), #a11b04);
  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;
  opacity: 0.95;
}

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-col p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.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;
  line-height: 1.5;
}

.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: #a11b04; }

.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;
}

.cookie-table-wrapper { overflow-x: auto; margin: 1.5rem 0; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.cookie-table th {
  background: var(--primary);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.cookie-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}

.cookie-table tr:last-child td { border-bottom: none; }

.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;
  font-size: 0.95rem;
}

.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), #a11b04);
  color: white;
  text-align: center;
}

.hero-about::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15), transparent 50%), radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1), transparent 50%);
  z-index: 0;
}

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

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

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

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

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

.story-visual {
  display: flex;
  justify-content: center;
}

.story-graphic {
  width: 280px;
  height: 300px;
  filter: drop-shadow(0 10px 25px rgba(194, 65, 12, 0.15));
}

.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;
}

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

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

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

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

.member-icon {
  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: 1.8rem;
  margin: 0 auto 1rem;
}

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

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

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

.testimonials-about {
  padding: 5rem 0;
  background: var(--surface);
}

.fade-up { animation: fadeUp 0.6s ease-out forwards; }

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

@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; padding: 2rem 0; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 1rem; }
  .hero-visual { margin-top: 2rem; }

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

  .about-grid, .story-content, .mission-content {
    grid-template-columns: 1fr;
  }

  .stat-row { grid-template-columns: 1fr; }
  .values-grid, .team-grid, .capabilities-grid, .testimonials-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%; }

  .cta-banner h2 { font-size: 1.8rem; }

  .faq-question { padding: 1rem; }

  .breadcrumb { padding: 0.75rem 0; }

  .hero-about h1 { font-size: 2rem; }

  .footer-content { grid-template-columns: 1fr; }

  .thank-you-card { padding: 2rem; }

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

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

  .testimonial-footer { flex-direction: column; text-align: center; }
}
