/* ==========================================================================
   1. RESET & VARIABLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette */
  --color-navy: #0b1f33;
  --color-blue: #1266f1;
  --color-orange: #f97316;
  --color-light-gray: #f3f6fa;
  --color-white: #ffffff;
  --color-text-gray: #5b6472;
  --color-border: #e2e8f0;

  /* System Native Fonts Fallback */
  --font-family:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;

  /* Container Width */
  --max-width: 1100px;
  --transition-speed: 0.3s;
}

html {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy);
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: #0d4bbf;
}

/* ==========================================================================
     2. REUSABLE UTILITIES & LAYOUT
     ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

section {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.section-header {
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-top: 10px;
  line-height: 1.3;
}

.section-desc {
  font-size: 1rem;
  color: var(--color-text-gray);
  margin-top: 15px;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-blue);
  background-color: #e8f0fe;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 0.95rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #0b51ca;
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-light-gray);
  color: var(--color-navy);
}

.btn-secondary:hover {
  background-color: #e2e8f0;
  color: var(--color-navy);
}

.btn-accent {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn-accent:hover {
  background-color: #ea580c;
  color: var(--color-white);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* Accessible focus ring */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 2px;
}

/* ==========================================================================
     3. SITE HEADER (STICKY)
     ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: padding var(--transition-speed);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 1.5rem;
}

/* Hamburger Toggle Button */
.nav-toggle {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.hamburger {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-navy);
  transition: background-color var(--transition-speed);
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-navy);
  transition:
    transform var(--transition-speed),
    top var(--transition-speed);
}

.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

/* Hamburger Open Animation State */
.nav-toggle[aria-expanded="true"] .hamburger {
  background-color: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Navigation */
.main-navigation {
  position: fixed;
  top: 70px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: var(--color-white);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.main-navigation.is-active {
  left: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
  display: block;
}

.nav-link:hover {
  color: var(--color-blue);
}

.header-cta {
  margin-top: auto;
}

.header-cta .btn {
  width: 100%;
}

/* ==========================================================================
     4. HERO SECTION
     ========================================================================== */
.hero-section {
  background-color: var(--color-light-gray);
  padding-top: 40px;
  padding-bottom: 50px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-content h1 {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--color-text-gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
}

.hero-actions .btn {
  width: 100%;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  border-top: 1px solid var(--color-border);
  padding-top: 25px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-icon {
  font-size: 1.2rem;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-navy);
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==========================================================================
     5. PROBLEM SECTION
     ========================================================================== */
.problem-section {
  background-color: var(--color-white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.problem-card {
  background-color: var(--color-light-gray);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--color-orange);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-navy);
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  line-height: 1.5;
}

.problem-summary {
  background-color: #fef3c7;
  border: 1px solid #fcd34d;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
  color: #78350f;
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
     6. SERVICES SECTION
     ========================================================================== */
.services-section {
  background-color: var(--color-light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.service-card {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition:
    transform var(--transition-speed),
    box-shadow var(--transition-speed);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(18, 102, 241, 0.08);
}

.service-icon {
  color: var(--color-blue);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-gray);
  line-height: 1.5;
}

/* ==========================================================================
     7. FEATURES SECTION (KEUNGGULAN)
     ========================================================================== */
.features-section {
  background-color: var(--color-white);
}

.features-grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
}

.features-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
}

.features-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.features-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-top: 10px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.features-list li {
  display: flex;
  gap: 15px;
}

.feature-bullet {
  color: var(--color-orange);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.features-list h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
}

.features-list p {
  font-size: 0.9rem;
  color: var(--color-text-gray);
  margin-top: 4px;
}

/* ==========================================================================
     8. WORKFLOW SECTION
     ========================================================================== */
.workflow-section {
  background-color: var(--color-light-gray);
}

.workflow-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
}

.workflow-step {
  display: flex;
  gap: 20px;
  background-color: var(--color-white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.step-number {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--color-text-gray);
  line-height: 1.5;
}

/* ==========================================================================
     9. AREA SECTION
     ========================================================================== */
.area-section {
  background-color: var(--color-white);
}

.area-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.area-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-top: 10px;
  margin-bottom: 15px;
}

.area-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.area-item {
  background-color: var(--color-light-gray);
  padding: 15px 20px;
  border-radius: 6px;
  border-left: 3px solid var(--color-blue);
}

.area-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.area-item p {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  margin-top: 2px;
}

.area-note {
  font-size: 0.85rem;
  color: var(--color-text-gray);
  background-color: #eff6ff;
  padding: 15px;
  border-radius: 6px;
  line-height: 1.5;
}

.area-visual {
  border-radius: 12px;
  overflow: hidden;
}

.area-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==========================================================================
     10. CARGO TYPES SECTION
     ========================================================================== */
.items-section {
  background-color: var(--color-light-gray);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

.item-tag {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-navy);
  transition: box-shadow var(--transition-speed);
}

.item-tag:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.item-notice {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #991b1b;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
     11. EEAT / TRUST SECTION
     ========================================================================== */
.trust-section {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.trust-box {
  max-width: 900px;
  margin: 0 auto;
}

.trust-header {
  text-align: center;
  margin-bottom: 40px;
}

.trust-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.trust-header p {
  font-size: 1rem;
  color: #a0aec0;
  max-width: 700px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.trust-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  border-top: 3px solid var(--color-orange);
}

.trust-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.85rem;
  color: #cbd5e0;
  line-height: 1.6;
}

/* ==========================================================================
     12. TESTIMONIALS SECTION
     ========================================================================== */
.testimonials-section {
  background-color: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.testimonial-card {
  background-color: var(--color-light-gray);
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--color-border);
  padding-top: 15px;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.author-info span {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-gray);
}

/* ==========================================================================
     13. FAQ SECTION (ACCORDION)
     ========================================================================== */
.faq-section {
  background-color: var(--color-light-gray);
}

.faq-accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
  cursor: pointer;
}

.faq-trigger:hover {
  color: var(--color-blue);
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-blue);
  transition: transform var(--transition-speed);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--transition-speed) ease-out,
    padding var(--transition-speed) ease-out;
  padding: 0 25px;
}

.faq-panel p {
  font-size: 0.9rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  padding-bottom: 20px;
}

/* Open accordion states handled via JS class manipulation */
.faq-item.is-active .faq-trigger {
  color: var(--color-blue);
}

.faq-item.is-active .faq-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
     14. FINAL CTA SECTION
     ========================================================================== */
.final-cta-section {
  background-color: var(--color-blue);
  color: var(--color-white);
  text-align: center;
}

.final-cta-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-desc {
  font-size: 1rem;
  color: #d1e4ff;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.cta-buttons .btn {
  width: 100%;
  max-width: 320px;
}

/* ==========================================================================
     15. FOOTER
     ========================================================================== */
.site-footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding-top: 60px;
}

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

