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

body {
  font-family: "Inter", sans-serif;
  color: #121820;
  background: #fff;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
}

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

/* =========================
   VARIABLES
========================= */
:root {
  --accent: #0074BA;
  --dark: #121820;
  --soft: #6b7280;
  --bg-light: #f7f9fc;
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 25px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-6 {
  width: 50%;
  padding: 0 15px;
}

.col-md-6 {
  width: 50%;
  padding: 0 15px;
}

@media (max-width: 900px) {
  .col-lg-6,
  .col-md-6 {
    width: 100%;
  }
}

/* =========================
   HEADER
========================= */
.mil-top-position {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.mil-top-panel {
  min-height: 90px;
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  box-shadow: 0 0 30px rgba(0,0,0,0.05);
}

.mil-top-panel.mil-top-panel-transparent {
  background: #fff;
}

.mil-top-panel .container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mil-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.mil-logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.mil-navigation {
  margin-left: auto;
  flex: 0 0 auto;
}

.mil-navigation nav {
  display: block;
}

.mil-navigation ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mil-navigation li {
  margin: 0;
  padding: 0;
}

.mil-navigation a {
  font-family: "Sora", sans-serif;
  font-weight: 500;
  color: #121820;
  transition: color 0.2s ease;
}

.mil-navigation a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .mil-top-panel .container {
    padding: 0 18px;
  }

  .mil-logo-img {
    height: 42px;
  }

  .mil-navigation ul {
    gap: 18px;
  }
}

/* =========================
   HERO
========================= */
.mil-hero-banner {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 14, 20, 0.62) 0%, rgba(10, 14, 20, 0.34) 45%, rgba(10, 14, 20, 0.18) 100%),
    url("/assets/images/hero.jpg") center center / cover no-repeat;
}

.mil-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.mil-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding-top: 70px;
}

.mil-hero-content .mil-suptitle {
  display: inline-block;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mil-hero-content h1 {
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 22px;
  max-width: 820px;
}

.mil-hero-content p {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
}

.mil-hero-content .mil-button {
  margin-top: 6px;
}

.mil-hero-content .mil-button.mil-border {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  background: transparent;
}

.mil-hero-content .mil-button.mil-border:hover {
  background: #fff;
  color: #121820;
  border-color: #fff;
}

@media (max-width: 900px) {
  .mil-hero-banner {
    min-height: 82vh;
    background:
      linear-gradient(90deg, rgba(10, 14, 20, 0.68) 0%, rgba(10, 14, 20, 0.42) 55%, rgba(10, 14, 20, 0.26) 100%),
      url("/assets/images/hero.jpg") center center / cover no-repeat;
  }

  .mil-hero-content {
    padding-top: 50px;
  }

  .mil-hero-content p {
    font-size: 16px;
  }
}

/* =========================
   BUTTONS
========================= */
.mil-button {
  padding: 15px 30px;
  border-radius: 6px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
  transition: 0.3s;
}

.mil-accent-bg {
  background: var(--accent);
  color: #fff;
}

.mil-border {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.mil-button:hover {
  transform: translateY(-2px);
}

/* =========================
   SERVICES
========================= */
.mil-services {
  padding: 120px 0;
}

.mil-service-item {
  margin-bottom: 50px;
}

.mil-service-item h5 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* =========================
   PAGE BANNER
========================= */
.mil-page-banner {
  padding-top: 160px;
  padding-bottom: 80px;
  background: var(--bg-light);
}

.mil-page-banner h1 {
  font-size: 60px;
}

/* =========================
   PROJECTS
========================= */
.mil-project-filters {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mil-filter-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #ddd;
  cursor: pointer;
  background: white;
  transition: 0.3s;
}

.mil-filter-btn.active,
.mil-filter-btn:hover {
  background: var(--accent);
  color: white;
}

.mil-project-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: 0.3s;
}

.mil-project-card:hover {
  transform: translateY(-5px);
}

.mil-project-card h4 {
  padding: 20px;
}

.mil-project-card p {
  padding: 0 20px 20px;
}

/* =========================
   MODAL
========================= */
.mil-modal {
  position: fixed;
  inset: 0;
  display: none;
}

.mil-modal.mil-open {
  display: block;
}

.mil-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.mil-modal-dialog {
  background: white;
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 12px;
  position: relative;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #121820;
  color: #fff;
  padding: 80px 0;
}

footer p {
  color: rgba(255,255,255,0.6);
}

/* =========================
   FOOTER
========================= */
.mil-footer {
  background: #121820;
  color: #fff;
}

.mil-footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 100px 0;
}

