/* ==========================================================================
   Chrome Developer Style - Design Tokens
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500&family=Roboto:wght@400;500&display=swap');

:root {
  --font-display: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --white: #ffffff;
  --grey-50: #f8f9fa;
  --grey-100: #f1f3f4;
  --grey-200: #e8eaed;
  --grey-300: #dadce0;
  --grey-600: #5f6368;
  --grey-900: #202124;
  
  --blue: #1a73e8;
  --blue-light: #e8f0fe;
  --blue-dark: #174ea6;
  --green: #34a853;
  --green-light: #e6f4ea;
  --red: #ea4335;
  --red-light: #fce8e6;
  --yellow: #fbbc04;
  --yellow-light: #fef7e0;
  --orange: #f57c00;
  --orange-light: #fff3e0;
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

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

section {
  padding: 80px 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  color: var(--grey-900);
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  color: var(--grey-600);
  line-height: 1.7;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Header - Hidden until scrolled
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.header.visible {
  transform: translateY(0);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.logo-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--grey-600);
}

.nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  padding: 8px 16px;
  font-size: 14px;
  color: var(--grey-900);
  text-decoration: none;
  border-radius: 4px;
}

.nav-link:hover {
  background: var(--grey-100);
  text-decoration: none;
}

.header-cta {
  padding: 8px 16px;
  font-size: 14px;
  color: var(--blue);
  text-decoration: none;
}

.header-cta:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nav, .header-cta { display: none; }
}

/* ==========================================================================
   Landing - Minimal Choice Screen
   ========================================================================== */

.landing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: var(--grey-50);
}

.landing-content {
  max-width: 1100px;
  width: 100%;
}

.choice-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.choice-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.choice-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  text-decoration: none;
}

.choice-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 20px 20px 0;
}

.choice-image.orange {
  background: linear-gradient(135deg, #ffb74d 0%, #f57c00 100%);
}

.choice-image.green {
  background: linear-gradient(135deg, #81c995 0%, #34a853 100%);
}

.choice-image svg {
  width: 100%;
  height: 100%;
  max-width: 200px;
}

.choice-content {
  padding: 24px;
}

.choice-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-600);
  background: var(--grey-100);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.choice-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--grey-900);
  margin: 0 0 12px;
}

.choice-content p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-600);
  margin: 0 0 20px;
}

.choice-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  padding: 12px 24px;
  border: 1px solid var(--blue);
  border-radius: 24px;
  transition: background 0.2s ease;
}

.choice-card:first-child .choice-btn {
  color: var(--orange);
  border-color: var(--orange);
}

.choice-card:first-child:hover .choice-btn {
  background: var(--orange-light);
}

.choice-card:last-child .choice-btn {
  color: var(--green);
  border-color: var(--green);
}

.choice-card:last-child:hover .choice-btn {
  background: var(--green-light);
}

/* Projects Card - Secondary */
.projects-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 16px 28px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.projects-card:hover {
  background: var(--grey-50);
  border-color: var(--grey-300);
  text-decoration: none;
}

.projects-icon {
  width: 24px;
  height: 24px;
  color: var(--grey-600);
}

.projects-icon svg {
  width: 100%;
  height: 100%;
}

.projects-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--grey-900);
}

.projects-arrow {
  font-size: 16px;
  color: var(--grey-600);
  transition: transform 0.2s ease;
}

.projects-card:hover .projects-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .choice-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .choice-image {
    height: 180px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}

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

.btn.primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 1px 3px rgba(26, 115, 232, 0.3);
  text-decoration: none;
}

.btn.outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--grey-300);
}

.btn.outline:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  text-decoration: none;
}

/* ==========================================================================
   Feature Cards - Chrome style large cards with images
   ========================================================================== */

.features {
  padding: 0 0 80px;
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  padding: 24px 24px 32px;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-image {
  height: 200px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image svg {
  width: 120px;
  height: 120px;
}

.feature-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-600);
  border: 1px solid var(--grey-300);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.feature-card h2 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.feature-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-card .btn {
  margin-top: auto;
}

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

/* ==========================================================================
   Professional Page - Google Style Layout
   ========================================================================== */

.pro-hero {
  padding: 120px 24px 80px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.pro-hero-content {
  max-width: 640px;
}

.pro-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--grey-900);
}

