/*-----------------------------------*\
  #CUSTOM PROPERTIES
\*-----------------------------------*/

:root {
  /* Colors */
  --primary-black: #2D2D2D;
  --primary-white: #FFFFFF;
  --primary-green: #009379;
  --primary-red: #FF6250;
  --primary-coral: #FF8A65;
  --primary-grey: #F3F3F3;
  --primary-yellow: #F7D684;

  --text-dark: #2D2D2D;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --text-white: #FFFFFF;

  --bg-white: #FFFFFF;
  --bg-light: #F3F3F3;
  --border-light: #E8E8E8;
  --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 30px rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-primary: 'Epilogue', 'Inter', system-ui, sans-serif;
  --fs-h1: clamp(3rem, 6vw, 6.25rem);
  --fs-h2: clamp(1.5rem, 4vw, 2rem);
  --fs-h3: clamp(1.25rem, 3vw, 1.688rem);
  --fs-h4: clamp(1.125rem, 2.5vw, 1.375rem);
  --fs-body: clamp(0.875rem, 2vw, 1.063rem);
  --fs-small: 0.875rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --section-padding: clamp(3rem, 8vw, 6rem);
  --container-padding: clamp(1rem, 4vw, 2rem);
  --transition: 0.3s ease;
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

html {
  font-family: var(--font-primary);
  scroll-behavior: smooth;
}

body {
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

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

ul {
  list-style: none;
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--container-padding);
  max-width: 1200px;
  margin: 0 auto;
}

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

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-medium);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-red);
  background: rgba(255, 98, 80, 0.1);
}

.contact-email {
  font-size: var(--fs-small);
  color: var(--text-medium);
  transition: var(--transition);
}

.contact-email:hover {
  color: var(--primary-red);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.mobile-menu-toggle.menu-open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.menu-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.menu-open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-white);
    box-shadow: var(--shadow-medium);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 2rem 0;
  }

  .nav.nav-open {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: none;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    border-radius: 0;
    border-bottom: 1px solid var(--border-light);
    font-size: var(--fs-body);
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--bg-light);
    color: var(--primary-red);
  }
}

/*-----------------------------------*\
  #HERO SECTION
\*-----------------------------------*/

.hero {
  padding: calc(80px + 2rem) 0 3rem;
  background: #F3F3F3;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0;
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
}

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

.hero-text {
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #FF6250;
  font-weight: var(--fw-semibold);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-greeting {
  font-size: var(--fs-body);
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: var(--fw-regular);
}

.hero-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

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

.hero-image {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  max-height: 500px;
}

.profile-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}



.cta-button {
  background: var(--text-dark);
  color: var(--text-white);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #404040;
  transform: translateY(-2px);
}

/*-----------------------------------*\
  #ABOUT ME SECTION
\*-----------------------------------*/

.about-section {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
  display: block !important;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* About Me Content */
.about-content {
  margin-bottom: 5rem;
}

.about-content .section-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.about-paragraph {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

/* Education Section */
.education-section {
  margin-bottom: 5rem;
}

.education-section .section-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
  .education-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .education-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.education-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}

.education-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.education-info {
  position: relative;
  padding-bottom: 3rem;
}

.education-degree {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.education-institution {
  font-size: var(--fs-body);
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.education-status {
  font-size: var(--fs-small);
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.education-logo {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 150px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.education-logo img {
  max-width: 150px;
  max-height: 70px;
  min-width: 120px;
  min-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.focus-areas {
  margin: 1.5rem 0;
}

.focus-title {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.focus-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.focus-list li {
  font-size: var(--fs-small);
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}

.focus-list li:before {
  content: "•";
  color: var(--primary-coral);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.focus-hidden {
  display: none;
}

.focus-partial {
  display: block;
  position: relative;
  overflow: hidden;
  height: 1.4em;
  mask: linear-gradient(to right, black 0%, black 50%, transparent 100%);
  -webkit-mask: linear-gradient(to right, black 0%, black 50%, transparent 100%);
}

.focus-partial::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, var(--bg-light) 80%);
  pointer-events: none;
}

.focus-toggle {
  background: none;
  border: none;
  color: var(--primary-coral);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: var(--transition);
}

.focus-toggle:hover {
  color: var(--text-dark);
}

/* Work Experience Section */
.work-experience-section {
  margin-bottom: 5rem;
}

.work-experience-section .section-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.experience-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Portfolio Section - Optimized */
.portfolio {
  padding: 4rem 0;
  min-height: 100vh;
}

.portfolio .section-title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  margin-bottom: 1.5rem;
}

.work-intro {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
}

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 var(--container-padding);
}

.project-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  position: relative;
}

.project-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 147, 121, 0.2);
  border-color: var(--primary-green);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-image img {
  transform: scale(1.02);
}

.project-info {
  padding: 2rem;
}

.project-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--primary-red);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.project-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.7;
  margin-top: 1rem;
}

.experience-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #E0E0E0;
  z-index: 1;
}

.experience-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 40px;
}

.timeline-bullet {
  position: absolute;
  left: 0;
  top: 2.5rem;
  width: 16px;
  height: 16px;
  background: #FF6250;
  border-radius: 50%;
  z-index: 2;
}

