/* ===========================
   GL-TURBO — Industrial/Bold
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #ffffff;
  --bg2:       #f0f7fb;
  --bg3:       #e3f1f9;
  --accent:    #0094d4;
  --accent2:   #0077aa;
  --text:      #1a2e4a;
  --text-muted:#5a7287;
  --border:    #cde3f0;
  --nav-h:     72px;
  --font-head: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius:    4px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* --- Container --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-full { width: 100%; text-align: center; }

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 60px;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #fff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0, 80, 160, 0.08);
  transition: box-shadow var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 3px 22px rgba(0, 80, 160, 0.14);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-img-footer {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.logo-text-footer {
  font-family: var(--font-head);
  font-size: 32px;
  letter-spacing: 0.06em;
  color: #fff;
  display: inline-block;
  margin-bottom: 8px;
}
.logo-text-footer span { color: var(--accent); }

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

nav ul li a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
nav ul li a:hover { color: var(--accent); }

nav ul li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.has-dropdown .nav-link::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(8, 30, 60, 0.14);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown li {
  width: 100%;
}

.nav-dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
}

.nav-dropdown li a:hover {
  background: var(--bg2);
  color: var(--accent);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.has-dropdown:hover .nav-link::after,
.has-dropdown:focus-within .nav-link::after {
  transform: rotate(225deg) translateY(2px);
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--accent2) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  list-style: none;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover { color: var(--accent); }

.mobile-sub-link {
  padding-left: 18px !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  color: var(--text-muted) !important;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(10, 22, 50, 0.84) 0%, rgba(0, 50, 100, 0.72) 100%),
    url('images/slides/GL-TURBO-manufacturing.jpg') center / cover no-repeat;
}

/* Grid texture overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 18px;
  z-index: 1;
  text-align: center;
}

.hero-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  color: #fff;
}

.hero-content h1 span {
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero Stats Bar */
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 28px;
}

.stat {
  flex: 1;
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.stat:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* ===== ABOUT ===== */
#about {
  padding: 120px 0;
  background: var(--bg);
}

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

.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  font-size: 18px;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.value-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.value-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.about-image {
  position: relative;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
}

.image-placeholder span {
  font-family: var(--font-head);
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: var(--border);
}

.image-placeholder p {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.accent-bar {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 6px;
  background: var(--accent);
  border-radius: 3px;
}

/* ===== ABOUT COMPANY ===== */
#about-company {
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.company-history {
  max-width: 980px;
  margin: 0 auto 34px;
  display: grid;
  gap: 14px;
}

.company-history p {
  color: var(--text-muted);
  line-height: 1.8;
}

.company-milestones {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
}

.company-milestones h3 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.company-milestones ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.company-milestones li {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.company-milestones strong {
  color: var(--text);
}

/* ===== SERVICES ===== */
#services {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.service-card {
  background: var(--bg);
  padding: 40px 32px;
  border: 1px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Service card image (product photo at top of card) */
.service-card-img-wrap {
  margin: -40px -32px 24px;
  overflow: hidden;
  height: 170px;
  flex-shrink: 0;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

/* About section real photo */
.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  background: var(--bg3);
  border-color: var(--border);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.product-detail-grid {
  display: grid;
  gap: 28px;
}

.product-detail-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
}

.product-detail-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  grid-row: span 8;
}

.product-detail-card h2 {
  grid-column: 2;
  font-family: var(--font-head);
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.product-detail-card p,
.product-detail-card li {
  color: var(--text-muted);
}

.product-detail-card p {
  grid-column: 2;
}

.product-detail-card ul {
  grid-column: 2;
  padding-left: 20px;
}

/* ===== GLOBAL OFFICES ===== */
#offices {
  padding: 32px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.offices-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.offices-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding-right: 24px;
  border-right: 1px solid var(--border);
  margin-right: 0;
}

.office-item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 20px;
  border-right: 1px solid var(--border);
}
.office-item:last-child { border-right: none; }