.pro-hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey-600);
  margin-bottom: 24px;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.audience-tags span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey-600);
  background: var(--grey-100);
  padding: 8px 16px;
  border-radius: 100px;
}

/* Pro Section Grid Layout */
.pro-section {
  padding: 80px 24px;
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-200);
}

.pro-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.pro-intro {
  position: sticky;
  top: 100px;
}

.pro-intro-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pro-intro-icon.orange {
  background: var(--orange);
  color: white;
}

.pro-intro-icon.blue {
  background: var(--blue);
  color: white;
}

.pro-intro-icon.green {
  background: var(--green);
  color: white;
}

.pro-intro-icon.grey {
  background: var(--grey-600);
  color: white;
}

.pro-intro-icon svg {
  width: 24px;
  height: 24px;
}

.pro-intro h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
}

.pro-intro > p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Pro Cards */
.pro-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pro-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.pro-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.pro-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pro-card-icon.orange {
  background: var(--orange);
  color: white;
}

.pro-card-icon.blue {
  background: var(--blue);
  color: white;
}

.pro-card-icon.green {
  background: var(--green);
  color: white;
}

.pro-card-icon.muted {
  opacity: 0.4;
}

.pro-card-icon svg {
  width: 24px;
  height: 24px;
}

.pro-card h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}

.pro-card > p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Progressive disclosure details */
.pro-details {
  margin-bottom: 16px;
}

.pro-details summary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  cursor: pointer;
  padding: 8px 0;
  list-style: none;
}

.pro-details summary::-webkit-details-marker {
  display: none;
}

.pro-details summary::before {
  content: "+ ";
}

.pro-details[open] summary::before {
  content: "− ";
}

.pro-details ul {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
}

.pro-details li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey-600);
  padding: 6px 0 6px 20px;
  position: relative;
}

.pro-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--grey-300);
  border-radius: 50%;
}

.pro-card-courses {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-pill {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  background: var(--orange-light);
  padding: 6px 12px;
  border-radius: 100px;
}

/* Tool cards */
.pro-card.tool-card {
  text-decoration: none;
  display: block;
}

.pro-card.tool-card:hover {
  border-color: var(--blue);
  text-decoration: none;
}

.pro-card.tool-card.coming {
  opacity: 0.6;
  cursor: default;
}

.pro-card.tool-card.coming:hover {
  border-color: var(--grey-200);
  box-shadow: none;
}

.card-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
}

/* Pricing cards */
.pro-pricing {
  background: var(--white);
}

.pricing-cards .pro-card {
  background: var(--grey-50);
  border: none;
}

.pricing-cards .pro-card:hover {
  background: var(--grey-100);
}

.price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--grey-900);
  margin-bottom: 12px;
}

.price span {
  font-size: 16px;
  color: var(--grey-600);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.pricing-features li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey-600);
  padding: 6px 0 6px 24px;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 500;
}

/* About trainer */
.pro-about {
  padding: 60px 24px;
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-200);
}

.pro-about-content {
  max-width: 640px;
}

.pro-about h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.pro-about p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.credential-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credential-tags span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-600);
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 6px 12px;
  border-radius: 100px;
}

/* ==========================================================================
   Tools Hero - Primary Product Section
   ========================================================================== */

.tools-hero {
  padding: 80px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.tools-header {
  margin-bottom: 48px;
}

.tools-header h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}

.tools-header p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--grey-600);
  max-width: 600px;
}

.tools-showcase {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Featured Tool Card */
.tool-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.tool-feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--blue);
  text-decoration: none;
}

.tool-feature-image {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.tool-feature-image.blue {
  background: linear-gradient(135deg, #4fc3f7 0%, #1a73e8 100%);
}

.tool-feature-image.orange {
  background: linear-gradient(135deg, #ffb74d 0%, #f57c00 100%);
}

.tool-feature-image svg {
  width: 100%;
  max-width: 240px;
  height: auto;
}

.tool-feature-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tool-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}

.tool-badge.orange {
  color: var(--orange);
  background: var(--orange-light);
}

.tool-feature-content h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--grey-900);
}