.experience-content {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.experience-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.experience-title {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: #FF6250;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.experience-date {
  font-size: 0.875rem;
  color: var(--text-medium);
  font-weight: var(--fw-medium);
  margin-bottom: 1.5rem;
}

.experience-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.experience-description:last-child {
  margin-bottom: 0;
}

/* Achievements Section */
.achievements-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.achievements-title {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.achievements-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.achievements-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.achievements-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.achievements-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vonroll-image {
  width: 100%;
  height: 456px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
}

.vonroll-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.achievements-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin: 0;
  padding: 0;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 0;
}

.achievements-bottom .achievement-item {
  padding: 1.5rem 0;
  width: 100%;
  margin: 0;
}

.achievements-bottom .achievement-item:first-child {
  padding-top: 1.5rem;
}

.achievement-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.achievement-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stakeholder-icon {
  background: #FFB74D;
  font-size: 1.5rem;
}

.agile-icon {
  background: #81C784;
  font-size: 1.5rem;
}

.workshop-icon {
  background: #F48FB1;
  font-size: 1.5rem;
}

.achievement-content {
  flex: 1;
}

.achievements-bottom .achievement-content {
  max-width: none;
}

.achievement-title {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.achievement-description {
  font-size: 0.875rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.achievement-visual {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}

.achievement-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stakeholder-visual {
  background: #f5f5f5;
}

/*-----------------------------------*\
  #EXPERIENCE SECTION
\*-----------------------------------*/

.experience {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.experience .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 3rem;
  text-align: left;
}

.timeline {
  position: relative;
  margin-bottom: 4rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 200px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  align-items: flex-start;
  gap: 2rem;
}

.timeline-date {
  width: 180px;
  font-size: var(--fs-small);
  color: var(--text-light);
  text-align: right;
  padding-top: 0.5rem;
  font-weight: var(--fw-medium);
}

.timeline-content {
  flex: 1;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  position: relative;
  border-left: 4px solid var(--primary-coral);
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 30px;
  width: 16px;
  height: 16px;
  background: var(--primary-coral);
  border-radius: 50%;
  border: 3px solid var(--bg-white);
}

.timeline-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.timeline-company {
  font-size: var(--fs-small);
  color: var(--primary-teal);
  font-weight: var(--fw-medium);
  margin-bottom: 1rem;
}

.timeline-description {
  color: var(--text-medium);
  line-height: 1.6;
}

.skills-section {
  margin-bottom: 4rem;
}

.subsection-title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: left;
}

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

.skill-category {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.skill-category-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.skill-tag:hover {
  background: var(--primary-coral);
  color: var(--text-white);
  transform: translateY(-2px);
}

.languages-section {
  margin-bottom: 4rem;
}

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

.language-item {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.language-name {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.language-level {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.level-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
}

.level-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-coral), var(--primary-teal));
  border-radius: 4px;
  transition: width 0.8s ease;
  position: relative;
}

.level-text {
  font-size: var(--fs-small);
  color: var(--text-light);
  font-weight: var(--fw-medium);
  min-width: 80px;
}

/* Languages Section Styles */
.languages-section {
  margin-bottom: 5rem;
}

.languages-section .section-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 2rem;
}

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

.language-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.language-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.language-name {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.language-level {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.level-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.level-fill {
  height: 100%;
  background: linear-gradient(90deg, #4CAF50, #66BB6A);
  border-radius: 4px;
  transition: width 0.8s ease;
  position: relative;
}

.level-text {
  font-size: var(--fs-small);
  color: var(--text-medium);
  font-weight: var(--fw-medium);
  min-width: 100px;
  text-align: right;
}

.education-section {
  margin-top: 4rem;
}

.education-grid {
  display: grid;
  gap: 1.5rem;
}

.education-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.education-year {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--primary-coral);
  min-width: 80px;
}

.education-title {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.education-school {
  font-size: var(--fs-small);
  color: var(--text-light);
}

/*-----------------------------------*\
  #PORTFOLIO SECTION
\*-----------------------------------*/

.portfolio {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.portfolio .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.work-intro {
  font-size: var(--fs-body);
  color: var(--text-medium);
  margin-bottom: 4rem;
  line-height: 1.6;
  max-width: 900px;
}

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--container-padding);
}

.project-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  position: relative;
}

.project-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 147, 121, 0.2);
  border-color: var(--primary-green);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  order: 1;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

.project-card:hover .project-image img {
  transform: scale(1.02);
}

.project-info {
  padding: 2rem;
  order: 2;
}

.project-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--primary-red);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.project-category {
  display: none;
}

.project-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.7;
  margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Hero section mobile layout */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    grid-template-areas:
      "image"
      "text";
  }

  .hero-visual {
    grid-area: image;
    margin-bottom: 2rem;
  }

  .hero-text {
    grid-area: text;
    margin-top: 1rem;
  }

  /* Project hero mobile */
  .project-hero {
    padding: 3rem 0;
  }

  .project-hero-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-hero-visual {
    order: -1;
  }

  /* Achievements mobile layout */
  .achievements-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .achievements-right {
    display: none; /* Hide vonRoll image on mobile */
  }

  .achievements-left {
    width: 100%;
    max-width: none;
  }

  .achievement-item {
    gap: 1rem;
    padding: 1rem 0;
  }

  .achievement-content {
    width: 100%;
  }

  .achievement-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .achievement-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

.nav-link:hover {
    background: var(--bg-light);
  }

  .portfolio {
    padding: calc(80px + 1rem) 0 2rem;
  }

  .portfolio .container {
    padding: 0 1rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw,2rem) !important;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .work-intro {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.5;
  }
  .project-card {
    grid-template-columns: 1fr;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .project-link {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .project-image {
    height: 350px;
    order: 1;
  }

  .project-info {
    padding: 2rem;
    order: 2;
  }

  .project-title {
    font-size: var(--fs-h3);
  }

  .work-intro {
    margin-bottom: 3rem;
  }
}

.portfolio-category {
  font-size: var(--fs-small);
  color: var(--primary-coral);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.portfolio-title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.portfolio-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.portfolio-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  border: 1px solid var(--border-light);
}

.portfolio-link {
  background: var(--text-dark);
  color: var(--text-white);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: var(--fw-semibold);
  transition: var(--transition);
  display: inline-block;
}

.portfolio-link:hover {
  background: var(--text-medium);
  transform: translateY(-2px);
}

/*-----------------------------------*\
  #CONTACT HERO SECTION
\*-----------------------------------*/

.contact-hero-section {
  padding: calc(80px + 4rem) 0 3rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255, 98, 80, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(0, 147, 121, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 98, 80, 0.1);
  color: var(--primary-red);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 98, 80, 0.2);
}

