/* ============================================
   ACNEM SA – Corporate Landing Page Styles
   Swiss Industrial • Trade • Logistics
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Colors from logo */
  --navy:        #1B2D4F;
  --navy-dark:   #0F1A2E;
  --navy-light:  #2A3F66;
  --steel:       #7A8A9E;
  --steel-light: #B0BECA;
  --steel-pale:  #E8ECF0;
  --swiss-red:   #DA291C;
  --swiss-red-dark: #B71C1C;
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;
  --text-dark:   #1B2D4F;
  --text-body:   #3A4A5C;
  --text-muted:  #6B7B8D;
  --border:      #DDE2E8;
  --shadow-sm:   0 1px 3px rgba(27,45,79,0.06);
  --shadow-md:   0 4px 16px rgba(27,45,79,0.08);
  --shadow-lg:   0 8px 32px rgba(27,45,79,0.12);
  --shadow-header: 0 1px 4px rgba(27,45,79,0.06);
  --header-height: 150px;

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --section-px: 24px;
  --container:  1200px;
  --radius:     6px;
  --radius-lg:  12px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s var(--ease);
  --transition-base: 0.35s var(--ease);
}

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

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

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--section-px);
  width: 100%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--swiss-red);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--swiss-red);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 680px;
  line-height: 1.75;
}

.section-intro.centered {
  margin: 0 auto;
  text-align: center;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-red {
  background: var(--swiss-red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--swiss-red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-header);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

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

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

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width var(--transition-base);
}

.main-nav a:hover {
  color: var(--navy);
}
.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  flex-shrink: 0;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition-base);
  display: block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,26,46,0.92) 0%,
    rgba(27,45,79,0.78) 40%,
    rgba(27,45,79,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  padding: 8px 20px;
  margin-bottom: 32px;
  backdrop-filter: blur(6px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--swiss-red);
}

.hero-badge span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero h1 .highlight {
  color: var(--steel-light);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero .btn-primary {
  background: var(--swiss-red);
}
.hero .btn-primary:hover {
  background: var(--swiss-red-dark);
}

.hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* Trust Indicators */
.trust-bar {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-top: 3px solid var(--swiss-red);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.trust-text h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---------- About ---------- */
.about {
  padding: var(--section-py) 0;
  background: var(--white);
}

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

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-text p:last-of-type {
  margin-bottom: 0;
}

.about-philosophy {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.philosophy-item {
  text-align: center;
  flex: 1;
}

.philosophy-item .p-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--steel-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.philosophy-item .p-icon svg {
  width: 18px;
  height: 18px;
  color: var(--navy);
}

.philosophy-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--swiss-red);
}

/* ---------- Services ---------- */
.services {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

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

.service-card.primary {
  grid-row: span 1;
}

.service-card.secondary {
  grid-column: 1 / -1;
}

.service-card .card-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--steel);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--navy);
}

.service-card > p {
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.service-card.mobility-card .service-list {
  grid-template-columns: 1fr;
}

.service-list li {
  font-size: 0.875rem;
  color: var(--text-body);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel-light);
}

.service-card.primary .service-list li::before {
  background: var(--navy);
}

/* Mobility card less dominant */
.service-card.mobility-card {
  background: var(--off-white);
  border-color: var(--steel-pale);
}

.service-card.mobility-card::before {
  background: var(--steel);
}

/* ---------- Fleet ---------- */
.fleet {
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fleet .section-title {
  font-size: 1.75rem;
}

.fleet-intro {
  font-size: 0.95rem;
  color: var(--text-body);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.fleet-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fleet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.fleet-badge:hover {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.fleet-badge svg {
  width: 16px;
  height: 16px;
  color: var(--steel);
}

/* ---------- Industries ---------- */
.industries {
  padding: var(--section-py) 0;
  background: var(--navy-dark);
  color: var(--white);
}

.industries .section-title {
  color: var(--white);
}

.industries .section-intro {
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}

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

.industry-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition-base);
}

.industry-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.industry-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.industry-icon svg {
  width: 18px;
  height: 18px;
  color: var(--steel-light);
}

.industry-item h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

/* ---------- Products ---------- */
.products {
  padding: var(--section-py) 0;
  background: var(--white);
  position: relative;
}

.products-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.product-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.product-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.product-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-item:hover::after {
  transform: scaleX(1);
}

.product-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--steel-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.product-icon svg {
  width: 16px;
  height: 16px;
  color: var(--navy);
}

.product-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.products-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.products-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
}

.products-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Why Choose ---------- */
.why-choose {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-item {
  text-align: center;
  padding: 32px 20px;
}

.why-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--steel-pale);
  margin-bottom: 16px;
  line-height: 1;
}

.why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.why-item p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ---------- Commitment ---------- */
.commitment {
  padding: 80px 0;
  background: var(--steel-pale);
  position: relative;
  overflow: hidden;
}

.commitment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--swiss-red);
}

.commitment-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.commitment h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.commitment p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.commitment-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
}

.commitment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Contact ---------- */
.contact {
  padding: var(--section-py) 0;
  background: var(--white);
}

.contact-cta-block {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
}

.contact-details-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: var(--navy);
}

.contact-detail h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-email-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-email-link:hover {
  color: var(--swiss-red);
}

.btn-contact-main {
  padding: 18px 48px;
  font-size: 1.05rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,45,79,0.08);
}

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

.form-group select {
  cursor: pointer;
  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 d='M1 1l5 5 5-5' stroke='%236B7B8D' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

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

.footer-address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}

.footer-contact a {
  padding: 0;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover {
  color: var(--white);
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .hero h1 { font-size: 2.75rem; }
  .section-title { font-size: 2rem; }

  .about-grid { gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .commitment-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .products-header { grid-template-columns: 1fr; }
  .products-image { display: none; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --section-px: 20px;
  }

  /* Mobile nav */
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    border-top: 1px solid var(--border);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 1.1rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .header-cta { display: none; }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero */
  .hero {
    min-height: 85vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Trust bar */
  .trust-bar-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    padding: 20px 16px;
  }

  .trust-item:nth-child(2) {
    border-right: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image { order: -1; }

  .about-image img {
    height: 280px;
  }

  .about-philosophy {
    flex-wrap: wrap;
    gap: 16px;
  }

  .philosophy-item { flex: 1 1 calc(50% - 8px); }

  /* Services */
  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px;
  }

  /* Fleet */
  .fleet-grid {
    gap: 10px;
  }

  .fleet-badge {
    font-size: 0.8rem;
    padding: 10px 14px;
  }

  /* Industries */
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .why-item {
    text-align: left;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 20px;
  }

  .why-number {
    grid-row: span 2;
    align-self: center;
    font-size: 2rem;
  }

  /* Contact */
  .contact-form {
    padding: 28px;
  }

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

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

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

  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

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

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