.tool-feature-content > p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-600);
  margin-bottom: 20px;
}

.tool-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tool-features-list li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey-600);
  padding-left: 20px;
  position: relative;
}

.tool-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 500;
}

.tool-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
}

/* Secondary Tools Grid */
.tools-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tool-card-large {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.tool-card-large:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: var(--blue);
  text-decoration: none;
}

.tool-card-large.coming-soon {
  opacity: 0.85;
}

.tool-card-large.coming-soon:hover {
  border-color: var(--grey-200);
  box-shadow: none;
}

.tool-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.tool-card-image.blue {
  background: linear-gradient(135deg, #4fc3f7 0%, #1a73e8 100%);
}

.tool-card-image.orange {
  background: linear-gradient(135deg, #ffb74d 0%, #f57c00 100%);
}

.tool-card-image svg {
  width: 100%;
  max-width: 140px;
  height: auto;
}

.tool-card-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tool-card-content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--grey-900);
}

.tool-card-content > p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-600);
  margin-bottom: 16px;
  flex: 1;
}

.tool-status {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey-600);
  font-style: italic;
}

@media (max-width: 900px) {
  .tool-feature-card {
    grid-template-columns: 1fr;
  }
  
  .tool-feature-image {
    min-height: 200px;
  }
  
  .tool-feature-content {
    padding: 32px;
  }
  
  .tool-features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .tools-secondary {
    grid-template-columns: 1fr;
  }
}

/* Contact CTA */
.pro-contact {
  padding: 80px 24px;
  background: var(--orange-light);
  text-align: center;
}

.pro-contact h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}

.pro-contact p {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .pro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pro-intro {
    position: static;
  }
  
  .pro-cards {
    grid-template-columns: 1fr;
  }
  
  .pro-tools .pro-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pro-hero {
    padding: 100px 24px 60px;
  }
  
  .pro-section {
    padding: 60px 24px;
  }
  
  .pro-tools .pro-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Education Page
   ========================================================================== */

/* Education Hero */
.edu-hero {
  padding: 120px 24px 80px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.edu-hero-content {
  max-width: 640px;
}

.edu-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--grey-900);
}

.edu-hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey-600);
  margin-bottom: 24px;
}

.audience-tags.green span {
  background: var(--green-light);
  color: var(--green);
}

/* Education Tools Section */
.edu-tools {
  padding: 80px 24px;
  background: var(--green-light);
  border-bottom: 1px solid rgba(52, 168, 83, 0.15);
}

.tool-feature-card.edu:hover {
  border-color: var(--green);
}

.tool-feature-image.green {
  background: linear-gradient(135deg, #81c995 0%, #34a853 100%);
}

.tool-badge.green {
  color: var(--green);
  background: rgba(52, 168, 83, 0.12);
}

.tool-cta.green {
  color: var(--green);
}

/* Coming soon card */
.tools-coming {
  margin-top: 24px;
}

.coming-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px dashed var(--grey-300);
  border-radius: 12px;
  padding: 32px;
}

.coming-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coming-icon svg {
  width: 28px;
  height: 28px;
  color: var(--grey-600);
}

.coming-content h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}

.coming-content p {
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 12px;
}

.text-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.text-link.green {
  color: var(--green);
}

.text-link:hover {
  text-decoration: underline;
}

/* Education Section Grid */
.edu-section {
  padding: 80px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.edu-section.edu-uses {
  background: var(--grey-50);
}

.edu-grid-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.edu-intro {
  position: sticky;
  top: 100px;
}

.edu-intro-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.edu-intro-icon.green {
  background: var(--green);
  color: white;
}

.edu-intro-icon.blue {
  background: var(--blue);
  color: white;
}

.edu-intro-icon svg {
  width: 24px;
  height: 24px;
}

.edu-intro h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
}

.edu-intro > p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--grey-50);
  border-radius: 12px;
  padding: 28px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.step-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