.contact-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/*-----------------------------------*\
  #CONTACT SECTION
\*-----------------------------------*/

.contact {
  padding: 4rem 0 var(--section-padding);
  background: var(--bg-white);
}

.contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.contact-content-enhanced {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

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

.contact-card {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


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

.email-card:hover {
  box-shadow: 0 12px 40px rgba(255, 98, 80, 0.2);
}

.linkedin-card:hover {
  box-shadow: 0 12px 40px rgba(0, 119, 181, 0.2);
}

.location-card:hover {
  box-shadow: 0 12px 40px rgba(0, 147, 121, 0.2);
}

.contact-card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.contact-card-title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-card-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-card-link {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--primary-red);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  padding: 0.5rem 0;
}

.contact-card-link:hover {
  color: var(--text-dark);
  transform: translateY(-1px);
}

.linkedin-card .contact-card-link {
  color: #0077B5;
}

.linkedin-card .contact-card-link:hover {
  color: var(--text-dark);
}

.location-card .contact-card-link {
  color: var(--primary-green);
  cursor: default;
}

.contact-additional {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-availability {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
}

.availability-title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.availability-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.availability-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.availability-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.availability-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.availability-text {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-dark);
  line-height: 1.3;
}

.contact-response-time {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.response-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.response-text {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-hero-section {
    padding: calc(80px + 2rem) 0 2rem;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-additional {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .availability-items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-availability,
  .contact-response-time {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 1.5rem;
  }

  .contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .availability-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .availability-icon {
    font-size: 1.2rem;
  }

  .availability-text {
    font-size: 0.85rem;
  }
}

/*-----------------------------------*\
  #PROJECT DETAILS
\*-----------------------------------*/

.project-details {
  margin-top: 4rem;
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  display: none;
}

.project-details.active {
  display: block;
}

.project-header {
  text-align: left;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--primary-coral);
}

.project-header h2 {
  font-size: var(--fs-h2);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.project-meta {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.project-meta span {
  background: var(--bg-light);
  color: var(--text-medium);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
}

.case-study-section {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
}

.case-study-section:last-child {
  border-bottom: none;
}

.case-study-section h3 {
  font-size: var(--fs-h3);
  color: var(--text-dark);
  margin-bottom: 2rem;
}

/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

section[data-page] {
  display: none;
}

section[data-page].active {
  display: block;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-image {
    max-width: 300px;
    max-height: 300px;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .contact-form-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-form {
    order: 1;
  }

  .contact-info-sidebar {
    order: 2;
  }

  .scenario-card {
    padding: 1.25rem;
  }

  .scenario-title {
    font-size: var(--fs-h4);
  }

  .step-item {
    gap: 0.75rem;
  }

  .step-number {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .education-timeline::before,
  .experience-timeline::before {
    left: 30px;
  }

  .education-item,
  .experience-item {
    flex-direction: column;
    gap: 1rem;
  }

  .education-year,
  .experience-date {
    width: auto;
    text-align: left;
    order: 1;
  }

  .education-content,
  .experience-content {
    order: 2;
    padding: 1.5rem;
  }

  .experience-content::before {
    left: -1.5rem;
    top: 1rem;
  }
}

.portfolio-category {
  font-size: var(--fs-small);
  color: var(--primary-coral);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.portfolio-title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.portfolio-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.portfolio-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  border: 1px solid var(--border-light);
}

.portfolio-link {
  background: var(--text-dark);
  color: var(--text-white);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: var(--fw-semibold);
  transition: var(--transition);
  display: inline-block;
}

.portfolio-link:hover {
  background: var(--text-medium);
  transform: translateY(-2px);
}

/*-----------------------------------*\
  #AI LAB HERO SECTION
\*-----------------------------------*/

.ai-lab-hero-section {
  padding: calc(80px + 4rem) 0 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.ai-lab-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 98, 80, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 147, 121, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.ai-lab-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 98, 80, 0.1);
  color: var(--primary-red);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 98, 80, 0.2);
}

.badge-emoji {
  font-size: 1.2rem;
}

.ai-lab-hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-lab-hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--primary-green);
  font-weight: var(--fw-medium);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ai-lab-hero-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/*-----------------------------------*\
  #PROJECTS SHOWCASE
\*-----------------------------------*/

.projects-showcase {
  padding: 6rem 0;
  background: var(--bg-white);
}

.projects-header {
  text-align: center;
  margin-bottom: 4rem;
}

.projects-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.projects-subtitle {
  font-size: var(--fs-body);
  color: var(--text-medium);
  max-width: 500px;
  margin: 0 auto;
}

.projects-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-project-card {
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-project-link:hover .featured-project-card {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Mobile-friendly active state */
.featured-project-link:active .featured-project-card {
  transform: translateY(-8px);
  transition: transform 0.1s ease;
}

.featured-project-link:hover .reloop-card {
  border-color: var(--primary-green);
  box-shadow: 0 20px 60px rgba(0, 147, 121, 0.2);
}

.featured-project-link:hover .fraudini-card {
  border-color: var(--primary-red);
  box-shadow: 0 20px 60px rgba(255, 98, 80, 0.2);
}

/* Active states for mobile */
.featured-project-link:active .reloop-card {
  border-color: var(--primary-green);
  box-shadow: 0 15px 45px rgba(0, 147, 121, 0.2);
}

.featured-project-link:active .fraudini-card {
  border-color: var(--primary-red);
  box-shadow: 0 15px 45px rgba(255, 98, 80, 0.2);
}

.project-visual {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}


.project-preview-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.project-preview-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.featured-project-link:hover .project-preview-image img {
  transform: scale(1.05);
}

.featured-project-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}


.project-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: var(--fw-medium);
  backdrop-filter: blur(10px);
}

.project-cta {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.project-cta:hover {
  transform: translateX(5px);
}

.project-content {
  padding: 2.5rem;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.project-name {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  margin: 0;
  line-height: 1.2;
  flex: 1;
}

.project-status-badge {
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.project-status-badge.completed {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.project-status-badge.in-progress {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.reloop-card .project-name {
  color: var(--primary-green);
}

.fraudini-card .project-name {
  color: var(--primary-red);
}

.unicorn-lab-card {
  border: none;
}


.unicorn-lab-card .project-name {
  color: #6366F1;
}

.featured-project-link:hover .unicorn-lab-card {
  border: 2px solid #6366F1;
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.featured-project-link:active .unicorn-lab-card {
  border: 2px solid #6366F1;
  box-shadow: 0 15px 45px rgba(99, 102, 241, 0.2);
}

.project-tagline {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: var(--fs-small);
}

.project-status-badge.prototype {
  background-color: #EEF2FF;
  color: #6366F1;
  border: 1px solid #C7D2FE;
}

.project-brief {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.project-release-date {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.project-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: var(--transition);
}

.highlight-item:hover {
  background: rgba(255, 98, 80, 0.05);
  transform: translateX(5px);
}

.highlight-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.highlight-text {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-dark);
}

/* AI Tools Badges */
.project-tools-section {
  margin-top: 2rem;
}

.tools-section-title {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.project-tools-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-start;
}

.tool-badge {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}

.tool-badge:hover {
  background: rgba(255, 98, 80, 0.1);
  border-color: var(--primary-red);
  transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .ai-lab-hero-section {
    padding: calc(80px + 2rem) 0 3rem;
  }

  .projects-featured-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .featured-project-card {
    border-radius: 16px;
  }

  .project-visual {
    height: 250px;
  }

  .project-content {
    padding: 2rem;
  }

  .project-highlights {
    gap: 0.75rem;
  }

  .highlight-item {
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .projects-featured-grid {
    grid-template-columns: 1fr;
  }

  .project-overlay {
    padding: 1.5rem;
  }

  .project-tags {
    gap: 0.3rem;
  }

  .tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
}

/*-----------------------------------*\
  #AI TOOLS SECTION
\*-----------------------------------*/

.ai-tools-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
}

.ai-tools-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FF6250" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23009379" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23FF8A65" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

.ai-tools-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.ai-tools-header .section-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-tools-subtitle {
  font-size: var(--fs-body);
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.ai-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.ai-tool-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ai-tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-green));
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.ai-tool-card:hover::before {
  transform: translateX(0);
}

.ai-tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-red);
}

.tool-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  line-height: 1;
}

.tool-name {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tool-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .ai-tools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ai-tool-card {
    padding: 2rem 1.5rem;
  }

  .tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

/*-----------------------------------*\
  #RELOOP PROJECT PAGE
\*-----------------------------------*/

.reloop-project {
  padding-top: 0;
  min-height: 100vh;
}

/* ReLoop Header Styling */
.reloop-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.reloop-logo {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.reloop-re {
  color: #5A9B8E; /* Teal color */
}

.reloop-loop {
  color: #2C3E50; /* Navy color */
}

.reloop-header .nav-link {
  color: var(--text-medium);
  font-weight: var(--fw-medium);
  transition: var(--transition);
}

.reloop-header .nav-link:hover {
  color: var(--primary-red);
}

/* New styles for redesigned ReLoop page */
.project-hero-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(233, 196, 106, 0.2);
  border-radius: 25px;
  align-self: flex-start;
  white-space: nowrap;
}

.project-hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge-emoji {
  color: #D9B355;
  margin-right: 0.5rem;
}

.badge-text {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
}

.badge-text-mobile {
  display: none;
}

.badge-text-full {
  display: inline;
}

.project-hero-cta {
  margin-bottom: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  background: var(--primary-red);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: var(--transition);
}

.cta-button:hover {
  background: #e55a42;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 98, 80, 0.3);
}

.cta-button.secondary {
  background: var(--primary-green);
  color: white;
}

.cta-button.secondary:hover {
  background: #007a64;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 147, 121, 0.3);
}

.solution-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
  margin: 2rem 0;
}

.solution-preview {
  align-self: start;
  margin-top: -2rem;
}

.solution-text {
  order: 1;
}

.solution-preview {
  order: 2;
  text-align: center;
  margin-top: -2rem;
}

.solution-preview-image {
  max-width: 150%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.solution-list {
  margin: 2rem 0;
}

.solution-item {
  margin-bottom: 2rem;
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.6;
}

.solution-item strong {
  color: var(--text-dark);
  font-weight: var(--fw-bold);
}

/* Solution Carousel Styles */
.solution-carousel-wrapper {
  margin: 2rem 0;
  position: relative;
}

.solution-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

.solution-card {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.solution-card.active {
  display: block;
  opacity: 1;
}

.solution-card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 500px;
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
}

.solution-card-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-white);
}

.solution-card-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--primary-red);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.solution-card-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 90%;
}

.solution-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
}

.solution-card-image img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  object-position: center;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: none;
}

.solution-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn {
  background: var(--primary-red);
  color: var(--text-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
  background: #e55347;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.carousel-btn:disabled {
  background: var(--text-light);
  cursor: not-allowed;
  transform: none;
}

.carousel-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active,
.dot:hover {
  background: var(--primary-red);
  transform: scale(1.2);
}

/* ReLoop Mobile Responsive */
@media (max-width: 768px) {
  .reloop-project {
    display: block;
  }
  
  /* Hide badge on mobile - not enough space */
  .project-hero-badge {
    display: none;
  }
  
  /* Fix hero section centering on mobile */
  .project-hero {
    text-align: center;
    padding: calc(80px + 2rem) 1rem 3rem;
  }
  
  .project-hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .project-hero-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .project-hero-text {
    text-align: center;
  }
  
  .project-hero-title {
    text-align: center;
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  
  .project-hero-description {
    text-align: center;
    margin: 1.5rem auto 2rem;
    max-width: 90%;
  }
  
  .project-hero-cta {
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  
  .sidebar-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
    padding-top: 80px;
  }
  
  .sidebar-nav.expanded {
    left: 0;
    transform: none;
  }
  
  .main-content {
    margin-left: 0 !important;
    width: 100%;
  }
  
  .sidebar-toggle {
    display: block;
    position: fixed;
    top: 90px;
    left: 20px;
    z-index: 1001;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 98, 80, 0.4);
    transition: all 0.3s ease;
  }
  
  .sidebar-toggle:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 98, 80, 0.5);
  }
  
  .solution-card-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .solution-card-text {
    padding: 2rem;
    order: 2;
  }

  .solution-card-image {
    padding: 2rem;
    order: 1;
  }

  .solution-card-image img {
    max-width: 250px;
    max-height: 350px;
  }

  .solution-carousel-nav {
    gap: 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .solution-card-text {
    padding: 1.5rem;
  }

  .solution-card-title {
    font-size: var(--fs-h3);
  }

  .solution-card-description {
    font-size: 0.9rem;
  }

  .solution-card-image img {
    max-width: 200px;
    max-height: 300px;
  }
}

.solution-image {
  margin: 3rem 0;
  text-align: center;
}

.solution-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.persona-card-new {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.persona-image {
  text-align: center;
  margin-bottom: 1.5rem;
}

.persona-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-light);
}

