@font-face {
  font-family: 'Pangram';
  src: url('Pangram-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Pangram';
  src: url('Pangram-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Pangram';
  src: url('Pangram-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Pangram';
  src: url('Pangram-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Pangram';
  src: url('Pangram-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Pangram';
  src: url('Pangram-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

:root {
  --clr-orange: #FF8301;
  --clr-dark: #2A2A2A;
  --clr-dark-bg: #121212;
  --clr-dark-card: #1C1C1C;
  --clr-white: #FFFFFF;
  --clr-text-gray: #A0A0A0;
  --clr-border: rgba(255, 255, 255, 0.1);
  --font-primary: 'Pangram', sans-serif;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--clr-dark-bg);
  color: var(--clr-white);
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

/* Navigation */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.nav-bar.scrolled {
  padding: 12px 0;
  background: rgba(18, 18, 18, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-white);
  opacity: 0.8;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--clr-orange);
}

.nav-cta {
  background: var(--clr-orange);
  color: var(--clr-white);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 1px solid var(--clr-orange);
}

.nav-cta:hover {
  background: transparent;
  color: var(--clr-orange);
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
}

.nav-menu-btn span {
  width: 28px;
  height: 2px;
  background: var(--clr-white);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 40px;
  overflow: clip;
  background-color: var(--clr-dark-bg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--clr-dark-bg), transparent);
  z-index: 2;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) contrast(1.1);
}

.hero-glow-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 40%, rgba(255, 131, 1, 0.12) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 10;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
  border-left: 2px solid var(--clr-orange);
  padding-left: 32px;
}

.hero-badge {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-orange);
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--clr-orange);
}

.hero-desc {
  font-size: 16px;
  color: var(--clr-text-gray);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-white);
}

.btn-play .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--clr-orange);
}

.btn-play:hover .icon-circle {
  border-color: var(--clr-orange);
  background-color: rgba(255, 131, 1, 0.1);
  transform: scale(1.05);
}

/* Sidebar social / numbers */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 40px;
}

.hero-socials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-social-link {
  font-size: 14px;
  color: var(--clr-white);
  opacity: 0.5;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-social-link:hover {
  opacity: 1;
  color: var(--clr-orange);
}

.hero-slider-controls {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.slider-number {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--clr-orange);
}

/* Partner Ribbon */
.partners {
  background: #181818;
  padding: 40px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  z-index: 10;
}

.partners-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--clr-white);
  opacity: 0.3;
  letter-spacing: 2px;
  transition: var(--transition);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.partner-logo:hover {
  opacity: 0.8;
}

.partner-logo span {
  color: var(--clr-orange);
}

/* Section Common */
.section {
  padding: 120px 0;
  position: relative;
}

.section-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--clr-orange);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.section-desc {
  font-size: 16px;
  color: var(--clr-text-gray);
  max-width: 600px;
  line-height: 1.7;
}

/* About Us Section */
.about {
  background-color: var(--clr-dark-bg);
}

.about-card {
  background: #1A1A1A;
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.about-content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text {
  font-size: 15px;
  color: var(--clr-text-gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.about-feat-item span {
  color: var(--clr-orange);
}

.about-visual {
  position: relative;
  overflow: hidden;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  min-height: 400px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.about-visual-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 18, 18, 0.4);
  transition: var(--transition);
}

.about-visual-play .play-btn-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--clr-white);
  color: var(--clr-dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.about-visual:hover .play-btn-circle {
  transform: scale(1.1);
  background: var(--clr-orange);
  color: var(--clr-white);
}

/* Sinais Section */
.sinais {
  background-color: #181818;
}

.sinais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.sinal-card {
  background: var(--clr-dark);
  border: 1px solid var(--clr-border);
  padding: 40px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.sinal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--clr-orange);
  transition: var(--transition);
}

.sinal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 131, 1, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.sinal-card:hover::before {
  height: 100%;
}

.sinal-icon {
  font-size: 32px;
  margin-bottom: 24px;
  display: block;
}

.sinal-icon-svg {
  width: 36px;
  height: 36px;
  stroke: var(--clr-orange);
  margin-bottom: 24px;
  display: block;
  transition: var(--transition);
}

.sinal-card:hover .sinal-icon-svg {
  transform: scale(1.1);
  stroke: var(--clr-white);
}

.sinal-card h4 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sinal-card p {
  font-size: 14px;
  color: var(--clr-text-gray);
  line-height: 1.6;
}

/* Services Section */
.services {
  background-color: var(--clr-dark-bg);
}

.services-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.services-nav::-webkit-scrollbar {
  display: none;
}

.services-nav-btn {
  padding: 14px 24px;
  background: #1A1A1A;
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-white);
  white-space: nowrap;
  transition: var(--transition);
}

.services-nav-btn.active, .services-nav-btn:hover {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
}

.services-display {
  margin-top: 40px;
}

