/* ==========================================================================
   IKON PARTITIONS — HOME PAGE STYLES
   ========================================================================== */

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-color: var(--bg-darker);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(104deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.55) 52%, rgba(8, 8, 8, 0.18) 100%);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
}

.hero .container {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  max-width: 820px;
}

.hero-title {
  font-family: 'Arial', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  color: #F7F4EF;
  font-weight: 400;
  margin-bottom: 14px;
}

.hero-subtitle::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--primary);
}

.hero-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}

.scroll-indicator {
  position: absolute;
  right: var(--padding-x);
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: #E8E3D9;
}

.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Outfit', sans-serif;
  font-size: 9.6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.11px;
  color: var(--text-light);
}

.hero-pagination {
  position: absolute;
  bottom: 120px;
  left: var(--padding-x);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  display: block;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, .32);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width .4s ease, background .4s ease;
  flex-shrink: 0;
}

.hero-dot.active {
  width: 36px;
  background: #fff;
}

.hero-dot:hover:not(.active) {
  background: rgba(255, 255, 255, .6);
}

/* ==========================================================================
   STATISTICS
   ========================================================================== */

.stats {
  background: #1A1A1A;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 var(--padding-x);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 0 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
  cursor: default;
}

.stat-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:nth-child(2) { transition-delay: 150ms; }
.stat-item:nth-child(3) { transition-delay: 300ms; }
.stat-item:nth-child(4) { transition-delay: 450ms; }
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Arial', sans-serif;
  font-size: 64px;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  margin-bottom: 12px;
  line-height: 1;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
  color: #f0f0f0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

.stat-suffix {
  color: #B8965A;
  font-size: 28px;
  font-weight: 400;
  margin-left: 2px;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-suffix {
  color: #d4b06e;
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ==========================================================================
   ABOUT SECTION (Home)
   ========================================================================== */

.about {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-img-wrapper {
  position: relative;
  background: #E8E3D9;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.ai-badge {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}

.ai-badge-title {
  font-size: 52px;
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.ai-badge-title span {
  color: var(--primary);
  font-size: 24px;
  margin-left: 4px;
}

.ai-badge-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 10.4px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  color: #9A9490;
}

.about-content {
  padding: 80px var(--padding-x) 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-text {
  font-family: 'Outfit', sans-serif;
  color: #5A5550;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0 28px;
}

.feature-item {
  border-top: 1px solid #D4CFC7;
  padding-top: 14px;
}

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.09px;
  margin-bottom: 5px;
}

.feature-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 14.7px;
  font-weight: 300;
  color: #5A5550;
  line-height: 28px;
}

/* ==========================================================================
   SYSTEMS SECTION
   ========================================================================== */

.systems {
  padding: 96px 0;
  background: var(--text-light);
  color: var(--text-dark);
}

.systems-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.systems-title {
  font-size: 40px;
  line-height: 1.1;
}

.all-systems-link {
  font-family: 'Outfit', sans-serif;
  color: #5A5550;
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.38px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.system-card {
  position: relative;
  overflow: hidden;
  background: #111111;
  display: block;
  text-decoration: none;
  aspect-ratio: 4 / 3;
}

.system-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  z-index: 1;
}

.system-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.72) 100%);
  z-index: 2;
  transition: background 0.4s ease;
}

.system-card:hover .system-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.82) 100%);
}

.system-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 40px 28px;
  padding-top: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.system-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4B483;
  margin-bottom: 6px;
  font-weight: 500;
}

.system-name {
  font-family: 'Arial', sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.15;
}

