@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DM_Sans/DMSans-VariableFont_opsz\,wght.ttf') format('woff2');

}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'DM Sans';
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 40px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  z-index: 10;
}


.logo {
  justify-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 10px 16px;
  border: 1px solid #FFEBAE;
  border-radius: 6px;

  background: rgba(255,235,174,0.3);
  transition: 0.2s;
}


.logo img {
  height: 28px;   
  width: auto;
  display: block;
  max-height: 100%;
}

.logo:hover{
  background: #FFEBAE;
  color: black;
}


.nav-pill {
  justify-self: center;
  display: flex;
  gap: 20px;

  padding: 8px 16px;
  border: 1px solid #FFEBAE;
  border-radius: 8px;
  background: rgba(255,235,174,0.3); 
  backdrop-filter: blur(6px);
}


.nav-pill a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  padding: 6px 10px;
  transition: 0.2s;
}

.nav-pill a:hover {
  background: #FFEBAE;
  color: black;
  border-radius: 4px;
}


.cta-btn {
  background: rgba(255,235,174,0.3);
  justify-self: end;
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid #FFEBAE;
  border-radius: 6px;
  color: black;
  transition: 0.2s;
}

.cta-btn:hover {
  background: #FFEBAE;
  color: black;
}

.process-section{
    height: 110vh;
    padding:110px 110px;
    background:white;
}

.process-grid{
    padding-top: 20px;
    display:grid;
    grid-template-columns: 1.1fr 0.7fr;
    gap:80px;
    align-items:start;
}

.process-left{
    width:100%;
}

.top-label{
    font-size:16px;
    font-weight:500;
    margin-bottom:18px;
    color:#111;
}

.process-title{
    font-size:48px;
    font-weight:400;
    line-height:1;
    margin-bottom:28px;
    letter-spacing:-2px;
}

.process-description{
    max-width:760px;
    font-size:20px;
    line-height:1.45;
    color:#2d2d2d;
    margin-bottom:60px;
}

.process-steps{
    width:100%;
}

.step{
    display:grid;
    grid-template-columns: 140px 1fr;
    column-gap:28px;
    padding:0 0 42px 0;
    margin-bottom:42px;
    border-bottom:4px solid #efd88b;
}

.step:last-child{
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
}

.step-number{
    font-size:84px;
    font-weight:600;
    line-height:1;
    color:#f0d16a;
}

.step-number.dark{
    color:#232323;
}

.step-content h3{
    font-size:28px;
    font-weight:400;
    margin-bottom:22px;
    color:#262626;
}

.step-content p{
    font-size:20px;
    color:#383838;
    line-height:1.4;
}

.process-image{
    width:100%;
    height:100%;
}

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

/* =========================================
   FEATURE SLIDER
========================================= */

.feature-slider-section{
    width:100%;
    background:#2c2c2c;
    padding:90px 60px 0px;
    overflow:hidden;
    position:relative;
}

.slider-dots{
    margin-top: 65px;
    margin-bottom: 0;
    padding-bottom: 70px;
}

.slider-wrapper{
    position:relative;
    width:100%;
    max-width:1500px;
    margin:0 auto;
    overflow:hidden;
}


.slides{
    display:flex;
    width:300%;
    transition:transform 1s cubic-bezier(.16,1,.3,1);
}

.slide{
    width:33.3333%;
    flex-shrink:0;

    display:grid;
    grid-template-columns: 420px 650px;
    justify-content:center;
    align-items:center;

    gap:90px;

    padding:0 120px;
}

/* =========================================
   PHONE IMAGE
========================================= */

.phone-image{
    width:100%;
    display:flex;
    justify-content:center;
}

.phone-image img{
    width:100%;
    max-width:360px;
    object-fit:contain;
}

/* =========================================
   TEXT
========================================= */

.slide-content{
    color:white;
    max-width:650px;
}

.slide-content h2{
    font-size:54px;
    font-weight:500;
    margin-bottom:40px;
    line-height:1.1;
}

.slide-content h3{
    font-size:34px;
    font-weight:400;
    line-height:1.35;
    margin-bottom:36px;
    color:#f3f3f3;
}

.slide-content p{
    font-size:24px;
    line-height:1.5;
    color:#dddddd;
    max-width:640px;
}

/* =========================================
   ARROWS
========================================= */

.slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:88px;
    height:88px;

    border:none;
    border-radius:50%;

  background: rgba(255,235,174,0.3);
  border: 1px solid #FFEBAE;
  color: #FFEBAE;

    font-size:50px;
    font-weight:300;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.3s ease;

    z-index:10;
}

.slider-arrow:hover{
    transform:translateY(-50%) scale(1.08);
}

.slider-arrow.left{
    left:40px;
}


.slider-arrow.right{
    right:40px;
}

/* =========================================
   DOTS
========================================= */

.slider-dots{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;

    margin-top:65px;
}

