:root {
  --color-primary: #0B0B0B;
  --color-secondary: #4A1D13;
  --color-tertiary: #9F3721;
  --color-quaternary: #F15E3C;
  --color-accent: #F15E3C;
  --color-white: #ffffff;
  --color-gray-light: #f8f9fa;
  --color-gray: #6c757d;
  --color-dark: #212529;
  --font-primary: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-white);
  background: var(--color-primary);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.navbar-brand img {
  transition: transform 0.3s ease;
  max-width: 65px;
}
.footer .container .row .col-lg-4 img {
  max-width: 80px;
}
.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--color-accent);
}

.btn-cta {
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
  color: var(--color-white);
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241, 94, 60, 0.35);
}

.hero-scan {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 11rem 0 6rem;
  background: linear-gradient(135deg, rgba(159, 55, 33, 0.08) 0%, rgba(241, 94, 60, 0.12) 100%);
  position: relative;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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

.btn-primary-hero {
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
  color: var(--color-white);
  padding: 1rem 2.2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(241, 94, 60, 0.4);
}

.btn-secondary-hero {
  background: transparent;
  color: var(--color-white);
  padding: 1rem 2.2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid rgba(241, 94, 60, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary-hero:hover {
  border-color: var(--color-accent);
  background: rgba(241, 94, 60, 0.1);
}

.scanner-panel {
  background: rgba(74, 29, 19, 0.2);
  border: 1px solid rgba(241, 94, 60, 0.25);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.scanner-header {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  color: var(--color-accent);
  text-align: center;
}

.skill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(241, 94, 60, 0.15);
}

.skill-row:last-child {
  border-bottom: none;
}

.skill-name {
  font-weight: 500;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
}

.skill-levels {
  display: flex;
  gap: 0.6rem;
}

.level-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(241, 94, 60, 0.3);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.level-btn:hover {
  background: rgba(241, 94, 60, 0.2);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.section-title-center {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.15rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.outcome-section {
  padding: 6rem 0;
  background: var(--color-primary);
}

.outcome-rows {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(241, 94, 60, 0.15);
}

.outcome-item:last-child {
  border-bottom: none;
}

.outcome-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.outcome-icon i {
  font-size: 2rem;
  color: var(--color-white);
}

.outcome-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.outcome-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.6;
}

.outcome-visual {
  text-align: center;
  margin-top: 2rem;
}

.outcome-visual img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(241, 94, 60, 0.2);
  margin: 0 auto;
  max-width: 500px;
}

.quest-roadmap {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--color-primary) 0%, rgba(74, 29, 19, 0.1) 100%);
}

.roadmap-track {
  max-width: 900px;
  margin: 0 auto;
}

.milestone-item {
  background: rgba(74, 29, 19, 0.15);
  border: 1px solid rgba(241, 94, 60, 0.2);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  padding: 1.8rem 2rem;
  position: relative;
  overflow: hidden;
}

.milestone-number {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(241, 94, 60, 0.15);
}

.milestone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding-left: 4rem;
}

.milestone-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white);
}

.milestone-header i {
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.milestone-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 4rem;
  color: rgba(255, 255, 255, 0.7);
}

.milestone-content.active {
  max-height: 300px;
  margin-top: 1rem;
}

.projects-section {
  padding: 6rem 0;
  background: var(--color-primary);
}

.project-showcase {
  margin-top: 3rem;
}

.project-main {
  margin-bottom: 3rem;
}

.project-main img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(241, 94, 60, 0.25);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.project-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.project-info p {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
}

.project-learn {
  color: rgba(255, 255, 255, 0.85);
}

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

.project-card {
  background: rgba(74, 29, 19, 0.15);
  border: 1px solid rgba(241, 94, 60, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(241, 94, 60, 0.25);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.project-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--color-white);
}

.project-card p {
  padding: 0 1.5rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.method-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--color-primary) 0%, rgba(74, 29, 19, 0.08) 100%);
}

.loop-block {
  background: rgba(74, 29, 19, 0.2);
  border: 1px solid rgba(241, 94, 60, 0.25);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
}

.loop-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--color-accent);
}

.loop-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.loop-step {
  background: rgba(241, 94, 60, 0.1);
  border-left: 3px solid var(--color-accent);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.method-explanation {
  max-width: 800px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: rgba(74, 29, 19, 0.15);
  border: 1px solid rgba(241, 94, 60, 0.2);
  border-radius: 12px;
}

.method-explanation h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.method-explanation ul {
  list-style: none;
  padding: 0;
}

.method-explanation li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
}

