/* Berkeley Vibe Camp - CSS Styles */

/* CSS Variables - Design System */
:root {
  /* Colors */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(212, 100%, 19%);
  --primary: hsl(212, 100%, 19%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(43, 98%, 54%);
  --secondary-foreground: hsl(212, 100%, 19%);
  --cta: hsl(45, 100%, 52%);
  --cta-foreground: hsl(212, 100%, 19%);
  --muted: hsl(210, 20%, 96%);
  --muted-foreground: hsl(212, 30%, 45%);
  --accent: hsl(45, 100%, 51%);
  --accent-foreground: hsl(212, 100%, 19%);
  --border: hsl(210, 20%, 90%);
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(212, 100%, 19%) 0%, hsl(212, 100%, 25%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(43, 98%, 54%) 0%, hsl(45, 100%, 51%) 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(210, 20%, 98%) 100%);
  
  /* Shadows */
  --shadow-elegant: 0 4px 24px -4px hsl(212, 100%, 19% / 0.12);
  --shadow-card: 0 2px 16px -2px hsl(212, 100%, 19% / 0.08);
  --shadow-gold: 0 8px 32px -8px hsl(43, 98%, 54% / 0.3);
  
  /* Border Radius */
  --radius: 0.5rem;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 1rem;
}

/* Tablet and desktop view */
@media (min-width: 768px) {
  .nav-container {
    height: 64px;
  }
}

.nav-logo {
  height: 32px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Tablet view */
@media (min-width: 768px) {
  .nav-logo {
    height: 36px;
  }
}

/* Desktop view */
@media (min-width: 1024px) {
  .nav-logo {
    height: 40px;
  }
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  display: none;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem;
  color: var(--foreground);
  text-decoration: none;
}

.mobile-menu a:hover {
  background: var(--muted);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .nav-cta {
    display: block;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: calc(var(--radius) * 2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 1rem;
}

.btn-cta {
  background: var(--secondary);
  color: var(--primary);
}

.btn-cta:hover {
  background: hsl(43, 98%, 48%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: white;
  border: 2px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--muted);
  border-color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(212, 100%, 19%, 0.4), hsl(212, 100%, 19%, 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: white;
}

.hero-logo {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Tablet view */
@media (min-width: 768px) {
  .hero-logo {
    height: 50px;
  }
}

/* Desktop view */
@media (min-width: 1024px) {
  .hero-logo {
    height: 60px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--primary);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title span {
  background: linear-gradient(to right, var(--secondary), var(--cta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s;
}

.hero-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.hero-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  background: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.hero-feature-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.hero-feature-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-info-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.hero-info-pill {
  padding: 0.625rem 1.25rem;
  background: hsl(212, 100%, 19%, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Section Styles */
.section {
  padding: 2rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title span {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

/* Card Styles */
.card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.benefits-extra {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  margin-top: 3rem;
}

.benefits-extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.benefits-stats {
  background: var(--primary);
  border-radius: 1rem;
  padding: 2rem;
  color: white;
}

.benefits-stats-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefits-stats-text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.benefits-stats-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Program Details */
.program-details-card {
  background: linear-gradient(135deg, hsl(0 0% 100%) 0%, hsl(210 20% 98%) 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsl(212 35% 90%);
}

.program-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem 3rem;
  margin-bottom: 2.5rem;
}

.program-detail-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.program-detail-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: hsl(212 85% 22%);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 12px 35px -15px hsl(212 85% 22%);
}

.program-detail-icon svg {
  width: 34px;
  height: 34px;
}

.program-detail-label {
  font-size: 0.95rem;
  color: hsl(212 30% 45%);
  font-weight: 600;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.program-detail-value {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--foreground);
  line-height: 1.3;
}

.program-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.program-stat {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-elegant);
}

.program-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.program-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Journey Timeline */
.journey-timeline {
  display: grid;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Top grid: 4 cards (Day 1-4) */
.journey-timeline-top {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 3rem;
}

/* Bottom grid: 3 cards (Day 5-7) - centered */
.journey-timeline-bottom {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .journey-timeline-bottom {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .journey-timeline-top,
  .journey-timeline-bottom {
    grid-template-columns: 1fr;
  }
}

.journey-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
  align-items: stretch;
}

.journey-icon {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  background: hsl(215 80% 25%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 10;
  box-shadow: 0 25px 45px -25px hsl(215 80% 25%);
  margin: 0 auto -44px;
}

.journey-icon svg {
  width: 34px;
  height: 34px;
}

.journey-content {
  flex: 1;
  background: white;
  border-radius: 1rem;
  padding: 3.5rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsl(212 30% 92%);
  position: relative;
}

.journey-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(215 80% 95%);
  color: hsl(215 80% 30%);
  padding: 0.35rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.journey-title {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.journey-description {
  color: hsl(214 30% 40%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

.journey-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.journey-highlights li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1rem;
  color: var(--foreground);
  font-weight: 500;
}

.journey-highlights li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: hsl(215 80% 35%);
  font-size: 1.25rem;
}

/* Daily Schedule Section */
.schedule-section {
  background: var(--gradient-subtle);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Center Day 4 and Day 5 */
.schedule-row-center {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.schedule-note {
  max-width: 900px;
  margin: 2.5rem auto 0;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-elegant);
  border: 1px dashed hsl(43, 98%, 54%);
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.7;
}

.schedule-note p:first-child {
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
}

.schedule-day-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsl(212 30% 92%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.schedule-day-header {
  padding: 0.85rem 1.25rem;
  background: linear-gradient(90deg, hsl(212, 100%, 19%), hsl(212, 80%, 30%));
  color: #fff;
}

.schedule-day-label {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.schedule-table tbody tr:nth-child(even):not(.schedule-homework-row) {
  background: hsl(210, 20%, 98%);
}

.schedule-time {
  white-space: nowrap;
  padding: 0.65rem 0.9rem;
  font-weight: 600;
  color: var(--muted-foreground);
  border-bottom: 1px solid hsl(210, 20%, 94%);
  width: 34%;
}

.schedule-activity {
  padding: 0.65rem 0.9rem 0.65rem 0.5rem;
  border-bottom: 1px solid hsl(210, 20%, 94%);
  color: var(--foreground);
}

.schedule-homework-row .schedule-time,
.schedule-homework-row .schedule-homework-label {
  background: hsl(43, 98%, 54%, 0.12);
  color: hsl(43, 98%, 35%);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 34%;
  white-space: nowrap;
  padding: 0.65rem 0.9rem;
}

.schedule-homework-row .schedule-activity {
  background: hsl(43, 98%, 54%, 0.05);
  font-style: italic;
}

/* Responsive tweaks for schedule */
@media (max-width: 1100px) {
  .schedule-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 100%;
  }
  
  .schedule-row-center {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .schedule-row-center {
    grid-column: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .schedule-day-card {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .schedule-table {
    font-size: 0.85rem;
  }
  
  .schedule-time {
    display: block;
    width: 100%;
    border-bottom: none;
    padding-bottom: 0.15rem;
    padding-top: 0.65rem;
  }

  .schedule-activity {
    display: block;
    border-top: none;
    padding-top: 0;
    padding-bottom: 0.65rem;
  }

  .schedule-table tbody tr {
    display: block;
    padding: 0.5rem 0.9rem;
    border-bottom: 1px solid hsl(210, 20%, 94%);
  }

  .schedule-table tbody tr:last-child {
    border-bottom: none;
  }
  
  /* Fix homework row alignment on mobile */
  .schedule-homework-row .schedule-time {
    display: block;
    width: 100%;
    padding: 0.65rem 0.9rem;
    margin-bottom: 0.25rem;
  }
  
  .schedule-homework-row .schedule-activity {
    display: block;
    padding: 0.65rem 0.9rem;
    padding-top: 0;
  }
}

/* Why SCET Section */
.why-scet-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-elegant);
  margin-bottom: 2rem;
  
}

.why-scet-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.why-scet-point {
  text-align: center;
}

.why-scet-point-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 1rem;
  background: hsl(215 80% 25%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 18px 40px -20px hsl(215 80% 25%);
}

.why-scet-point-icon svg {
  width: 30px;
  height: 30px;
}

.why-scet-point h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.why-scet-point p {
  color: hsl(214 30% 45%);
  font-size: 1rem;
  line-height: 1.6;
}

.why-scet-bottom {
  background: hsl(215 80% 25%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: white;
  box-shadow: var(--shadow-elegant);
}
.why-scet-bottom p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Student Showcase */
.showcase-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: none;
  background: white;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 0.875rem;
}

.filter-btn:hover {
  background: hsl(212, 100%, 19%, 0.1);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-elegant);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.showcase-card {
  background: white;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(212 35% 92%);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.showcase-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.showcase-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-image-wrapper img {
  transform: scale(1.05);
}

.showcase-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: hsl(45 100% 60%);
  color: hsl(215 80% 20%);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px -10px hsl(45 100% 50%);
}

.showcase-category-pill {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.showcase-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.showcase-title-row h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
}

.showcase-link {
  width: 40px;
  height: 40px;
  border-radius: 0.85rem;
  border: none;
  background: hsl(212 40% 95%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.showcase-link:hover {
  background: hsl(212 40% 90%);
}

.showcase-student {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.showcase-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
}

.showcase-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.showcase-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  padding: 0.25rem 0.5rem;
  background: hsl(212, 100%, 19%, 0.1);
  color: var(--primary);
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.tech-tag.muted {
  background: hsl(212 30% 96%);
  color: hsl(212 25% 45%);
}

.showcase-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.showcase-modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 47, 0.55);
  backdrop-filter: blur(2px);
}

.showcase-modal-content {
  position: relative;
  background: white;
  border-radius: 1.5rem;
  max-width: 640px;
  width: 90%;
  max-height: 90vh;
  box-shadow: 0 30px 80px -40px rgba(0, 33, 98, 0.7);
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.modal-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}

.modal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: #f4d65d;
  color: #03122f;
  border: 2px solid #f4d65d;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(244, 214, 93, 0.3);
}

.modal-badge::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2303122f'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  display: inline-block;
  flex-shrink: 0;
}

.modal-body-scrollable {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: hsl(212 30% 80%) transparent;
}

.modal-body-scrollable::-webkit-scrollbar {
  width: 8px;
}

.modal-body-scrollable::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body-scrollable::-webkit-scrollbar-thumb {
  background: hsl(212 30% 80%);
  border-radius: 4px;
}

.modal-body-scrollable::-webkit-scrollbar-thumb:hover {
  background: hsl(212 30% 70%);
}

.modal-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid hsl(212 20% 90%);
}

.modal-header h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
  line-height: 1.2;
}

.modal-student {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-avatar-large {
  width: 48px;
  height: 48px;
  font-size: 1.125rem;
}

.modal-student-name {
  font-weight: 600;
  color: var(--foreground);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.modal-student small {
  color: hsl(212 30% 50%);
  font-size: 0.875rem;
}

.modal-section {
  padding-top: 1rem;
}

.modal-section h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.modal-section p {
  color: var(--foreground);
  line-height: 1.7;
  margin: 0;
  font-size: 0.9375rem;
}

.modal-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal-tech-list .tech-tag {
  background: hsl(212 20% 96%);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-gold);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
  color: var(--secondary);
}

.testimonial-content {
  font-style: italic;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1.125rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonials-stats {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  max-width: 48rem;
  margin: 0 auto;
}

.testimonials-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.testimonial-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.testimonial-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Life on Campus */
.campus-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .campus-gallery {
    grid-template-columns: 1fr;
  }
}

.campus-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.campus-card:hover {
  box-shadow: var(--shadow-gold);
}

.campus-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.campus-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.campus-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.campus-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.campus-map-container {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}

.campus-map-header {
  padding: 1.5rem;
  background: hsl(212, 100%, 19%, 0.05);
}

.campus-map-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.campus-map {
  width: 100%;
  height: 384px;
  border: none;
}

.campus-map-footer {
  padding: 1.5rem;
  background: hsl(210, 20%, 96%);
}

/* Pricing Section */
.pricing-countdown {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-gold);
  margin-bottom: 3rem;
  text-align: center;
}

.countdown-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  box-shadow: var(--shadow-elegant);
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--accent);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-card);
}

.pricing-label {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-amount {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-features {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
}

.pricing-features-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-features-title span {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.pricing-feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 0.125rem;
}

.pricing-feature-text {
  color: var(--foreground);
}

/* FAQ Section */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
  border: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  padding: 0;
  color: var(--foreground);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--muted-foreground);
  line-height: 1.6;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}

.faq-cta {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  margin-top: 3rem;
}

.faq-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-cta-text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-elegant);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsl(43, 98%, 54%, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(43, 98%, 54%, 0.3);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--secondary);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.cta-input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-size: 1rem;
}

.cta-input::placeholder {
  color: var(--muted-foreground);
}

.cta-benefits {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-logo-small {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}

.footer-logo-large {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.125rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-social-section {
  display: flex;
  flex-direction: column;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
  flex-shrink: 0;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-affiliation {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-bottom-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: white;
}

/* SCET Showcase */
.scet-showcase-section {
  background: var(--gradient-subtle);
}

.scet-showcase-section .container {
  text-align: center;
}

.scet-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsl(212, 100%, 19%, 0.08);
  border: 1px solid hsl(212, 100%, 19%, 0.2);
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--primary);
}

.scet-showcase-subtitle {
  max-width: 720px;
  margin: 1rem auto 2rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.scet-view-toggle {
  display: inline-flex;
  gap: 0.75rem;
  background: white;
  padding: 0.5rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-card);
  margin-bottom: 2rem;
}

.scet-view-btn {
  border: none;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  background: transparent;
  font-weight: 600;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.scet-view-btn.active {
  background: var(--primary);
  color: white;
}

.scet-view {
  display: none;
  text-align: left;
}

.scet-view.active {
  display: block;
}

.scet-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid hsl(212, 100%, 19%, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.scet-card:hover {
  box-shadow: var(--shadow-gold);
}

.scet-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 1.25rem;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: white;
}

.scet-card-icon img {
  width: 28px;
  height: 28px;
}

.scet-card h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.scet-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
  text-align: center;
}

.scet-card-status {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
}

.scet-carousel-card.active .scet-card-status {
  opacity: 1;
}

.scet-carousel-track {
  position: relative;
  min-height: 320px;
}

.scet-carousel-card {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(620px, 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scet-carousel-card.active {
  opacity: 1;
  pointer-events: auto;
}

.scet-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.scet-carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  border: none;
  background: hsl(212, 30%, 85%);
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}

.scet-carousel-dots button.active {
  width: 36px;
  background: var(--primary);
}

.scet-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.scet-grid .scet-card {
  flex: 1 1 100%;
  max-width: 420px;
}

/* Tablet layout: 2 cards per row */
@media (min-width: 768px) {
  .scet-grid .scet-card {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: 380px;
  }
}

/* Desktop layout: 3 cards per row (3 on first row, 2 centered on second) */
@media (min-width: 1024px) {
  .scet-grid .scet-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: 360px;
  }
}

.scet-list-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid hsl(212, 100%, 19%, 0.1);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card);
  margin-bottom: 1rem;
}

.scet-list-item .scet-card-icon {
  margin: 0;
}

.scet-list-item h3 {
  margin-bottom: 0.35rem;
}

.scet-list-item p {
  color: var(--muted-foreground);
  margin: 0;
}

.scet-list-item:last-child {
  margin-bottom: 0;
}

.scet-showcase-section .scet-card-icon {
  font-size: 1.25rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero-content {
    padding: 4rem 2rem;
  }
  
  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