.dot{
    width:90px;
    height:10px;

    border-radius:20px;

    background:#8e8e8e;

    cursor:pointer;

    transition:0.3s ease;
}

.dot.active{
    background:white;
}


/* =========================================
   LAST MILE SECTION
========================================= */

.last-mile-section{
    position:relative;
    width:100%;
    padding:100px 80px 120px;
    overflow:hidden;
    color:white;

    min-height:850px;

}

.last-mile-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:1;
}


.last-mile-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.72);
    z-index:2;
}

.last-mile-content{
    position:relative;
    z-index:3;

    max-width:1500px;
    margin:auto;
}


.last-mile-heading{
    max-width:900px;
    margin-bottom:70px;
}

.last-mile-heading h2{
    font-size:48px;
    font-weight:400;
    line-height:1.1;
    margin-bottom:28px;
    color:white;
}

.last-mile-heading p{
    font-size:24px;
    line-height:1.5;
    color:#f1f1f1;
    font-weight:300;
}


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

.benefit-card{
    border-radius:24px;

    min-height:280px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px;

    text-align:center;

    background: rgba(255,235,174,0.12);

    border: 1px solid rgba(255,255,255,0.2);

    backdrop-filter: blur(14px);

    transition:
      transform 0.5s cubic-bezier(.16,1,.3,1),
      background 0.4s ease,
      border 0.4s ease;

    overflow:hidden;

    position:relative;
}

.benefit-card:hover{
    transform: translateY(-10px);

    background: rgba(255,235,174,0.18);

    border: 1px solid #FFEBAE;
}

.benefit-card::before{
    content:"";

    position:absolute;
    inset:0;

    background:
      radial-gradient(
        circle at top left,
        rgba(255,255,255,0.18),
        transparent 40%
      );

    opacity:0;

    transition:0.5s ease;
}

.benefit-card:hover::before{
    opacity:1;
}

.benefit-card p{
    color:white;
    font-size:22px;
    line-height:1.45;
    font-weight:500;
}

.footer {
  background: linear-gradient(180deg, #1b1b1b, #141414);
  padding: 30px 40px;
  color: white;
}

.footer-single-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  max-width: 1400px;
  margin: auto;

  flex-wrap: wrap; /* keeps it responsive */
}

.footer-brand {
  font-size: 18px;
  font-weight: 500;
  color: #FFEBAE;
  letter-spacing: -0.5px;
}

.footer-text,
.footer-tagline {
  font-size: 12px;
  opacity: 0.65;
  white-space: nowrap;
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: 0.2s ease;
}

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

.footer-cta-btn {
  font-size: 13px;
  padding: 8px 14px;
  border: 1px solid #FFEBAE;
  border-radius: 999px;
  color: #FFEBAE;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-cta-btn:hover {
  background: #FFEBAE;
  color: #111;
}


/* =========================================================
TABLET RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

/* NAVBAR */

.navbar {
padding: 20px 24px;
}

.nav-pill {
gap: 12px;
padding: 8px 12px;
}

/* =========================================
    PROCESS SECTION
========================================= */

.process-section {
height: auto;
padding: 140px 40px 100px;
}

.process-grid {
grid-template-columns: 1fr;
gap: 60px;
}

.process-title {
font-size: 42px;
}

.process-description {
font-size: 20px;
max-width: 100%;
}

.step {
grid-template-columns: 100px 1fr;
}

.step-number {
font-size: 64px;
}

.step-content h3 {
font-size: 24px;
}

.step-content p {
font-size: 18px;
}

.process-image {
max-height: 700px;
}

/* =========================================
    FEATURE SLIDER
========================================= */

.feature-slider-section {
padding: 80px 30px 70px;
}

.slide {
grid-template-columns: 1fr;
gap: 50px;

padding: 0 60px;
text-align: center;
}

.phone-image img {
max-width: 300px;
}

.slide-content {
max-width: 100%;
}

.slide-content h2 {
font-size: 44px;
}

.slide-content h3 {
font-size: 28px;
}

.slide-content p {
font-size: 20px;
max-width: 100%;
}

.slider-arrow {
width: 70px;
height: 70px;
font-size: 38px;
}

.slider-arrow.left {
  left: 15px !important;
}

.slider-arrow.right {
  right: 15px !important;
}

.slider-arrow {
  opacity: 0.85;
}

.slider-arrow:hover {
  opacity: 1;
}

/* =========================================
    LAST MILE SECTION
========================================= */

.last-mile-section {
padding: 90px 40px 100px;
}

.last-mile-heading h2 {
font-size: 42px;
}

.last-mile-heading p {
font-size: 20px;
}

.benefit-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-card {
  min-height: 160px;
  padding: 20px;
}

.benefit-card p {
font-size: 16px;
}

/* =========================================
    FOOTER
========================================= */