.mil-footer-col h5 {
  font-family: "Sora", sans-serif;
  margin-bottom: 18px;
  font-size: 16px;
}

.mil-footer-logo img {
  height: 15vmin;
  /* margin-bottom: 18px; */
}

.mil-footer-text {
  color: rgba(255,255,255,0.65);
  max-width: 320px;
  line-height: 1.6;
}

/* LINKS */
.mil-footer-links,
.mil-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.mil-footer-links a {
  color: rgba(255,255,255,0.7);
  transition: 0.2s;
}

.mil-footer-links a:hover {
  color: #fff;
}

/* CONTACT */
.mil-footer-contact li {
  margin-bottom: 16px;
}

.mil-footer-contact strong {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.mil-footer-contact a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.mil-footer-contact a:hover {
  color: var(--accent);
}

/* BOTTOM */
.mil-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.mil-footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mil-footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 70px 0;
  }

  .mil-footer-text {
    max-width: none;
  }
}

/* =========================
   SPACING UTIL
========================= */
.mil-p-120-90 {
  padding: 120px 0 90px;
}

.mil-accent {
  color: var(--accent);
}

/* =========================
   SHARED PAGE SECTIONS
========================= */
.section,
.section-sm,
.mil-p-120-90 {
  padding: 110px 0;
}

.section-sm {
  padding: 90px 0;
}

.page-hero,
.inner-hero,
.mil-page-banner {
  padding-top: 170px;
  padding-bottom: 70px;
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.inner-hero-card,
.page-hero .container,
.mil-page-banner .container {
  position: relative;
  z-index: 2;
}

.inner-hero-card,
.page-hero-card,
.card,
.form-panel,
.info-panel {
  background: #fff;
  border: 1px solid rgba(18, 24, 32, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(18, 24, 32, 0.06);
}

.inner-hero-card,
.page-hero-card {
  padding: 42px;
}

.breadcrumbs,
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: 14px;
  color: #6b7280;
  font-family: "Sora", sans-serif;
}

.breadcrumbs a,
.breadcrumb a {
  color: inherit;
}

.breadcrumbs a:hover,
.breadcrumb a:hover {
  color: #f57c00;
}

.eyebrow,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f57c00;
  font-family: "Sora", sans-serif;
}

.eyebrow::before,
.tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #f57c00;
  display: inline-block;
}

.inner-hero h1,
.page-hero h1,
.mil-page-banner h1 {
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
  max-width: 900px;
}

.inner-hero p,
.page-hero p,
.lead,
.mil-page-banner p {
  font-size: 18px;
  color: #6b7280;
  max-width: 760px;
}

/* =========================
   GENERAL CARDS + GRID
========================= */
.card {
  padding: 34px;
}

.grid,
.grid-2 {
  display: grid;
  gap: 28px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reveal {
  opacity: 1;
  transform: none;
}

/* =========================
   ABOUT PAGE
========================= */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.about-image {
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(rgba(18,24,32,0.12), rgba(18,24,32,0.18)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
  box-shadow: 0 18px 50px rgba(18, 24, 32, 0.08);
}

.checks,
.check-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.checks li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: #4b5563;
}

.checks li::before,
.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f57c00;
  font-size: 20px;
  line-height: 1;
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 12px;
}

.feature-row {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(18, 24, 32, 0.08);
}

.feature-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.feature-row h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.feature-row p {
  color: #6b7280;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.form-panel,
.info-panel {
  padding: 34px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 600;
  color: #121820;
  font-family: "Sora", sans-serif;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(18, 24, 32, 0.1);
  background: #f9fafb;
  color: #121820;
  outline: none;
  transition: 0.2s ease;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #f57c00;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.08);
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #f57c00;
  color: #fff;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 124, 0, 0.22);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-item {
  background: #f8fafc;
  border: 1px solid rgba(18, 24, 32, 0.06);
  border-radius: 14px;
  padding: 20px;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Sora", sans-serif;
}

.contact-item a:hover {
  color: #f57c00;
}

/* =========================
   PROJECTS PAGE
========================= */
.mil-page-banner h1 {
  margin-bottom: 12px;
}

.mil-project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mil-filter-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18, 24, 32, 0.1);
  background: #fff;
  color: #121820;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: 0.22s ease;
}