/* Use Cases Grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.use-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 24px;
}

.use-card h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--grey-900);
}

.use-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

/* Education About */
.edu-about {
  padding: 60px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.edu-about-content {
  max-width: 640px;
}

.edu-about h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.edu-about p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
}

/* Education Contact */
.edu-contact {
  padding: 80px 24px;
  background: var(--green-light);
  text-align: center;
}

.edu-contact h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}

.edu-contact p {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 24px;
}

.btn.green-btn {
  background: var(--green);
  border-color: var(--green);
}

.btn.green-btn:hover {
  background: #2e7d32;
  border-color: #2e7d32;
}

/* Responsive */
@media (max-width: 900px) {
  .edu-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .edu-intro {
    position: static;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .edu-hero {
    padding: 100px 24px 60px;
  }
  
  .edu-section {
    padding: 60px 24px;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .coming-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Featured Training - Fusion 360
   ========================================================================== */

.featured-training {
  padding: 0 0 40px;
  background: var(--grey-50);
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
  border-radius: 20px;
  padding: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.featured-card.orange {
  border: 1px solid rgba(245, 124, 0, 0.2);
}

.featured-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--orange);
  background: white;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.featured-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-content p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.featured-courses {
  margin-bottom: 24px;
}

.course-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey-900);
  padding: 8px 0;
}

.course-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.btn.orange-btn {
  background: var(--orange);
  border-color: var(--orange);
}

.btn.orange-btn:hover {
  background: #e65100;
  border-color: #e65100;
}

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

.featured-image svg {
  width: 100%;
  max-width: 280px;
  height: auto;
}

@media (max-width: 800px) {
  .featured-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  
  .featured-image {
    order: -1;
  }
  
  .featured-image svg {
    max-width: 200px;
  }
}

/* ==========================================================================
   Also Available - SketchUp
   ========================================================================== */

.also-available {
  padding: 0 0 60px;
  background: var(--grey-50);
}

.also-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-align: center;
}

.software-grid.single {
  max-width: 400px;
  margin: 0 auto;
}

/* ==========================================================================
   Software Cards
   ========================================================================== */

.software-cards {
  padding: 0 0 60px;
  background: var(--grey-50);
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.software-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.software-image {
  height: 160px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.software-image.orange {
  background: linear-gradient(135deg, #ffb74d 0%, #f57c00 100%);
}

.software-image.blue {
  background: linear-gradient(135deg, #64b5f6 0%, #1a73e8 100%);
}

.software-image svg {
  width: 120px;
  height: 120px;
}

.software-card h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}

.software-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.software-tools {
  text-align: left;
  background: var(--grey-50);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.software-tools .tools-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--grey-600);
  margin-bottom: 10px;
}

.software-tool-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--blue);
  text-decoration: none;
  padding: 6px 0;
}

.software-tool-link:hover {
  text-decoration: underline;
}

.software-tool-link .tool-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.btn.outline.orange {
  color: var(--orange);
  border-color: var(--orange);
}

.btn.outline.orange:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
}

.btn.outline.blue {
  color: var(--blue);
  border-color: var(--blue);
}

.btn.outline.blue:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
}

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

/* ==========================================================================
   Pillars - Icon grid
   ========================================================================== */

.pillars {
  padding: 0 0 60px;
  background: var(--grey-50);
}

.professional-pillars {
  background: var(--grey-50);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillars-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 24px;
}

.pillar-icon {
  margin-bottom: 16px;
}

.pillar-icon svg {
  width: 48px;
  height: 48px;
}

.pillar-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}

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

.pillar-links li {
  margin-bottom: 10px;
}

.pillar-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-links a::before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--blue-light);
  border-radius: 4px;
  flex-shrink: 0;
}

.pillar-links a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .pillars-grid,
  .pillars-grid.three-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .pillars-grid,
  .pillars-grid.three-col {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Training Section
   ========================================================================== */

.training {
  padding: 40px 0 60px;
  background: var(--grey-50);
}

.subsection-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.subsection-intro {
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 24px;
}

.training-formats {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.format-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
}

.format-item strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
}