.footer-brand .footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}

.footer-text {
  font-size: 0.85rem;
  color: #a0aec0;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #cbd5e0;
  font-size: 0.85rem;
}

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

.footer-contact p {
  font-size: 0.85rem;
  color: #cbd5e0;
  margin-bottom: 12px;
}

/* pft-social — fixed template, styled to cargo palette */
.pft-social {
  width: 100%;
  padding-block: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pft-social-heading {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

ul.lns.pft-social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pft-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  transition:
    background-color var(--transition-speed) ease,
    border-color var(--transition-speed) ease,
    transform var(--transition-speed) ease,
    box-shadow var(--transition-speed) ease;
}

.pft-social-link:hover,
.pft-social-link:focus-visible {
  background: var(--color-blue);
  border-color: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18, 102, 241, 0.35);
}

.pft-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #081726;
}

.footer-bottom-flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.copyright {
  font-size: 0.8rem;
  color: #718096;
}

.dev-credit {
  margin: 0;
  font-size: 0.75rem;
  color: #8899a8;
}

.dev-credit span {
  color: #a0aec0;
  font-weight: 500;
}

.legal-notice {
  font-size: 0.75rem;
  color: #718096;
  line-height: 1.5;
}

/* ==========================================================================
     16. BACK TO TOP
     ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--color-orange);
  color: var(--color-white);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #ea580c;
  transform: translateY(-3px);
}

/* ==========================================================================
     MEDIA QUERIES (TABLET & DESKTOP UPGRADES)
     ========================================================================== */

/* Width: 768px (Tablet) */
@media (min-width: 768px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-header h2 {
    font-size: 2.1rem;
  }

  /* Header */
  .nav-toggle {
    display: none;
  }

  .main-navigation {
    position: static;
    height: auto;
    width: auto;
    padding: 0;
    flex-direction: row;
    box-shadow: none;
    align-items: center;
    gap: 30px;
  }

  .nav-list {
    flex-direction: row;
    gap: 25px;
  }

  .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
  }

  .header-cta {
    margin-top: 0;
  }

  .header-cta .btn {
    width: auto;
  }

  /* Hero */
  .hero-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1.1;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-image-wrapper {
    flex: 0.9;
  }

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

  .hero-actions .btn {
    width: auto;
  }

  /* Problems */
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Features */
  .features-grid {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }

  .features-image-wrapper,
  .features-content {
    flex: 1;
  }

  /* Workflow */
  .workflow-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Area */
  .area-grid {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }

  .area-content {
    flex: 1.2;
  }

  .area-visual {
    flex: 0.8;
  }

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

  /* Items */
  .items-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Final CTA */
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .copyright {
    flex-shrink: 0;
  }

  .legal-notice {
    text-align: right;
    max-width: 600px;
  }
}

/* Width: 1024px (Large Desktop) */
@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .workflow-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}