.mil-filter-btn:hover,
.mil-filter-btn.active {
  background: #f57c00;
  color: #fff;
  border-color: #f57c00;
}

#projectsGrid {
  row-gap: 0;
}

.mil-project-card {
  background: #fff;
  border: 1px solid rgba(18, 24, 32, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(18, 24, 32, 0.06);
  margin-bottom: 30px;
  transition: 0.28s ease;
  height: calc(100% - 30px);
}

.mil-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 65px rgba(18, 24, 32, 0.1);
}

.mil-project-thumb {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.mil-project-content {
  padding: 28px;
}

.mil-project-content .mil-suptitle {
  color: #f57c00;
  margin-bottom: 14px;
}

.mil-project-content h4 {
  font-size: 25px;
  margin-bottom: 14px;
}

.mil-project-content p {
  color: #6b7280;
  margin-bottom: 22px;
}

.project-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(18, 24, 32, 0.12);
  background: transparent;
  color: #121820;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.project-open:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 116, 186, 0.25);
}

.project-open:hover,
.mil-project-content .mil-button:hover {
  background: #121820;
  color: #fff;
  border-color: #121820;
}

.mil-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.mil-modal.mil-open {
  display: block;
}

.mil-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 20, 0.72);
  backdrop-filter: blur(6px);
}

.mil-modal-dialog {
  position: relative;
  width: min(880px, calc(100% - 24px));
  margin: 70px auto;
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
}

.mil-modal-dialog h3 {
  font-size: 34px;
  margin-bottom: 12px;
}

.mil-modal-dialog p {
  color: #6b7280;
  font-size: 17px;
}

/* =========================
   SERVICES PAGE
========================= */
.page-shell {
  min-height: 100vh;
  background: #fff;
}

.page-hero-card {
  max-width: 760px;
}

.page-hero-card h1 {
  font-size: clamp(40px, 6vw, 66px);
  margin-bottom: 14px;
}

.page-hero-card p {
  font-size: 18px;
  color: #6b7280;
}

.service-list {
  display: grid;
  gap: 30px;
}

.service-item {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(18, 24, 32, 0.08);
  box-shadow: 0 18px 50px rgba(18, 24, 32, 0.06);
}

.service-media {
  min-height: 340px;
  background-size: cover;
  background-position: center;
}

.service-body {
  padding: 36px;
}

.service-body h3 {
  font-size: 32px;
  margin-bottom: 14px;
}

.service-body p {
  color: #6b7280;
  margin-bottom: 22px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .about-hero-grid,
  .contact-grid,
  .grid-2,
  .service-item {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .section,
  .section-sm,
  .mil-p-120-90 {
    padding: 80px 0;
  }

  .inner-hero,
  .page-hero,
  .mil-page-banner {
    padding-top: 140px;
    padding-bottom: 50px;
  }

  .inner-hero-card,
  .page-hero-card,
  .card,
  .form-panel,
  .info-panel,
  .mil-project-content,
  .service-body,
  .mil-modal-dialog {
    padding: 24px;
  }

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

  .mil-modal-dialog {
    margin: 30px auto;
  }

  .mil-modal-dialog h3 {
    font-size: 28px;
  }
}


/* =========================
   New Services (Home)
========================= */
.services-photo-grid {
  background: #f6f6f6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.section-heading p {
  font-size: 18px;
  color: #6b7280;
}

/* GRID */
.services-mosaic-six {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-template-areas:
    "large music video"
    "large stage stage"
    "network system system";
  gap: 22px;
  align-items: stretch;
}

/* TILE AREA ASSIGNMENTS */
.tile-large {
  grid-area: large;
  min-height: 640px;
}

.tile-music {
  grid-area: music;
  min-height: 308px;
}

.tile-video {
  grid-area: video;
  min-height: 308px;
}

.tile-stage {
  grid-area: stage;
  min-height: 308px;
}

.tile-system {
  grid-area: system;
  min-height: 308px;
}

.tile-network {
  grid-area: network;
  min-height: 308px;
}

/* TILE BASE */
.service-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #dcdcdc;
  min-width: 0;
  isolation: isolate;
  transform: scale(1);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  box-shadow: 0 14px 40px rgba(18, 24, 32, 0.08);
}

