/* ==========================================================================
   PassExam — Computer Systems Design & Related Services
   Distinctive, Modern, Vibrant, Highly Professional
   ========================================================================== */

/* --- Reset & Base -------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #FAFBFF;
  background-color: #0F1D30;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* --- Container ----------------------------------------------------------- */

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

/* --- Typography ---------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #FAFBFF;
}

p {
  color: #A9BBD6;
}

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00C9A7, #4A90D9);
  color: #FAFBFF;
  box-shadow: 0 4px 20px rgba(0, 201, 167, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 201, 167, 0.45);
}

.btn-outline {
  background: transparent;
  color: #FAFBFF;
  border: 2px solid #A9BBD6;
}

.btn-outline:hover {
  border-color: #F5A623;
  color: #F5A623;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   HEADER — Sticky
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #16293F;
  border-bottom: 1px solid rgba(169, 187, 214, 0.1);
  backdrop-filter: blur(10px);
}

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

/* Logo */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00C9A7, #4A90D9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #FAFBFF;
  font-weight: 800;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #FAFBFF;
  letter-spacing: -0.5px;
}

/* Main Navigation */

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #A9BBD6;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00C9A7, #F5A623);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #FAFBFF;
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

/* Mobile Hamburger */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #FAFBFF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.hero {
  position: relative;
  padding: 100px 0 120px;
  background-color: #1E3A5F;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 20%, rgba(0, 201, 167, 0.12), transparent),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(123, 104, 238, 0.12), transparent),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(74, 144, 217, 0.08), transparent);
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Content */

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #F5A623;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #FAFBFF;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span {
  background: linear-gradient(135deg, #00C9A7, #4A90D9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: #A9BBD6;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Hero Stats Row */

.hero-stats-row {
  display: flex;
  gap: 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #FAFBFF;
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: #A9BBD6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Visual — Floating Cards */

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero-card {
  position: absolute;
  background-color: #16293F;
  border: 1px solid rgba(169, 187, 214, 0.12);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 240px;
  transition: transform 0.3s ease;
}

.hero-card--top {
  top: 0;
  right: 20px;
  border-top: 3px solid #00C9A7;
}

.hero-card--mid {
  top: 140px;
  left: 0;
  border-top: 3px solid #F5A623;
}

.hero-card--bottom {
  bottom: 0;
  right: 40px;
  border-top: 3px solid #7B68EE;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  color: #FAFBFF;
}

.hero-card--top .hero-card-icon {
  background: linear-gradient(135deg, #00C9A7, #00A98F);
}

.hero-card--mid .hero-card-icon {
  background: linear-gradient(135deg, #F5A623, #F58B1F);
}

.hero-card--bottom .hero-card-icon {
  background: linear-gradient(135deg, #7B68EE, #6A52E0);
}

.hero-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #FAFBFF;
  margin-bottom: 6px;
}

.hero-card-desc {
  font-size: 13px;
  color: #A9BBD6;
  line-height: 1.5;
}

/* ==========================================================================
   SECTION SHARED
   ========================================================================== */

section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.25);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #00C9A7;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: #FAFBFF;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 17px;
  color: #A9BBD6;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.services {
  background-color: #0F1D30;
}

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

.service-card {
  background-color: #16293F;
  border: 1px solid rgba(169, 187, 214, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00C9A7, #4A90D9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #FAFBFF;
}

.service-card:nth-child(1) .service-icon {
  background: linear-gradient(135deg, #00C9A7, #00A98F);
}

.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #4A90D9, #3A70B0);
}

.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #7B68EE, #6A52E0);
}

.service-card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, #F5A623, #F58B1F);
}

.service-card:nth-child(5) .service-icon {
  background: linear-gradient(135deg, #FF6B6B, #E55A5A);
}

.service-card:nth-child(6) .service-icon {
  background: linear-gradient(135deg, #4A90D9, #00C9A7);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #FAFBFF;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: #A9BBD6;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 13px;
  color: #A9BBD6;
  padding-left: 16px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #00C9A7;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */

.about {
  background-color: #1E3A5F;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  position: relative;
}

.about-text {
  font-size: 16px;
  color: #A9BBD6;
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.value-item {
  background-color: #16293F;
  border-radius: 12px;
  padding: 20px;
  border-left: 3px solid #00C9A7;
}

.value-title {
  font-size: 16px;
  font-weight: 700;
  color: #FAFBFF;
  margin-bottom: 6px;
}

.value-desc {
  font-size: 13px;
  color: #A9BBD6;
  line-height: 1.5;
}

/* About Visual */

.about-visual {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #16293F, #1E3A5F);
  border-radius: 20px;
  border: 1px solid rgba(169, 187, 214, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A9BBD6;
  font-size: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

/* About Stats Mini */

.about-stats-mini {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}

.about-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #00C9A7;
  line-height: 1;
}

.about-stat-label {
  font-size: 13px;
  color: #A9BBD6;
  margin-top: 4px;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */

.process {
  background-color: #0F1D30;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #00C9A7, #4A90D9, #7B68EE, #F5A623);
}

.process-step {
  position: relative;
  padding-left: 64px;
  padding-bottom: 48px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-marker {
  position: absolute;
  left: 8px;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #16293F;
  border: 3px solid #00C9A7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.process-step:nth-child(2) .process-marker {
  border-color: #4A90D9;
}

.process-step:nth-child(3) .process-marker {
  border-color: #7B68EE;
}

.process-step:nth-child(4) .process-marker {
  border-color: #F5A623;
}

.process-num {
  font-size: 13px;
  font-weight: 700;
  color: #FAFBFF;
}

.process-line {
  display: none;
}

.process-card {
  background-color: #16293F;
  border: 1px solid rgba(169, 187, 214, 0.08);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow 0.3s ease;
}

.process-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.process-title {
  font-size: 20px;
  font-weight: 700;
  color: #FAFBFF;
  margin-bottom: 8px;
}

.process-desc {
  font-size: 14px;
  color: #A9BBD6;
  line-height: 1.7;
  margin-bottom: 14px;
}

.process-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-details li {
  font-size: 12px;
  color: #A9BBD6;
  background-color: rgba(169, 187, 214, 0.06);
  padding: 4px 12px;
  border-radius: 6px;
}

/* ==========================================================================
   INDUSTRIES
   ========================================================================== */

.industries {
  background-color: #1E3A5F;
}

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

.industry-card {
  background-color: #16293F;
  border: 1px solid rgba(169, 187, 214, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.industry-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  color: #FAFBFF;
}

.industry-card:nth-child(1) .industry-icon {
  background: linear-gradient(135deg, #00C9A7, #00A98F);
}

.industry-card:nth-child(2) .industry-icon {
  background: linear-gradient(135deg, #4A90D9, #3A70B0);
}

.industry-card:nth-child(3) .industry-icon {
  background: linear-gradient(135deg, #F5A623, #F58B1F);
}

.industry-card:nth-child(4) .industry-icon {
  background: linear-gradient(135deg, #7B68EE, #6A52E0);
}

.industry-card:nth-child(5) .industry-icon {
  background: linear-gradient(135deg, #FF6B6B, #E55A5A);
}

.industry-card:nth-child(6) .industry-icon {
  background: linear-gradient(135deg, #00C9A7, #4A90D9);
}

.industry-title {
  font-size: 18px;
  font-weight: 700;
  color: #FAFBFF;
  margin-bottom: 10px;
}

.industry-desc {
  font-size: 14px;
  color: #A9BBD6;
  line-height: 1.6;
}

/* ==========================================================================
   STATS BANNER
   ========================================================================== */

.stats {
  background: linear-gradient(135deg, #1E3A5F, #16293F);
}

.stats-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-item:nth-child(1) .stat-number { color: #00C9A7; }
.stat-item:nth-child(2) .stat-number { color: #F5A623; }
.stat-item:nth-child(3) .stat-number { color: #4A90D9; }
.stat-item:nth-child(4) .stat-number { color: #7B68EE; }

.stat-description {
  font-size: 14px;
  color: #A9BBD6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(169, 187, 214, 0.2);
  align-self: center;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials {
  background-color: #0F1D30;
}

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

.testimonial-card {
  background-color: #16293F;
  border: 1px solid rgba(169, 187, 214, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #F5A623;
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: #A9BBD6;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-stars + .testimonial-text {
  margin-top: 0;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 700;
  color: #FAFBFF;
}

.testimonial-author::before {
  content: '— ';
  color: #00C9A7;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact {
  background-color: #1E3A5F;
}

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

/* Contact Info */

.contact-info {
  position: relative;
}

.contact-desc {
  font-size: 16px;
  color: #A9BBD6;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-label {
  font-size: 12px;
  font-weight: 600;
  color: #00C9A7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 16px;
  color: #FAFBFF;
}

.address-text {
  font-size: 15px;
  color: #A9BBD6;
  line-height: 1.7;
}

/* Contact Form */

.contact-form {
  background-color: #16293F;
  border: 1px solid rgba(169, 187, 214, 0.08);
  border-radius: 20px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #A9BBD6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #FAFBFF;
  background-color: #0F1D30;
  border: 1px solid rgba(169, 187, 214, 0.15);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #00C9A7;
  box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #A9BBD6;
  opacity: 0.5;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A9BBD6' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background-color: #16293F;
  color: #FAFBFF;
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form .btn-primary {
  margin-top: 8px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: #0F1D30;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

/* Footer Brand */

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #FAFBFF;
}

.footer-desc {
  font-size: 14px;
  color: #A9BBD6;
  line-height: 1.7;
}

/* Footer Nav */

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: #FAFBFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #A9BBD6;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00C9A7;
}

/* Footer Bottom */

.footer-separator {
  border: none;
  border-top: 1px solid rgba(169, 187, 214, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: #A9BBD6;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 13px;
  color: #A9BBD6;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #00C9A7;
}

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

/* Tablet — 1024px */

@media (max-width: 1024px) {

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 320px;
    max-width: 480px;
    margin: 0 auto;
  }

  .services-grid,
  .industries-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Small Tablet — 768px */

@media (max-width: 768px) {

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #16293F;
    border-bottom: 1px solid rgba(169, 187, 214, 0.1);
    padding: 20px 24px;
    flex-direction: column;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero-card {
    width: 200px;
    padding: 18px;
  }

  .hero-card--top { top: 0; right: 10px; }
  .hero-card--mid { top: 100px; left: 10px; }
  .hero-card--bottom { bottom: 0; right: 10px; }

  .section-title {
    font-size: 32px;
  }

  .services-grid,
  .industries-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-banner {
    gap: 32px;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

/* Mobile — 480px */

@media (max-width: 480px) {

  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-stats-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-card {
    width: 160px;
    padding: 14px;
  }

  .hero-card--top { right: 0; }
  .hero-card--mid { top: 90px; left: 0; }
  .hero-card--bottom { bottom: 0; right: 0; }

  .hero-card-title {
    font-size: 13px;
  }

  .hero-card-desc {
    font-size: 11px;
  }

  .contact-form {
    padding: 24px;
  }

  .section-title {
    font-size: 28px;
  }
}