.persona-header {
  margin-bottom: 1rem;
}

.persona-name-new {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin: 0;
}

.persona-description {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.persona-activity {
  space-y: 0.75rem;
}

.activity-item {
  color: var(--text-medium);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.activity-item strong {
  color: var(--text-dark);
}

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

.insight-column {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.insight-category-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-light);
}

.insight-category-title.pain-points {
  color: #e74c3c;
  border-bottom-color: #e74c3c;
}

.insight-category-title.needs {
  color: #f39c12;
  border-bottom-color: #f39c12;
}

.insight-category-title.opportunities {
  color: #27ae60;
  border-bottom-color: #27ae60;
}

.insight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.insight-list li {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.insight-list li::before {
  content: "•";
  color: var(--primary-red);
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

.use-case-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-coral);
}

.use-case-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.use-case-description {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

.section-text.strong {
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
}

/* ReLoop Mobile responsive adjustments */
@media (max-width: 768px) {
  /* ReLoop Hero Section Mobile */
  .project-hero {
    padding: 100px 0 3rem;
  }
  
  .project-hero-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .project-hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    line-height: 1.2;
  }
  
  .project-hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .project-hero-cta {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 1rem 2rem;
  }
  
  /* Grid layouts */
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .personas-grid-new {
    grid-template-columns: 1fr;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .solution-feature,
  .persona-card-new,
  .insight-column,
  .use-case-card {
    padding: 1.5rem;
  }
}

/* Sidebar Navigation */
.sidebar-nav {
  position: fixed;
  top: 79px;
  left: 0;
  width: 280px;
  height: calc(100vh - 79px);
  background: #FFFFFF;
  border-right: 1px solid var(--border-light);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateX(-280px);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.sidebar-nav.expanded {
  transform: translateX(0);
}

.sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-light);
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sidebar-toggle {
  background: transparent;
  color: var(--text-medium);
  border: 1px solid var(--border-light);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
}

/* Mobile overlay for sidebar */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

@media (max-width: 768px) {
  .sidebar-overlay.active {
    display: block;
  }
}

.sidebar-toggle:hover {
  color: var(--text-dark);
  border-color: var(--text-medium);
}



.sidebar-menu {
  padding: 1rem 0;
}

.sidebar-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-medium);
  text-decoration: none;
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.sidebar-link:hover {
  background: rgba(255, 98, 80, 0.05);
  color: var(--primary-red);
}

.sidebar-link.active {
  background: rgba(255, 98, 80, 0.1);
  color: var(--primary-red);
  border-left-color: var(--primary-red);
}

/* Main Content */
.main-content {
  margin-left: 0;
  transition: margin-left 0.3s ease;
  min-height: calc(100vh - 79px);
}

.sidebar-nav.expanded + .main-content {
  margin-left: 280px;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem var(--container-padding);
}

.content-section {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
  scroll-margin-top: 100px;
}

.content-section:last-child {
  border-bottom: none;
}

.content-section .section-content {
  max-width: 100%;
  margin: 0;
}

.reloop-project .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.project-back-nav {
  flex-shrink: 0;
}

.back-link {
  color: var(--text-medium);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
}

.back-link:hover {
  color: var(--primary-red);
}

.project-hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  background: var(--bg-light);
  padding: 4rem;
  border-radius: 16px;
}