.service-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1);
  transition: filter 0.45s ease, transform 0.65s ease;
}

/* DARK OVERLAY */
.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 14, 20, 0.78) 0%,
    rgba(10, 14, 20, 0.34) 42%,
    rgba(10, 14, 20, 0.1) 100%
  );
  z-index: 1;
  transition: opacity 0.35s ease;
}

/* CONTENT WRAP */
.service-tile-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.service-tile-inner {
  width: 100%;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

/* TITLE */
.service-tile h3 {
  color: #fff;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  text-wrap: balance;
}

/* DESCRIPTION */
.service-tile p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.6;
  max-width: 40ch;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

/* HOVER */
.service-tile:hover {
  transform: scale(1.02);
  box-shadow: 0 22px 60px rgba(18, 24, 32, 0.14);
}

.service-tile:hover img {
  filter: grayscale(0%);
  transform: scale(1.045);
}

.service-tile:hover .service-tile-inner {
  transform: translateY(-2px);
}

.service-tile:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .tile-large {
    min-height: 380px;
  }

  .tile-music,
  .tile-video,
  .tile-stage,
  .tile-system,
  .tile-network {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .services-mosaic-six {
    grid-template-columns: 1fr;
    grid-template-areas:
      "large"
      "music"
      "video"
      "stage"
      "system"
      "network";
    gap: 18px;
  }

  .tile-large,
  .tile-music,
  .tile-video,
  .tile-stage,
  .tile-system,
  .tile-network {
    min-height: 200px;
  }

  .service-tile-overlay {
    padding: 20px;
  }

  .service-tile h3 {
    font-size: 28px;
  }

  .service-tile p {
    opacity: 1;
    transform: none;
    font-size: 14px;
  }

  .service-tile:hover {
    transform: none;
  }

  .service-tile:hover img {
    transform: scale(1.02);
  }
}


/* =========================
   APP SHOWCASE (HOME)
========================= */
/* =========================
   APPS / TOOLS SHOWCASE
========================= */
.apps-showcase {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.apps-showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 26px;
  align-items: stretch;
}

.app-feature-card,
.app-coming-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 32, 0.08);
  box-shadow: 0 18px 50px rgba(18, 24, 32, 0.06);
  background: #fff;
}

.app-feature-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 420px;
}

.app-feature-copy {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-feature-copy h3,
.app-coming-card h3 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.app-feature-copy p,
.app-coming-card p {
  font-size: 17px;
  color: #6b7280;
  max-width: 42ch;
}

.app-feature-actions {
  margin-top: 24px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(245, 124, 0, 0.12);
  color: #f57c00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Sora", sans-serif;
  margin-bottom: 18px;
}

.app-badge-muted {
  background: rgba(18, 24, 32, 0.08);
  color: #121820;
}

.app-feature-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(245,124,0,0.18), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(18,24,32,0.12), transparent 35%),
    linear-gradient(135deg, #121820 0%, #1c2430 100%);
}

.app-screen-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(245, 124, 0, 0.2);
  filter: blur(50px);
}

.app-screen-card {
  position: relative;
  z-index: 2;
  width: min(100%, 340px);
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.app-screen-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.app-screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

.app-screen-body {
  display: grid;
  gap: 12px;
}

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

.app-ui-row:last-child {
  grid-template-columns: repeat(3, 1fr);
}

.app-ui-block {
  min-height: 58px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.08);
}

.app-ui-block-lg {
  min-height: 120px;
}

.app-coming-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

@media (max-width: 1100px) {
  .apps-showcase-grid {
    grid-template-columns: 1fr;
  }

  .app-feature-card {
    grid-template-columns: 1fr;
  }

  .app-feature-copy,
  .app-coming-card {
    padding: 30px;
  }

  .app-feature-visual {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .app-feature-copy,
  .app-coming-card {
    padding: 24px;
  }

  .app-feature-copy p,
  .app-coming-card p {
    font-size: 16px;
  }

  .app-feature-visual {
    padding: 20px;
    min-height: 240px;
  }
}