.method-explanation li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.2rem;
}

.target-audience {
  padding: 6rem 0;
  background: var(--color-primary);
}

.audience-block {
  background: rgba(74, 29, 19, 0.15);
  border: 1px solid rgba(241, 94, 60, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
}

.audience-block h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.audience-good h3 {
  color: #4CAF50;
}

.audience-bad h3 {
  color: #FF5252;
}

.audience-block ul {
  list-style: none;
  padding: 0;
}

.audience-block li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
}

.audience-good li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 700;
  font-size: 1.3rem;
}

.audience-bad li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #FF5252;
  font-weight: 700;
  font-size: 1.3rem;
}

.resource-callout {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(159, 55, 33, 0.12) 0%, rgba(74, 29, 19, 0.2) 100%);
}

.callout-box {
  background: rgba(74, 29, 19, 0.25);
  border: 1px solid rgba(241, 94, 60, 0.3);
  border-radius: 16px;
  padding: 3.5rem;
}

.callout-box h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--color-white);
}

.callout-box p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-resource {
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
  color: var(--color-white);
  padding: 1rem 2.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-resource:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(241, 94, 60, 0.4);
}

.faq-section {
  padding: 6rem 0;
  background: var(--color-primary);
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  background: rgba(74, 29, 19, 0.15);
  border: 1px solid rgba(241, 94, 60, 0.2);
  border-radius: 12px;
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(241, 94, 60, 0.05);
}

.faq-question i {
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

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

.faq-answer.active {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(159, 55, 33, 0.08) 0%, rgba(74, 29, 19, 0.15) 100%);
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.contact-intro {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-info-block h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.contact-info-block ul {
  list-style: none;
  padding: 0;
}

.contact-info-block li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.contact-info-block li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 1.5rem;
}

.contact-form {
  background: rgba(74, 29, 19, 0.2);
  border: 1px solid rgba(241, 94, 60, 0.25);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-label {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(241, 94, 60, 0.3);
  color: var(--color-white);
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent);
  color: var(--color-white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(241, 94, 60, 0.15);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.error-message {
  color: #FF5252;
  font-size: 0.9rem;
  display: block;
  margin-top: 0.4rem;
}

.btn-submit-form {
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
  color: var(--color-white);
  padding: 1rem 2.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-submit-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(241, 94, 60, 0.4);
}

.footer {
  background: rgba(11, 11, 11, 0.95);
  border-top: 1px solid rgba(241, 94, 60, 0.2);
  padding: 4rem 0 2rem;
}

.footer h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--color-accent);
}

.footer p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.footer-contact {
  margin: 2rem 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(241, 94, 60, 0.15);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(241, 94, 60, 0.15);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 420px;
  background: rgba(11, 11, 11, 0.98);
  border: 1px solid rgba(241, 94, 60, 0.3);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner.hide {
  opacity: 0;
  transform: translateY(20px);
}

.cookie-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.btn-cookie-accept {
  flex: 1;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
  color: var(--color-white);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(241, 94, 60, 0.35);
}

.btn-cookie-decline {
  flex: 1;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(241, 94, 60, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-decline:hover {
  border-color: var(--color-accent);
  background: rgba(241, 94, 60, 0.1);
}

.cookie-policy-link {
  text-align: center;
  margin-top: 0.8rem;
}

.cookie-policy-link a {
  color: var(--color-accent);
  font-size: 0.9rem;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title-center {
    font-size: 2.2rem;
  }
  .navbar-dark .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
  }
  .btn-cta {
    margin-top: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section-title-center {
    font-size: 1.8rem;
  }
  .scanner-panel {
    padding: 1.5rem;
  }
  .skill-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .outcome-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .project-secondary {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    text-align: center;
  }
  .callout-box {
    padding: 2rem;
  }
  .cookie-banner {
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

.manifesto-strip {
  background: rgba(74, 29, 19, 0.2);
  border: 1px solid rgba(241, 94, 60, 0.25);
  border-radius: 12px;
  padding: 2rem;
}

.strip-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(241, 94, 60, 0.15);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-white);
}

.strip-item:last-child {
  border-bottom: none;
}

.principles-section {
  padding: 6rem 0;
  background: var(--color-primary);
}

.principles-list {
  max-width: 1000px;
  margin: 3rem auto 0;
}

.principle-row {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(241, 94, 60, 0.15);
}

.principle-row:last-child {
  border-bottom: none;
}

.principle-number {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(241, 94, 60, 0.2);
  flex-shrink: 0;
  width: 100px;
}

.principle-content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-white);
}

.principle-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.process-diagram-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--color-primary) 0%, rgba(74, 29, 19, 0.08) 100%);
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}

