/* ====================
   RESET & BASE STYLES
   ==================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', 'Arial', 'Inter', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1f2937;
  background-color: white;
  letter-spacing: 0.3px;
}

.container {
  width: 100%;
}

/* ====================
   NAVIGATION BAR
   ==================== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #f3f4f6;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .navbar-content {
    padding: 1rem 1.5rem;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .navbar-brand {
    gap: 1.5rem;
  }
}

.logo-box {
  width: 2.5rem;
  height: 2.5rem;
  background-color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .logo-box {
    width: 3rem;
    height: 3rem;
  }
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}

.brand-text {
  display: none;
}

@media (min-width: 640px) {
  .brand-text {
    display: block;
  }
}

.brand-title {
  font-size: 0.75rem;
  font-weight: 300;
  color: #111827;
  letter-spacing: 0.05em;
  margin: 0;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 300;
  margin: 0;
}

.navbar-right {
  text-align: right;
}

.navbar-tagline {
  font-size: 0.75rem;
  color: #4b5563;
  font-weight: 300;
}

@media (min-width: 768px) {
  .navbar-tagline {
    font-size: 0.875rem;
  }
}

/* ====================
   GENERAL SECTION STYLES
   ==================== */

.section {
  padding: 3rem 0.75rem;
  width: 100%;
}

@media (min-width: 640px) {
  .section {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 2rem;
  }
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.accent-line {
  width: 3rem;
  height: 4px;
  background: linear-gradient(to right, #2563eb, #60a5fa);
  margin-bottom: 2rem;
  display: block;
}

@media (min-width: 768px) {
  .accent-line {
    width: 4rem;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1rem;
  color: #2d3748;
  line-height: 1.8;
  font-weight: 400;
  max-width: 48rem;
  margin: 3rem 0;
  text-align: justify;
  text-justify: inter-word;
  letter-spacing: 0.2px;
}

@media (min-width: 768px) {
  .section-description {
    font-size: 1.125rem;
  }
}

/* ====================
   HERO SECTION
   ==================== */

.hero-section {
  padding-top: 7rem;
  background-color: white;
}

@media (min-width: 640px) {
  .hero-section {
    padding-top: 8rem;
  }
}

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

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    gap: 5rem;
  }
}

/* Hero Left */
.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-logo-container {
  width: 10rem;
  height: 10rem;
  background: linear-gradient(to bottom right, #f9fafb, #f3f4f6);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero-logo-container {
    width: 12rem;
    height: 12rem;
    border-radius: 1.5rem;
    margin-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-logo-container {
    width: 14rem;
    height: 14rem;
  }
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.company-info {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .company-info {
    margin-bottom: 3rem;
  }
}

.company-name {
  font-size: 1.875rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .company-name {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .company-name {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .company-name {
    font-size: 3.75rem;
  }
}

.company-type {
  font-size: 1.125rem;
  font-weight: 500;
  color: #2563eb;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .company-type {
    font-size: 1.25rem;
  }
}

.company-description {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 300;
  line-height: 1.8;
  max-width: 28rem;
  text-align: justify;
  text-justify: inter-word;
}

@media (min-width: 768px) {
  .company-description {
    font-size: 1rem;
  }
}

/* Stats Container */
.stats-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats-container {
    gap: 1.5rem;
  }
}

.stat-card {
  background: linear-gradient(to bottom right, #f0f9ff, white);
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .stat-card {
    border-radius: 1rem;
    padding: 2rem;
  }
}

.stat-card:hover {
  border-color: #93c5fd;
}

.stat-card-primary {
  background: linear-gradient(to bottom right, #2563eb, #1d4ed8);
  border-color: #2563eb;
  color: white;
}

.stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .stat-icon {
    width: 3rem;
    height: 3rem;
  }
}

.stat-icon-white {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .stat-icon-white {
    width: 3rem;
    height: 3rem;
  }
}

.stat-content {
  min-width: 0;
}

.stat-content-white {
  color: white;
}

.stat-label {
  font-size: 0.75rem;
  color: #1f2937;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 0.875rem;
  }
}

.stat-label-white {
  font-size: 0.75rem;
  color: #dbeafe;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .stat-label-white {
    font-size: 0.875rem;
  }
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

.stat-number-white {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 768px) {
  .stat-number-white {
    font-size: 2.25rem;
  }
}

.stat-description {
  font-size: 0.75rem;
  color: #2d3748;
  font-weight: 500;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .stat-description {
    font-size: 0.875rem;
  }
}

.stat-description-white {
  font-size: 0.75rem;
  color: #dbeafe;
  font-weight: 300;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .stat-description-white {
    font-size: 0.875rem;
  }
}

/* ====================
   PRODUCTS SECTION
   ==================== */

.products-section {
  background-color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    gap: 2.5rem;
  }
}

.product-card {
  background: linear-gradient(to bottom right, #f0f9ff, white);
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .product-card {
    border-radius: 1rem;
    padding: 2.5rem;
  }
}

.product-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-icon {
  width: 3rem;
  height: 3rem;
  background-color: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #2563eb;
}

@media (min-width: 768px) {
  .product-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.product-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 768px) {
  .product-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.product-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .product-title {
    font-size: 1.875rem;
  }
}

.product-description {
  font-size: 0.875rem;
  color: #2d3748;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
}

@media (min-width: 768px) {
  .product-description {
    font-size: 1rem;
  }
}

/* ====================
   SERVICES SECTION
   ==================== */

.services-section {
  background: linear-gradient(to bottom, #f9fafb, white);
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

@media (min-width: 1024px) {
  .services-grid {
    gap: 2rem;
  }
}

.service-card {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .service-card {
    border-radius: 0.75rem;
    padding: 2rem;
  }
}

.service-card:hover {
  border-color: #93c5fd;
  background-color: rgba(240, 249, 255, 0.3);
}

.service-icon {
  width: 2.25rem;
  height: 2.25rem;
  background-color: #dbeafe;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #2563eb;
  font-weight: 300;
}

@media (min-width: 768px) {
  .service-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.service-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .service-title {
    font-size: 1.25rem;
  }
}

.service-description {
  font-size: 0.75rem;
  color: #2d3748;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
}

@media (min-width: 768px) {
  .service-description {
    font-size: 0.875rem;
  }
}

/* ====================
   INTERNSHIP PROGRAMS SECTION
   ==================== */

.internship-section {
  background: linear-gradient(to bottom, white, #f9fafb);
  border-bottom: 1px solid #f3f4f6;
}

/* Program Highlights Banner */
.program-highlights-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
}

@media (min-width: 768px) {
  .program-highlights-banner {
    grid-template-columns: repeat(4, 1fr);
    padding: 2.5rem;
    gap: 2rem;
    border-radius: 1rem;
  }
}

.highlight-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.highlight-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1f2937;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .highlight-title {
    font-size: 0.875rem;
  }
}

.highlight-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2563eb;
}

@media (min-width: 768px) {
  .highlight-value {
    font-size: 1.5rem;
  }
}

/* Internship Domains */
.internship-domains-section {
  margin: 4rem 0;
}

.domains-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .domains-title {
    font-size: 1.875rem;
  }
}

.domains-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .domains-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .domains-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.domain-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .domain-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
  }
}