.project-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  white-space: nowrap;
}

.project-hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--primary-red);
  font-weight: var(--fw-semibold);
  margin-bottom: 2rem;
}

.project-hero-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 100%;
}

.project-meta-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

.tools-title {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin: 0;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.tools-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  flex: 1;
}

.meta-tag {
  background: var(--text-dark);
  color: var(--text-white);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  white-space: nowrap;
}

.project-hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  min-height: 500px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.project-hero-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  flex-shrink: 0;
  display: block;
}

.project-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-light);
}

.project-section:last-child {
  border-bottom: none;
  padding-bottom: 6rem;
}

.section-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 2.5rem;
  text-align: left;
}

.section-text {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.subsection-title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 2rem;
  margin-top: 3rem;
}

/* Sprint Sections */
.sprint-sections {
  margin-bottom: 3rem;
}

.section-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.section-list li {
  color: var(--text-medium);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.section-list li:before {
  content: "•";
  color: var(--primary-coral);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Tools Used */
.tools-used {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 16px;
  margin-top: 2.5rem;
}

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

.tool-item {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.7;
  padding: 1rem 0;
}

.tool-item strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: var(--fw-semibold);
}

/* Personas Section */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.persona-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.persona-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.persona-avatar {
  margin-bottom: 1.5rem;
}

.avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: 2px solid var(--border-light);
}