.footer {
    padding: 30px 20px;
  }

  .footer-single-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;

    max-width: 100%;
  }


  .footer-brand {
    font-size: 18px;
  }


  .footer-text,
  .footer-tagline {
    font-size: 12px;
    opacity: 0.65;
    white-space: normal; 
    line-height: 1.4;
  }


  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-cta {
    width: 100%;
  }

  .footer-cta-btn {
    display: inline-block;
    width: 100%;
    text-align: center;

    padding: 10px 14px;
    border-radius: 12px;
  }

}


/* =========================================================
MOBILE RESPONSIVE
========================================================= */

@media (max-width: 768px) {

body {
overflow-x: hidden;
}

/* =========================================
    NAVBAR
========================================= */

.navbar {
padding: 20px;
}

/* =========================================
    PROCESS SECTION
========================================= */

.process-section {
padding: 120px 20px 80px;
}

.process-grid {
gap: 50px;
}

.top-label {
font-size: 14px;
}

.process-title {
font-size: 34px;
line-height: 1.1;
letter-spacing: -1px;
}

.process-description {
font-size: 18px;
line-height: 1.6;
margin-bottom: 50px;
}

.step {
grid-template-columns: 1fr;
gap: 20px;

margin-bottom: 40px;
padding-bottom: 40px;
}

.step-number {
font-size: 54px;
}

.step-content h3 {
font-size: 22px;
margin-bottom: 14px;
}

.step-content p {
font-size: 17px;
line-height: 1.6;
}

.process-image img {
max-height: 500px;
object-fit: cover;
}

/* =========================================
    FEATURE SLIDER
========================================= */

.feature-slider-section {
padding: 70px 20px 60px;
}

.slide {
grid-template-columns: 1fr;

gap: 40px;

padding: 0 10px;
}

.phone-image img {
max-width: 240px;
}

.slide-content h2 {
font-size: 32px;
margin-bottom: 24px;
}

.slide-content h3 {
font-size: 22px;
margin-bottom: 24px;
}

.slide-content p {
font-size: 17px;
line-height: 1.6;
}


.slider-arrow {
width: 56px;
height: 56px;

font-size: 28px;
}

.slider-arrow.left {
left: -5px;
}

.slider-arrow.right {
right: -5px;
}


.slider-dots {
margin-top: 40px;
gap: 10px;
}

.dot {
width: 50px;
height: 8px;
}

/* =========================================
    LAST MILE SECTION
========================================= */

.last-mile-section {
padding: 80px 20px;
min-height: auto;
}

.last-mile-heading {
margin-bottom: 50px;
}

.last-mile-heading h2 {
font-size: 34px;
line-height: 1.2;
}

.last-mile-heading p {
font-size: 18px;
line-height: 1.6;
}

}


/* =========================================================
   MOBILE + TABLET BURGER MENU ONLY
========================================================= */

.menu-toggle,
.mobile-menu {
  display: none;
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 1024px) {

.nav-pill,
.cta-btn {
  display: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 24px;
}

.menu-toggle {
  position: fixed;
  top: 20px;
  right: 24px;

  width: 52px;
  height: 52px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;

  background: rgba(255,235,174,0.15);
  backdrop-filter: blur(10px);

  border: 1px solid #FFEBAE;
  border-radius: 12px;

  cursor: pointer;
  z-index: 2000;
}


.menu-toggle span {
  width: 22px;
  height: 2px;

  background: #FFEBAE;
  border-radius: 2px;
}


.mobile-menu {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(18px);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.35s ease;

  z-index: 1999;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.close-menu {
  position: absolute;
  top: 24px;
  left: 24px;

  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,235,174,0.15);
  backdrop-filter: blur(10px);

  border: 1px solid #FFEBAE;
  border-radius: 12px;

  color: #FFEBAE;
  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  transition: 0.25s ease;

  z-index: 2001;
}

.close-menu:hover {
  background: #FFEBAE;
  color: black;

  transform: rotate(90deg);
}

.close-menu:hover {
  background: #FFEBAE;
  color: black;

  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;

  text-align: center;
}

.mobile-nav a {
  color: white;
  text-decoration: none;

  font-size: 42px;
  font-weight: 300;

  transition: 0.2s ease;
}

.mobile-nav a:hover {
  color: #FFEBAE;
}

}


/* =========================================
   GLOBAL REVEAL ANIMATIONS
========================================= */

.reveal {
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(.16,1,.3,1);
}

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


.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.process-image img,
.last-mile-bg {
  transition: transform 1.8s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

.process-left,
.process-image {
  animation: heroReveal 1.4s cubic-bezier(.16,1,.3,1);
}

@keyframes heroReveal {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

.process-title,
.slide-content h2,
.last-mile-heading h2 {
  letter-spacing: -2px;

  animation: textFloat 5s ease-in-out infinite;
}

@keyframes textFloat {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(0px);
  }

}