.format-item span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey-600);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .training-formats {
    flex-direction: column;
  }
}

.pricing-box {
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  font-size: 15px;
  color: var(--grey-900);
}

.pricing-box.blue {
  background: var(--blue-light);
}

.pricing-box.blue strong {
  color: var(--blue);
}

.pricing-box.green {
  background: var(--green-light);
}

.pricing-box.green strong {
  color: var(--green);
}

.pricing-box.orange {
  background: var(--orange-light);
}

.pricing-box.orange strong {
  color: var(--orange);
}

/* ==========================================================================
   Personal Projects - Concertina Accordion
   ========================================================================== */

.personal-projects {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
}

.projects-header {
  text-align: center;
  margin-bottom: 40px;
}

.projects-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.projects-header p {
  font-family: var(--font-body);
  font-size: 16px;
}

.project-accordion {
  display: flex;
  gap: 16px;
  height: 320px;
  max-width: 1000px;
  margin: 0 auto;
}

.project-card {
  position: relative;
  flex: 1 1 80px;
  min-width: 80px;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 
    flex 300ms ease,
    border-color 0.2s,
    box-shadow 0.2s;
}

.project-card:hover,
.project-card.active {
  flex: 5 1 400px;
  border-color: var(--grey-300);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.project-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
  transition: opacity 300ms ease;
  cursor: pointer;
}

.project-card:hover .project-card-image,
.project-card.active .project-card-image {
  opacity: 0.3;
}

.project-card-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 0%, var(--white) 100%);
  transition: opacity 300ms ease;
}

.project-card.has-image .project-card-front {
  background: linear-gradient(180deg, transparent 30%, var(--white) 100%);
}

.project-number {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 10px;
  border-radius: 100px;
}

.project-card-front h3 {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-900);
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  transition: all 300ms ease;
}

.project-card:hover .project-card-front h3,
.project-card.active .project-card-front h3 {
  writing-mode: horizontal-tb;
  transform: rotate(0deg);
}

.project-card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 56px 24px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  overflow-y: auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
}

.project-card:hover .project-card-content,
.project-card.active .project-card-content {
  opacity: 1;
  pointer-events: auto;
}

.project-card:hover .project-card-front,
.project-card.active .project-card-front {
  opacity: 0;
  pointer-events: none;
}

.project-card-content h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 12px;
}

.project-card-content p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(32, 33, 36, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 700px) {
  .project-accordion {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }
  
  .project-card {
    min-width: 100%;
    height: 80px;
    flex: none;
  }
  
  .project-card:hover,
  .project-card.active {
    height: 280px;
  }
  
  .project-card-front h3 {
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
  }
  
  .project-card-front {
    flex-direction: row;
    align-items: center;
    padding-left: 72px;
  }
  
  .project-number {
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ==========================================================================
   What You'll Learn - Courses
   ========================================================================== */

.learn-section {
  margin: 32px 0;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
}

.learn-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--grey-900);
}

.courses-grid {
  display: grid;
  gap: 16px;
}

.course-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--grey-50);
  border-radius: 8px;
}

.course-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.course-icon.orange {
  background: var(--orange);
}

.course-content h5 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--grey-900);
}

.course-content p {
  font-family: var(--font-body);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

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

/* ==========================================================================
   Tools Section
   ========================================================================== */

.tools-section-wrap {
  padding: 40px 0 60px;
  background: var(--grey-50);
}

.tools-section-wrap.education-tools {
  background: var(--green-light);
  padding: 40px 0 80px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.tool-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tool-card:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.1);
  text-decoration: none;
}

.tool-card.green-border:hover {
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(52, 168, 83, 0.15);
}

.tool-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}

.tool-icon.blue {
  background: var(--blue-light);
}

.tool-icon.green {
  background: var(--green-light);
  border: 1px solid rgba(52, 168, 83, 0.2);
}

.tool-info strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-900);
  margin-bottom: 2px;
}

.tool-info span {
  font-size: 13px;
  color: var(--grey-600);
}

.tools-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--grey-600);
}

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

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
  background: var(--white);
}