.domain-card:hover {
  border-color: #2563eb;
  background-color: #f0f9ff;
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.1);
}

.domain-name {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .domain-name {
    font-size: 1.125rem;
  }
}

.domain-focus {
  font-size: 0.75rem;
  color: #4b5563;
  line-height: 1.6;
  font-weight: 300;
}

@media (min-width: 768px) {
  .domain-focus {
    font-size: 0.875rem;
  }
}

/* Program Structure */
.program-structure {
  background: linear-gradient(to bottom, #f9fafb, white);
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  padding: 2rem;
  margin: 4rem 0;
}

@media (min-width: 768px) {
  .program-structure {
    border-radius: 1rem;
    padding: 2.5rem;
  }
}

.structure-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .structure-title {
    font-size: 1.875rem;
  }
}

.structure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .structure-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .structure-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.structure-card {
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .structure-card {
    border-radius: 0.75rem;
    padding: 1.75rem;
  }
}

.structure-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.15);
}

.structure-header {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .structure-header {
    font-size: 1.125rem;
  }
}

.structure-desc {
  font-size: 0.75rem;
  color: #4b5563;
  line-height: 1.7;
  font-weight: 300;
}

@media (min-width: 768px) {
  .structure-desc {
    font-size: 0.875rem;
  }
}

/* Internship Benefits */
.internship-benefits {
  margin: 4rem 0;
}