/* Social Links */
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social .social-link {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.2);
}
.footer-social .social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ===== INDUSTRIES ===== */
#industries {
  padding: 120px 0;
  background: var(--bg);
}

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

.project-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

.project-image { position: relative; }

.project-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}

.project-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--border);
  letter-spacing: 0.1em;
}

.project-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

.project-body {
  padding: 28px;
}

.project-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.project-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.project-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.project-meta span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,93,4,0.3);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ===== RESOURCES ===== */
#resources {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

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

.resource-card {
  display: block;
  min-height: 210px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.resource-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(0, 80, 160, 0.12);
  transform: translateY(-4px);
}

.resource-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.resource-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.3;
}

.resource-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
#contact {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

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

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 48px;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 15px;
  color: var(--text);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0b4c4;
}

.form-group select {
  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='%239a9a9a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group select option { background: var(--bg2); }

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

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(182, 27, 27, 0.1);
  border: 1px solid rgba(182, 27, 27, 0.3);
  border-radius: var(--radius);
  color: #b61b1b;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.form-error.show { display: block; }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(232, 93, 4, 0.1);
  border: 1px solid rgba(232, 93, 4, 0.3);
  border-radius: var(--radius);
  color: var(--accent2);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; }

/* ===== FOOTER ===== */
footer {
  background: #0d1e35;
  border-top: none;
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-brand .logo {
  margin-bottom: 8px;
}


.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .hero-stats    { flex-direction: column; }
  .product-detail-card { grid-template-columns: 1fr; }
  .product-detail-card img,
  .product-detail-card h2,
  .product-detail-card p,
  .product-detail-card ul { grid-column: 1; }
  .stat          { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 20px; }
  .stat { padding: 20px 24px; }
  .offices-strip { flex-direction: column; align-items: center; gap: 0; }
  .offices-label { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 12px; margin-bottom: 0; width: 100%; text-align: center; }
  .office-item   { border-right: none; border-bottom: 1px solid var(--border); width: 100%; text-align: center; }
  .office-item:last-child { border-bottom: none; }
  #about-company { padding: 84px 0; }
  .company-milestones { padding: 20px; }
  .company-milestones h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-actions    { flex-direction: column; }
  .btn             { text-align: center; }
}

/* ===========================
   APPLICATION SUBPAGES
   =========================== */

.app-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: var(--nav-h) 0 0;
  color: #fff;
}

.app-hero-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.app-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,65,100,0.82) 0%, rgba(0,148,212,0.55) 60%, rgba(26,46,74,0.75) 100%);
}

.app-hero-img .container {
  position: relative;
  z-index: 1;
}

.app-env-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.app-env-split h2 {
  margin-bottom: 16px;
}

.app-env-photo img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

@media (max-width: 768px) {
  .app-env-split { grid-template-columns: 1fr; }
}

.app-hero-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 18px;
  text-align: center;
}

.app-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1;
  margin: 12px 0 20px;
  color: #fff;
  letter-spacing: 0.02em;
}

.app-hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 32px;
}

.app-content {
  padding: 80px 0;
  background: var(--bg);
}

.app-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.app-body > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 780px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.app-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.app-list-item {
  padding: 16px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  transition: background var(--transition), border-left-color var(--transition);
}

.app-list-item:hover {
  background: var(--bg3);
  border-left-color: var(--accent2);
}

.app-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.app-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg2);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.app-feature:hover {
  box-shadow: 0 4px 20px rgba(0,148,212,0.1);
  border-color: var(--accent);
}

.app-feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.app-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.app-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.app-cta {
  background: var(--bg3);
  padding: 72px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.app-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.app-cta p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

@media (max-width: 640px) {
  .app-features { grid-template-columns: 1fr; }
  .app-hero { padding: calc(var(--nav-h) + 48px) 0 48px; }
}