.about h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

.about p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 24px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-tags span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey-600);
  background: var(--grey-100);
  padding: 6px 12px;
  border-radius: 100px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
  background: var(--grey-50);
  text-align: center;
}

.contact h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}

.contact p {
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 20px;
}

.email-link {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--blue);
}

/* ==========================================================================
   Projects Page
   ========================================================================== */

.projects-hero {
  padding: 120px 24px 60px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.projects-hero-content {
  max-width: 640px;
}

.projects-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  margin-bottom: 16px;
}

.projects-hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey-600);
  margin-bottom: 24px;
}

.projects-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ptag {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
}

.ptag.orange {
  color: #e65100;
  background: #fff3e0;
}

.ptag.green {
  color: #2e7d32;
  background: #e8f5e9;
}

.ptag.purple {
  color: #7b1fa2;
  background: #f3e5f5;
}

.ptag.brown {
  color: #5d4037;
  background: #efebe9;
}

.ptag.teal {
  color: #00796b;
  background: #e0f2f1;
}

.projects-section {
  padding: 60px 24px 80px;
  background: var(--grey-50);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.project-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.project-item.placeholder {
  opacity: 0.6;
  border-style: dashed;
}

.project-item.placeholder:hover {
  box-shadow: none;
}

.project-image {
  height: 200px;
  overflow: hidden;
  background: var(--grey-100);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.project-content {
  padding: 24px;
}

.project-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.project-tag.muted {
  color: var(--grey-600);
  background: var(--grey-100);
}

.project-tag.purple {
  color: #7b1fa2;
  background: #f3e5f5;
}

.project-tag.orange {
  color: #e65100;
  background: #fff3e0;
}

.project-tag.green {
  color: #2e7d32;
  background: #e8f5e9;
}

.project-tag.brown {
  color: #5d4037;
  background: #efebe9;
}

.project-tag.teal {
  color: #00796b;
  background: #e0f2f1;
}

.project-content h2 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.project-content > p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

.project-details {
  margin-top: 16px;
  border-top: 1px solid var(--grey-200);
  padding-top: 16px;
}

.project-details summary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
}

.project-details summary::-webkit-details-marker {
  display: none;
}

.project-details summary::before {
  content: "+ ";
}

.project-details[open] summary::before {
  content: "− ";
}

.project-details-content {
  padding-top: 16px;
}

.project-details-content p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--grey-100);
}

.project-meta span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--grey-600);
}

/* See More Button */
.see-more-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--blue-light);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  cursor: pointer;
  transition: background 0.2s;
}

.see-more-btn:hover {
  background: #d2e3fc;
}

/* Project Modal */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.project-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 33, 36, 0.8);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.project-modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--grey-100);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  color: var(--grey-600);
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--grey-200);
}

.modal-header {
  padding: 32px 32px 0;
}

.modal-header h2 {
  font-size: 28px;
  font-weight: 400;
  margin-top: 12px;
}

.modal-body {
  padding: 24px 32px 32px;
  max-height: calc(90vh - 120px);
  overflow-y: auto;
}

.modal-description p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--grey-600);
}

.meta-value {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--grey-900);
}

.modal-gallery {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
}

.modal-gallery h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--grey-100);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-item img:hover {
  transform: scale(1.02);
}

.gallery-item.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--grey-300);
  background: var(--grey-50);
}

.gallery-item.coming-soon span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--grey-600);
  text-align: center;
  padding: 12px;
}

@media (max-width: 600px) {
  .modal-content {
    max-height: 95vh;
  }
  
  .modal-header,
  .modal-body {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .modal-header h2 {
    font-size: 24px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.projects-cta {
  padding: 60px 24px;
  background: var(--white);
  text-align: center;
  border-top: 1px solid var(--grey-200);
}

.projects-cta p {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-hero {
    padding: 100px 24px 48px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  padding: 24px;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  text-align: center;
}

.footer p {
  font-size: 13px;
  color: var(--grey-600);
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  font-size: 14px;
  z-index: 1000;
}

.skip-link:focus {
  top: 8px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