.benefits-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .benefits-title {
    font-size: 1.875rem;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(to right, #f0f9ff, transparent);
  border-left: 3px solid #2563eb;
  border-radius: 0.25rem;
}

@media (min-width: 768px) {
  .benefit-item {
    padding: 1.25rem 1.5rem;
    gap: 1.25rem;
  }
}

.benefit-check {
  color: #2563eb;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.benefit-text {
  font-size: 0.875rem;
  color: #2d3748;
  line-height: 1.6;
  font-weight: 400;
}

@media (min-width: 768px) {
  .benefit-text {
    font-size: 1rem;
  }
}

/* Online Events */
.online-events {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  padding: 2rem;
  margin: 4rem 0;
}

@media (min-width: 768px) {
  .online-events {
    border-radius: 1rem;
    padding: 2.5rem;
  }
}

.events-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .events-title {
    font-size: 1.875rem;
  }
}

.events-desc {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .events-desc {
    font-size: 1rem;
  }
}

.events-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .events-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

@media (min-width: 768px) {
  .event-item {
    gap: 1.25rem;
  }
}

.event-icon {
  color: #2563eb;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.event-content {
  display: flex;
  flex-direction: column;
}

.event-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  display: block;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .event-name {
    font-size: 1rem;
  }
}

.event-detail {
  font-size: 0.75rem;
  color: #4b5563;
  font-weight: 300;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .event-detail {
    font-size: 0.875rem;
  }
}

/* Internship Stats */

.internship-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
}

@media (min-width: 640px) {
  .internship-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem;
  }
}

@media (min-width: 768px) {
  .internship-stats {
    border-radius: 1rem;
  }
}

.internship-stat-item {
  text-align: center;
}

.internship-stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .internship-stat-number {
    font-size: 2.25rem;
  }
}

.internship-stat-label {
  font-size: 0.75rem;
  color: #1f2937;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .internship-stat-label {
    font-size: 0.875rem;
  }
}

.maintenance-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 0.75rem;
  background-color: white;
}

@media (min-width: 640px) {
  .maintenance-section {
    padding: 4rem 1.5rem;
  }
}

.maintenance-container {
  max-width: 48rem;
  width: 100%;
  text-align: center;
}

.accent-line-center {
  width: 3rem;
  height: 4px;
  background: linear-gradient(to right, #2563eb, #60a5fa);
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .accent-line-center {
    width: 4rem;
    margin-bottom: 4rem;
  }
}

.maintenance-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .maintenance-icon-container {
    margin-bottom: 3rem;
  }
}

.maintenance-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to bottom right, #f0f9ff, #dbeafe);
  border: 1px solid #bfdbfe;
  border-radius: 1rem;
  color: #2563eb;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .maintenance-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
  }
}

.maintenance-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .maintenance-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .maintenance-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .maintenance-title {
    font-size: 3.75rem;
  }
}

.maintenance-subtitle {
  font-size: 1rem;
  color: #2d3748;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
}

@media (min-width: 768px) {
  .maintenance-subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
}

.maintenance-card {
  background: linear-gradient(to bottom right, #f0f9ff, white);
  border: 1px solid #bfdbfe;
  border-radius: 0.75rem;
  padding: 2rem 3rem;
}

@media (min-width: 768px) {
  .maintenance-card {
    border-radius: 1rem;
    padding: 3rem 4rem;
  }
}

.maintenance-card-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .maintenance-card-content {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.maintenance-clock {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
}

@media (min-width: 768px) {
  .maintenance-clock {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.maintenance-status {
  font-size: 1rem;
  color: #111827;
  font-weight: 300;
}

@media (min-width: 768px) {
  .maintenance-status {
    font-size: 1.125rem;
  }
}

.maintenance-message {
  font-size: 0.875rem;
  color: #2d3748;
  line-height: 1.8;
  font-weight: 400;
  max-width: 32rem;
  margin: 0 auto;
  text-align: justify;
  text-justify: inter-word;
}}

@media (min-width: 768px) {
  .maintenance-message {
    font-size: 1rem;
  }
}

.maintenance-footer {
  margin-top: 4rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 2.5rem;
}

@media (min-width: 768px) {
  .maintenance-footer {
    margin-top: 5rem;
    padding-top: 3rem;
  }
}

.copyright {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .copyright {
    font-size: 0.875rem;
  }
}

.footer-tagline {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 300;
  margin: 0;
}

/* ====================
   RESPONSIVE ADJUSTMENTS
   ==================== */

@media (max-width: 640px) {
  .section {
    padding: 2rem 0.75rem;
  }
}