.service-display-card {
  display: none;
  background: #1A1A1A;
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
}

.service-display-card.active {
  display: grid;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-display-content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-display-content h3 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.service-display-content p {
  font-size: 15px;
  color: var(--clr-text-gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.service-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.service-list-item span {
  color: var(--clr-orange);
}

.service-display-image {
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

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

/* Fleet / Partnership Section */
.fleet {
  background: linear-gradient(135deg, #1A1A1A 0%, var(--clr-dark-bg) 100%);
}

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

.fleet-img {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

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

.fleet-content h3 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fleet-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 40px;
}

.fleet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.fleet-item span {
  color: var(--clr-orange);
}

/* Why Choose Us Section */
.why-us {
  background-color: #181818;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: var(--clr-dark-bg);
  border: 1px solid var(--clr-border);
  padding: 40px 32px;
  border-radius: 8px;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--clr-orange);
  transform: translateY(-5px);
}

.why-num {
  font-size: 32px;
  font-weight: 900;
  color: rgba(255, 131, 1, 0.15);
  margin-bottom: 16px;
  display: block;
  font-family: var(--font-primary);
}

.why-card h4 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--clr-text-gray);
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  background-color: var(--clr-dark-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: #1A1A1A;
  border: 1px solid var(--clr-border);
  padding: 48px;
  border-radius: 12px;
  position: relative;
}

.testimonial-stars {
  color: var(--clr-orange);
  margin-bottom: 24px;
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--clr-white);
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--clr-orange);
  border: 1px solid rgba(255, 131, 1, 0.3);
}

.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 12px;
  color: var(--clr-text-gray);
  margin-top: 2px;
}

/* Contact Footer Section */
.footer {
  background-color: #121212;
  border-top: 1px solid var(--clr-border);
  padding: 80px 0 40px;
}

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

.footer-info img {
  height: 48px;
  margin-bottom: 24px;
}

.footer-info p {
  font-size: 14px;
  color: var(--clr-text-gray);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--clr-orange);
}

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

.footer-link {
  font-size: 14px;
  color: var(--clr-text-gray);
}

.footer-link:hover {
  color: var(--clr-orange);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--clr-text-gray);
}

.footer-icon-svg {
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--clr-orange);
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--clr-text-gray);
}

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

/* Floating WhatsApp button */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
  color: var(--clr-white);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

/* Brand Marquee Ribbon */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  padding: 30px 0;
  background: #181818;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  z-index: 10;
  display: flex;
  align-items: center;
}

.progressive-blur-left,
.progressive-blur-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  pointer-events: none;
  z-index: 20;
}

.progressive-blur-left {
  left: 0;
  background: linear-gradient(to right, #181818 0%, rgba(24, 24, 24, 0.9) 20%, rgba(24, 24, 24, 0) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.progressive-blur-right {
  right: 0;
  background: linear-gradient(to left, #181818 0%, rgba(24, 24, 24, 0.9) 20%, rgba(24, 24, 24, 0) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.marquee-content {
  display: inline-flex;
  gap: 45px;
  animation: marquee-scroll 55s linear infinite;
  align-items: center;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 90px;
  flex-shrink: 0;
}

.brand-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.brand-box svg {
  width: 48px;
  height: 48px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-box img {
  width: auto;
  height: 48px;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.3);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-box span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-item:hover .brand-box {
  transform: scale(1.12);
  color: var(--clr-orange);
}

.marquee-item:hover .brand-box img {
  filter: grayscale(0%) opacity(1) brightness(1.2);
}

.marquee-item:hover .brand-box span {
  color: #ffffff;
}

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

/* Responsive constraints */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    border-left: none;
    border-top: 2px solid var(--clr-orange);
    padding-left: 0;
    padding-top: 24px;
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-desc {
    margin: 0 auto 32px;
  }

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

  .hero-right {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
  }

  .hero-socials {
    flex-direction: row;
  }

  .hero-social-link {
    writing-mode: horizontal-tb;
  }

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

  .about-visual {
    clip-path: none;
    order: -1;
  }

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

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid var(--clr-border);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-menu-btn {
    display: flex;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: auto;
  }

  .hero-content {
    padding-left: 20px;
    padding-top: 20px;
  }

  .hero-title {
    font-size: clamp(22px, 7vw, 32px);
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 14px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-badge {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .hero-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-actions {
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .nav-cta {
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 13px;
  }

  .hero-actions .btn-play {
    justify-content: center;
    width: 100%;
    text-align: center;
    font-size: 12px;
  }

  .hero-right {
    margin-top: 24px;
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .hero-socials {
    gap: 16px;
  }

  .hero-social-link {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .hero-slider-controls {
    justify-content: center;
  }

  .progressive-blur-left,
  .progressive-blur-right {
    width: 70px;
  }

  .about-content, .service-display-content {
    padding: 32px 24px;
  }

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

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