.persona-info {
  width: 100%;
}

.persona-name {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.persona-details {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.persona-details li {
  color: var(--text-medium);
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.persona-details li:before {
  content: "•";
  color: var(--primary-coral);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Competition Analysis */
.competition-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.competition-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
}

.competition-table thead {
  background: var(--primary-coral);
  color: white;
}

.competition-table th,
.competition-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.competition-table th {
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.competition-table td {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.5;
}

.competition-table tbody tr:hover {
  background: var(--bg-light);
}

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

.competition-insights {
  margin-top: 2rem;
}

.insights-title {
  font-size: var(--fs-h4);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.insights-list {
  list-style: none;
  padding: 0;
}

.insights-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

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

/* Prototype Section Styles */
.prototype-process {
  margin: 3rem 0;
}

.process-steps {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--primary-green);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  background: var(--primary-green);
  color: var(--text-white);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--primary-red);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.6;
}

.prototype-showcase {
  margin: 4rem 0;
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 16px;
}

.prototype-description {
  text-align: center;
  margin: 0 auto 3rem auto;
  max-width: 800px;
}

.prototype-description .section-text {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

.prototype-visual-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem auto;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}

.prototype-phones-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  display: block;
}

.prototype-phones-img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.prototype-cta-section {
  text-align: center;
  margin: 3rem auto 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  max-width: 100%;
}

.prototype-cta-section .cta-button {
  font-size: var(--fs-body);
  padding: 1.25rem 3rem;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  display: inline-block;
}

.prototype-cta-section .cta-button:hover {
  box-shadow: 0 8px 30px rgba(255, 98, 80, 0.3);
}

@media (max-width: 768px) {
  /* Table responsive */
  .competition-table-wrapper,
  .requirements-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
  }
  
  .competition-table,
  .requirements-table {
    min-width: 600px;
    font-size: 0.85rem;
  }
  
  .competition-table th,
  .competition-table td,
  .requirements-table th,
  .requirements-table td {
    padding: 0.75rem 0.5rem;
    white-space: nowrap;
  }
  
  /* Prototype section */
  .prototype-showcase {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  /* Section spacing */
  .content-section {
    padding: 2.5rem 0;
  }
  
  .content-container {
    padding: 0 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .section-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  /* Tools grid */
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .tool-item {
    font-size: 0.95rem;
    padding: 1rem;
  }

  .prototype-visual-container {
    padding: 1rem;
    margin: 2rem 0;
  }

  .prototype-description .section-text {
    font-size: var(--fs-body);
  }

  .prototype-cta-section .cta-button {
    font-size: var(--fs-body);
    padding: 1rem 2rem;
  }
}

.prototype-image-container {
  text-align: center;
  margin: 2.5rem 0;
}

.prototype-image {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.prototype-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

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

.prototype-user {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  border-top: 4px solid var(--primary-green);
  transition: var(--transition);
}

.prototype-user:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.user-name {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.user-points {
  background: var(--primary-green);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: var(--fw-bold);
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.user-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.6;
}

/* Responsive adjustments for prototype section */
@media (max-width: 768px) {
  .process-step {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
  }

  .step-number {
    align-self: center;
    margin-bottom: 1rem;
  }
  
  .step-content {
    text-align: left;
  }

  .prototype-users-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Requirements table mobile */
  .requirements-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .requirements-table {
    min-width: 600px;
  }
  
  /* Better section spacing on mobile */
  .content-section {
    padding: 2rem 0;
  }
  
  .section-content {
    padding: 0 1rem;
  }
}

/* Functional Requirements Table - Computer Terminal Style */
.requirements-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  background: var(--bg-light);
  border: 2px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.requirements-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  color: var(--text-dark);
  font-family: 'Courier New', monospace;
}

.requirements-table thead {
  background: var(--primary-coral);
  border-bottom: 2px solid var(--primary-red);
}

.requirements-table th,
.requirements-table td {
  padding: 1rem;
  text-align: left;
  font-weight: bold;
  color: var(--text-white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.requirements-table th:last-child {
  border-right: none;
}

.requirements-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.2s ease;
}

.requirements-table tbody tr:hover {
  background: var(--bg-light);
  box-shadow: inset 0 0 10px rgba(255, 138, 101, 0.1);
}

.requirements-table tbody tr:last-child {
  border-bottom: none;
}

.requirements-table td {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-medium);
  vertical-align: middle;
  border-right: 1px solid var(--border-light);
  line-height: 1.4;
}

.requirements-table td:last-child {
  border-right: none;
}

.requirements-table td:first-child {
  font-weight: normal;
  color: var(--text-dark);
  position: relative;
}

.requirements-table td:first-child::before {
  content: "REQ_" attr(data-id);
  color: var(--text-light);
  font-size: 0.7rem;
  display: block;
  margin-bottom: 0.25rem;
}

/* Status badges - Technical Style */
.status-yes {
  color: var(--primary-green);
  font-size: 0.8rem;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  display: inline-block;
  text-transform: uppercase;
  background: rgba(0, 147, 121, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--primary-green);
}

.status-yes::before {
  content: "✓ ";
  color: var(--primary-green);
}

.status-no {
  color: var(--primary-red);
  font-size: 0.8rem;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  display: inline-block;
  text-transform: uppercase;
  background: rgba(255, 98, 80, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--primary-red);
}

.status-no::before {
  content: "✗ ";
  color: var(--primary-red);
}

.status-simulated {
  color: var(--primary-yellow);
  font-size: 0.8rem;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  display: inline-block;
  text-transform: uppercase;
  background: rgba(247, 214, 132, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--primary-yellow);
}

.status-simulated::before {
  content: "~ ";
  color: var(--primary-yellow);
}

.status-basic {
  color: var(--primary-coral);
  font-size: 0.8rem;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  display: inline-block;
  text-transform: uppercase;
  background: rgba(255, 138, 101, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--primary-coral);
}

.status-basic::before {
  content: "◦ ";
  color: var(--primary-coral);
}

/* Priority badges - Technical Style */
.priority-p1 {
  color: var(--primary-red);
  font-size: 0.8rem;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  display: inline-block;
  background: rgba(255, 98, 80, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--primary-red);
}

.priority-p2 {
  color: var(--primary-coral);
  font-size: 0.8rem;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  display: inline-block;
  background: rgba(255, 138, 101, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--primary-coral);
}

.priority-p3 {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  display: inline-block;
  background: rgba(138, 138, 138, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--text-light);
}

/* Requirements table show/hide functionality */
.requirements-row.hidden {
  display: none;
}

.requirements-toggle-wrapper {
  text-align: center;
  margin-top: 1.5rem;
  background: var(--bg-light);
  padding: 1rem;
  border: 1px solid var(--border-light);
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.requirements-toggle-btn {
  background: var(--bg-white);
  color: var(--primary-coral);
  border: 2px solid var(--primary-coral);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.requirements-toggle-btn:hover {
  background: var(--primary-coral);
  color: var(--text-white);
  box-shadow: var(--shadow-soft);
}

.requirements-toggle-btn::before {
  content: "> ";
  color: inherit;
}

/* Business Plan Section */
.business-plan-section {
  background: var(--bg-light);
  padding: 3rem 0;
  margin-top: 2rem;
}

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

.business-item {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.business-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.business-title {
  font-size: clamp(1.1rem, 2.5vw, 1.375rem);
  font-weight: var(--fw-semibold);
  color: var(--primary-red);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.business-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.7;
}

.assumptions-section {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  margin-top: 2rem;
}

.assumptions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.assumptions-list li {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.assumptions-list li::before {
  content: "•";
  color: var(--primary-green);
  font-weight: bold;
  position: absolute;
  top: 0;
}

/* Prototype Section */
.prototype-section {
  background: var(--bg-white);
}

.prototype-showcase {
  display: grid;
  gap: 3rem;
}

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

.feature-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.feature-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--primary-red);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.6;
}

.prototype-image-section {
  text-align: center;
  margin: 3rem 0;
}

.prototype-image {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.prototype-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

.prototype-validation {
  margin: 3rem 0;
}

.results-grid {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  transition: var(--transition);
}

.result-item.completed {
  background: rgba(76, 175, 80, 0.1);
  border-left: 4px solid #4CAF50;
}

.result-item.planned {
  background: rgba(255, 152, 0, 0.1);
  border-left: 4px solid #FF9800;
}

.result-status {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.result-text {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.6;
}

.prototype-next-steps {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.next-steps-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.next-steps-list li {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.next-steps-list li::before {
  content: "→";
  color: var(--primary-red);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.mvp-features {
  margin: 3rem 0;
}

.mvp-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.mvp-list li {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.mvp-list li::before {
  content: "○";
  color: var(--primary-red);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Project Navigation */
.project-navigation {
  background: var(--bg-light);
  padding: 3rem 0;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.nav-btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

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

.nav-btn.primary:hover {
  background: var(--text-medium);
  transform: translateY(-2px);
}

.nav-btn.secondary {
  background: var(--bg-white);
  color: var(--text-medium);
  border: 1px solid var(--border-light);
}

.nav-btn.secondary:hover {
  color: var(--primary-red);
  border-color: var(--primary-red);
}

/* How Might We Framework */
.hmw-framework {
  margin: 3rem 0;
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 16px;
}

.hmw-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hmw-center {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-red);
  color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.hmw-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin: 0;
  line-height: 1.3;
}

.hmw-cluster {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.hmw-cluster:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.hmw-cluster-1 {
  grid-column: 2;
  grid-row: 1;
}

.hmw-cluster-2 {
  grid-column: 1;
  grid-row: 2;
}

.hmw-cluster-3 {
  grid-column: 3;
  grid-row: 2;
}

.hmw-cluster-4 {
  grid-column: 3;
  grid-row: 3;
}

.hmw-cluster-5 {
  grid-column: 2;
  grid-row: 3;
}

.hmw-cluster-6 {
  grid-column: 1;
  grid-row: 3;
}

.hmw-cluster-title {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--primary-red);
  margin-bottom: 1rem;
  line-height: 1.4;
  text-align: center;
}

.hmw-questions {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hmw-questions li {
  font-size: 0.8rem;
  color: var(--text-medium);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
}

.hmw-questions li:before {
  content: "•";
  color: var(--primary-coral);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/*-----------------------------------*\
  #BLOG SECTION
\*-----------------------------------*/

.blog-section {
  padding: calc(80px + 2rem) 0 var(--section-padding);
  background: var(--bg-white);
}

.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.blog-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.blog-subtitle {
  font-size: var(--fs-body);
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.featured-article {
  margin-bottom: 4rem;
}

.article-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  gap: 3rem;
  align-items: center;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.article-card.featured {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  border: 2px solid var(--primary-red);
}

.article-content {
  flex: 1;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}

.article-category {
  background: var(--primary-red);
  color: var(--text-white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
}

.article-date {
  color: var(--text-light);
  font-size: var(--fs-small);
}

.article-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.article-title a {
  color: inherit;
  transition: var(--transition);
}

.article-title a:hover {
  color: var(--primary-red);
}

.article-excerpt {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.read-time {
  color: var(--text-light);
  font-size: var(--fs-small);
}

.read-more {
  color: var(--primary-red);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}

.read-more:hover {
  color: var(--text-dark);
}

.article-image {
  width: 200px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.article-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-red) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  text-align: center;
}

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

.articles-grid .article-card {
  flex-direction: column;
  text-align: left;
  gap: 0;
}

.articles-grid .article-content {
  width: 100%;
}

.articles-grid .article-title {
  font-size: var(--fs-h3);
}

.articles-grid .article-image {
  width: 100%;
  height: 200px;
  margin-bottom: 1.5rem;
}

.newsletter-section {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
}

.newsletter-title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.newsletter-description {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-btn {
  background: var(--text-dark);
  color: var(--text-white);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: var(--fw-semibold);
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.newsletter-btn:hover {
  background: var(--text-medium);
  transform: translateY(-2px);
}

/*-----------------------------------*\
  #ARTICLE PAGE
\*-----------------------------------*/

.article-page {
  padding: calc(80px + 2rem) 0 var(--section-padding);
  background: var(--bg-white);
}

.article-page .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.article-back-nav {
  margin-bottom: 2rem;
}

.back-link {
  color: var(--text-medium);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.back-link:hover {
  color: var(--primary-red);
}

.article-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.article-header .article-meta {
  margin-bottom: 1.5rem;
}

.article-main-title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.article-lead {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  color: var(--text-medium);
  line-height: 1.6;
  font-weight: var(--fw-medium);
}

.article-body {
  margin-bottom: 3rem;
}

.article-section {
  margin-bottom: 2.5rem;
}

.article-text {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section-heading {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.article-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.article-list li {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table thead {
  background: var(--primary-red);
  color: white;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td {
  font-size: var(--fs-body);
  color: var(--text-medium);
  line-height: 1.5;
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

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

.key-insights {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.insights-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.insights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.insights-list li {
  color: var(--text-medium);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

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

.article-footer-section {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.article-author {
  margin-bottom: 2rem;
}

.author-name {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.author-bio {
  color: var(--text-medium);
  line-height: 1.6;
}

.article-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

  /* Checklist mobile adjustments */
  .checklist-header {
    padding: 1rem 1.5rem;
    gap: 0.75rem;
  }

  .checklist-title {
    font-size: var(--fs-body);
  }

  .checklist-content.active {
    padding: 0 1.5rem 1rem 1.5rem;
  }

  .checklist-content p {
    font-size: 0.9rem;
  }



/* Compact process steps styling for ReLoop prototype section */
.process-steps.compact {
  gap: 1.2rem !important;
  margin: 1.5rem 0 !important;
}

.process-steps.compact .process-step {
  padding: 1.25rem 1.5rem !important;
  gap: 1.25rem !important;
}

.process-steps.compact .step-description {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

.process-steps.compact .step-title {
  font-size: 1rem !important;
  margin-bottom: 0.5rem !important;
}

/* Add more spacing between sections */
.prototype-features {
  margin: 6rem 0 3rem 0;
}

/* New Prototype Showcase Styling */
.prototype-showcase-new {
  margin: 4rem 0;
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 16px;
}

.prototype-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
  margin: 2rem 0;
}

.prototype-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.prototype-cta-final {
  display: flex;
  justify-content: flex-end;
  margin-top: 3rem;
}

.prototype-cta-final .cta-button-primary {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  width: 400px;
  text-align: center;
}

.prototype-title {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--primary-red);
  margin-bottom: 0.75rem;
}

.prototype-subtitle {
  font-size: var(--fs-body);
  color: var(--text-medium);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.separator-line {
  text-align: left;
  font-size: 1.2rem;
  color: var(--text-medium);
  margin: 2rem 0;
  letter-spacing: 0.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-check {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.feature-content {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--text-medium);
}

.feature-content strong {
  color: var(--text-dark);
  font-weight: var(--fw-semibold);
}

.prototype-cta-center {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-pointer {
  font-size: 1.2rem;
}

.cta-button-primary {
  background: var(--primary-red);
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: var(--fw-bold);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 98, 80, 0.4);
  border: none;
  cursor: pointer;
}

.cta-button-primary:hover {
  background: #d63447;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 98, 80, 0.6);
}

.prototype-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.poc-demo-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Mobile responsive for new prototype section */
@media (max-width: 768px) {
  /* Prototype section mobile fixes */
  .prototype-features {
    margin: 4rem 0 2rem 0;
  }
  
  .prototype-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .prototype-showcase-new {
    padding: 2rem 1.5rem;
  }
  
  .prototype-title {
    font-size: 1.6rem;
  }
  
  .feature-item {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-content {
    font-size: var(--fs-body);
  }
  
  .prototype-cta-final {
    justify-content: center !important;
    margin-top: 2rem;
  }
  
  .prototype-cta-final .cta-button-primary {
    width: 100% !important;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .cta-button-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}