.system-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
  margin-top: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.explore-link {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #D4B483;
  margin-top: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.system-card:hover img { transform: scale(1.05); }
.system-card:hover .system-desc { opacity: 1; max-height: 150px; margin-top: 16px; }
.system-card:hover .explore-link { opacity: 1; max-height: 30px; margin-top: 24px; }

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

.process {
  padding: 96px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-header {
  margin-bottom: 72px;
  max-width: 700px;
}

.process-title {
  font-family: 'Arial', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.process-desc {
  font-family: 'Outfit', sans-serif;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.process-line {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(184, 150, 90, .4);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  transition: all .4s ease;
}

.process-step:hover { transform: translateY(-8px); }
.process-step:hover .step-title { color: #B8965A; }

.step-number {
  width: 48px;
  height: 48px;
  background: #050505;
  border: 1px solid #B8965A;
  color: #B8965A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 12px;
  transition: color .4s ease;
}

.step-badge {
  display: inline-block;
  background: rgb(78 78 78 / 75%);
  color: #B8965A;
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 12px;
  margin-top: 15px;
}

.step-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
}

/* ==========================================================================
   GALLERY SECTION (Home)
   ========================================================================== */

.gallery {
  padding: 96px 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.gallery-title {
  font-size: 40px;
  line-height: 1.1;
}

.gallery-filters {
  display: flex;
  gap: 8px;
  align-items: center;
}

.filter-btn {
  background: none;
  border: 1px solid rgba(90, 85, 80, 0.25);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5A5550;
  cursor: pointer;
  padding: 7px 14px;
  transition: all 0.2s ease;
}

.filter-btn.active {
  color: var(--text-light);
  background: var(--text-dark);
  border-color: var(--text-dark);
}

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

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-hover span {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 24px;
  transition: border-color 0.3s ease, letter-spacing 0.3s ease;
}

.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-item:hover .gallery-hover span { border-color: #B8965A; letter-spacing: 4px; }
.gallery-item.hidden { display: none; }

@keyframes galleryFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.gallery-action { text-align: center; }

/* ==========================================================================
   CLIENTS CAROUSEL
   ========================================================================== */

.clients {
  padding: 72px 0;
  background: #F5F0E8;
  overflow: hidden;
}

.clients-title {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: #9A9490;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 40px;
}

.clients-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scroll-carousel 35s linear infinite;
  will-change: transform;
}

.clients-carousel:hover .clients-track {
  animation-play-state: paused;
}

.clients-group {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

.clients-group img {
  height: 70px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.clients-group img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scroll-carousel {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   CONTACT SECTION (Home)
   ========================================================================== */

.contact {
  display: grid;
  grid-template-columns: 42% 58%;
  background: var(--bg-dark);
}

.contact-info {
  padding: 96px var(--padding-x);
  background-image: linear-gradient(rgba(17,17,17,0.85), rgba(17,17,17,0.85)), url('img/Home/about.png');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-family: 'Arial', sans-serif;
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
}

.contact-detail-icon {
  width: 36px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184,150,90,.4);
  color: #B8965A;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-note {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 20px 8px 36px;
  margin-top: auto;
  position: relative;
  line-height: 1.6;
}

.contact-note::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  width: 5px;
  height: 5px;
  background: #C8A97E;
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-form-wrap {
  padding: 96px var(--padding-x) 96px 64px;
  background: #fff;
  color: var(--text-dark);
}

.contact-form-wrap h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 32px;
}

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

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

.contact-form-row .contact-form-group {
  margin-bottom: 0;
}

.contact-form-group label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #5A5550;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #F5F0E8;
  border: 1px solid #E4DDD1;
  border-radius: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-dark);
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #C0BAB2;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.7;
}

.contact-submit-btn {
  width: 100%;
  height: 50px;
  background: #111111;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s;
  margin-top: 8px;
}

.contact-submit-btn:hover {
  background: #B8965A;
  color: #111111;
}

/* ==========================================================================
   RESPONSIVE — HOME PAGE
   ========================================================================== */

@media (max-width: 1200px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 40px 12px; }
  .stat-item:nth-child(2n) { border-right: none; }
  .systems-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  /* Hero */
  .hero .container { padding-top: 50px; }
  .hero-title { font-size: 46px; }
  .hero-desc { font-size: 14px; }
  .hero-content .btn { width: 100%; }
  .scroll-indicator { display: none; }
  .hero-pagination { bottom: 60px; left: var(--padding-x); }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; padding: 0; }
  .stat-item { align-items: center; text-align: center; }
  .stat-number { font-size: 32px; }

  /* About */
  .about { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .about-img-wrapper { padding: 0; }
  .about-img { min-height: 380px; max-height: 380px; }
  .about-content { padding: 64px 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feature-desc { font-size: 13px; line-height: 1.6; }
  .about-content .btn { width: 100%; }
  .about-title, .systems-title, .gallery-title, .contact-title {
    font-size: 30px; line-height: 38px; font-weight: 300;
  }

  /* Systems */
  .systems { padding: 64px 0; }
  .systems-header { flex-direction: column; align-items: flex-start; gap: 24px; padding: 0; }
  .systems-grid { grid-template-columns: 1fr; gap: 4px; padding: 0 20px; }
  .system-card { height: 350px; aspect-ratio: unset; }

  /* Process */
  .process { padding: 64px 0; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-line { display: none; }

  /* Gallery */
  .gallery { padding: 64px 0; overflow: hidden; }
  .gallery-header { flex-direction: column; gap: 24px; align-items: flex-start; overflow: hidden; width: 100%; }
  .gallery-filters { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; scrollbar-width: none; gap: 8px; max-width: 100%; width: 100%; }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-filters .filter-btn { flex-shrink: 0; white-space: nowrap; }
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-action .btn { width: 100%; }

  /* Clients */
  .clients { padding: 64px 0; }

  /* Contact */
  .contact { grid-template-columns: 1fr; padding: 0; }
  .contact-info { padding: 64px var(--padding-x); }
  .contact-form-wrap { padding: 64px var(--padding-x); }
  .contact-note { margin-bottom: 40px; }
}

@media (max-width: 768px) {
  .hero-pagination { left: 50%; transform: translateX(-50%); bottom: 60px; }

  /* Process */
  .process-steps {
    display: flex;
    grid-template-columns: unset;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 16px;
    margin-left: calc(-1 * var(--padding-x));
    margin-right: calc(-1 * var(--padding-x));
    padding-left: var(--padding-x);
  }
  .process-steps::-webkit-scrollbar { display: none; }
  .process-step {
    width: 73vw;
    min-width: 73vw;
    max-width: 73vw;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    padding: 0 16px 32px 0;
    align-items: flex-start;
    text-align: left;
  }
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 48px;
    right: 0;
    height: 1px;
    background: rgba(184,150,90,0.4);
    z-index: 0;
  }
  .process-step .step-title,
  .process-step .step-desc,
  .process-step .step-badge { padding-left: 4px; }
  .process-step:last-child { padding-right: var(--padding-x); }
  .process-header { margin-bottom: 40px; }
  .process-step:hover { transform: none; }
  .process-title { font-size: 38px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.06); }

  /* Systems / Gallery */
  .systems-grid, .gallery-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}