.flow-node {
  background: rgba(74, 29, 19, 0.2);
  border: 1px solid rgba(241, 94, 60, 0.25);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 160px;
}

.node-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.node-icon i {
  font-size: 1.5rem;
  color: var(--color-white);
}

.flow-node h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.flow-node p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.flow-arrow {
  color: var(--color-accent);
  font-size: 1.5rem;
}

.quality-signals {
  padding: 6rem 0;
  background: var(--color-primary);
}

.signal-card {
  background: rgba(74, 29, 19, 0.15);
  border: 1px solid rgba(241, 94, 60, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.signal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(241, 94, 60, 0.25);
}

.signal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.signal-icon i {
  font-size: 2rem;
  color: var(--color-white);
}

.signal-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.signal-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.team-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(159, 55, 33, 0.08) 0%, rgba(74, 29, 19, 0.15) 100%);
}

.team-profiles {
  max-width: 1000px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.profile-signature {
  background: rgba(74, 29, 19, 0.2);
  border: 1px solid rgba(241, 94, 60, 0.25);
  border-radius: 12px;
  padding: 2.5rem;
}

.profile-signature h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.profile-role {
  color: var(--color-accent);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.profile-stance {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.profile-focus strong {
  color: var(--color-white);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.8rem;
}

.profile-focus ul {
  list-style: none;
  padding: 0;
}

.profile-focus li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
}

.profile-focus li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.cta-about {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(159, 55, 33, 0.12) 0%, rgba(74, 29, 19, 0.2) 100%);
}

.cta-about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.cta-about p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-details-section {
  padding: 4rem 0;
  background: var(--color-primary);
}

.contact-info-card {
  background: rgba(74, 29, 19, 0.15);
  border: 1px solid rgba(241, 94, 60, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(241, 94, 60, 0.25);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.info-icon i {
  font-size: 1.8rem;
  color: var(--color-white);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-info-card a {
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--color-white);
}

.contact-form-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(159, 55, 33, 0.08) 0%, rgba(74, 29, 19, 0.15) 100%);
}

.contact-form-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.thanks-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 11rem 0 6rem;
  background: linear-gradient(135deg, rgba(159, 55, 33, 0.08) 0%, rgba(241, 94, 60, 0.12) 100%);
}

.thanks-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-tertiary), var(--color-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thanks-icon i {
  font-size: 4rem;
  color: var(--color-white);
}

.thanks-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.thanks-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.thanks-info {
  background: rgba(74, 29, 19, 0.2);
  border: 1px solid rgba(241, 94, 60, 0.25);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.thanks-info h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  text-align: center;
}

.thanks-info ul {
  list-style: none;
  padding: 0;
}

.thanks-info li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.thanks-info li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.3rem;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.legal-page {
  padding: 11rem 0 6rem;
  background: var(--color-primary);
  min-height: 100vh;
}

.legal-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.legal-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.legal-content {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.legal-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.legal-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--color-white);
}

.legal-content p {
  margin-bottom: 1.2rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.8rem;
}

.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.legal-content a:hover {
  color: var(--color-white);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title-center {
    font-size: 2.2rem;
  }
  .navbar-dark .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
  }
  .btn-cta {
    margin-top: 1rem;
  }
  .principle-row {
    flex-direction: column;
    gap: 1rem;
  }
  .principle-number {
    font-size: 3rem;
    width: auto;
  }
  .flow-arrow {
    display: none;
  }
  .process-flow {
    flex-direction: column;
  }
  .team-profiles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section-title-center {
    font-size: 1.8rem;
  }
  .scanner-panel {
    padding: 1.5rem;
  }
  .skill-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .outcome-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .project-secondary {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    text-align: center;
  }
  .callout-box {
    padding: 2rem;
  }
  .cookie-banner {
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
  .thanks-title {
    font-size: 2rem;
  }
  .thanks-text {
    font-size: 1.1rem;
  }
  .thanks-actions {
    flex-direction: column;
  }
  .legal-title {
    font-size: 2rem;
  }
  .legal-content {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}