*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:#0a0a0a;
  color:#ffffff;
}

body.modal-open{
  overflow:hidden;
}

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

a{
  color:inherit;
}

button,
input,
select,
textarea{
  font-family:inherit;
}

.container{
  max-width:1180px;
  margin:auto;
  padding:60px 20px;
}

/* HEADER */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:rgba(7,7,10,0.72);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,0.07);
  box-shadow:0 8px 30px rgba(0,0,0,0.28);
}

.site-header::before{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,122,0,0.5), transparent);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-top:14px;
  padding-bottom:14px;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  min-width:0;
}

.brand-mark{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.brand-mark img{
  width:54px;
  height:54px;
  object-fit:contain;
}

.brand-text{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.brand-title{
  font-size:21px;
  font-weight:800;
  letter-spacing:0.2px;
  color:#ffffff;
  line-height:1.05;
}

.brand-subtitle{
  font-size:11px;
  font-weight:500;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:#a5aab4;
  margin-top:4px;
}

.nav-panel{
  display:flex;
  align-items:center;
  gap:18px;
  margin-left:auto;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px;
  border:1px solid rgba(255,255,255,0.06);
  background:rgba(255,255,255,0.03);
  border-radius:16px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.03);
}

.main-nav a{
  text-decoration:none;
  color:#d1d5db;
  font-size:14px;
  font-weight:500;
  padding:11px 16px;
  border-radius:12px;
  transition:all .3s ease;
}

.main-nav a:hover{
  color:#ffffff;
  background:rgba(255,255,255,0.06);
}

.header-contact{
  display:flex;
  align-items:center;
  gap:12px;
}

.header-phone{
  text-decoration:none;
  color:#ffffff;
  font-size:14px;
  font-weight:600;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
  transition:all .3s ease;
  white-space:nowrap;
}

.header-phone:hover{
  border-color:rgba(255,122,0,0.45);
  color:#ffb066;
  background:rgba(255,122,0,0.06);
}

.nav-cta{
  text-decoration:none;
  color:#ffffff;
  font-size:14px;
  font-weight:700;
  padding:13px 20px;
  border-radius:14px;
  background:linear-gradient(135deg, #ff8f1f 0%, #ff6a00 100%);
  box-shadow:0 12px 28px rgba(255,122,0,0.25);
  transition:transform .3s ease, box-shadow .3s ease, filter .3s ease;
  white-space:nowrap;
}

.nav-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(255,122,0,0.35);
  filter:brightness(1.04);
}

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  cursor:pointer;
  padding:0;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  transition:all .3s ease;
}

.menu-toggle:hover{
  background:rgba(255,122,0,0.08);
  border-color:rgba(255,122,0,0.3);
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:#ffffff;
  border-radius:10px;
  transition:all .3s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* HERO */

.hero{
  min-height:100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(rgba(0,0,0,0.70),rgba(0,0,0,0.88)),
    url("images/truck-hero.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:140px 20px 70px;
}

.hero-inner{
  max-width:980px;
  width:100%;
}

.hero h1{
  font-size:58px;
  line-height:1.08;
  margin:0;
}

.hero-benefits{
  display:grid;
  grid-template-columns:repeat(2, minmax(320px, 360px));
  justify-content:center;
  align-items:stretch;
  gap:34px;
  margin-top:42px;
  margin-bottom:18px;
}

.hero-benefits > .benefit-column{
  min-height: 290px;
}

.benefit-column{
  background:rgba(0,0,0,0.52);
  padding:30px 28px 26px;
  border-radius:16px;
  text-align:left;
  border:1px solid rgba(255,255,255,0.07);
  position:relative;
  transition:all .3s ease;
  backdrop-filter:blur(3px);
  -webkit-backdrop-filter:blur(3px);
}

.benefit-column:hover{
  transform:translateY(-5px);
  border-color:rgba(255,122,0,0.55);
  box-shadow:0 12px 30px rgba(0,0,0,0.45);
}

.benefit-column h3{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.25;
  color:#ff7a00;
}

.benefit-column ul{
  list-style:none;
  padding:0;
  margin:0;
}

.benefit-column li{
  margin-bottom:11px;
  color:#f0f0f0;
  font-size:15px;
  display:flex;
  align-items:flex-start;
  line-height:1.45;
}

.benefit-column li:last-child{
  margin-bottom:0;
}

.benefit-column li::before{
  content:"✔";
  color:#ff7a00;
  font-weight:700;
  margin-right:10px;
  font-size:14px;
  line-height:1.4;
  flex-shrink:0;
}

/* RATES BOX */

.rates-box{
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:290px;
}

.rates-box h3{
  margin-bottom:4px;
}

.rates-header{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:-2px;
  margin-bottom:8px;
  font-size:12px;
  font-weight:700;
  color:#4ade80;
  letter-spacing:.7px;
}

.live-text{
  color:#4ade80;
}

.live-dot{
  width:8px;
  height:8px;
  background:#4ade80;
  border-radius:50%;
  box-shadow:0 0 8px rgba(74,222,128,0.8);
}

.rate-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:12px 14px;
  min-height:48px;
  background:rgba(255,255,255,0.04);
  border-radius:10px;
  font-weight:500;
  font-size:15px;
  border:1px solid rgba(255,255,255,0.05);
  transition:background .25s ease, border-color .25s ease;
}

.rate-row span:first-child{
  color:#ffffff;
}

.rate-row span:last-child{
  color:#ff7a00;
  font-weight:600;
  text-align:right;
}

.rate-row:hover{
  background:rgba(255,122,0,0.08);
  border-color:rgba(255,122,0,0.3);
}

/* HERO BUTTONS */

.hero-buttons{
  margin-top:38px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:15px;
}

.primary{
  background:#ff7a00;
  padding:14px 28px;
  border-radius:10px;
  text-decoration:none;
  color:#ffffff;
  font-weight:600;
  box-shadow:0 0 20px rgba(255,122,0,0.4);
  transition:.3s;
}

.primary:hover{
  transform:translateY(-2px);
  box-shadow:0 0 30px rgba(255,122,0,0.7);
}

/* SECTIONS */

.services{
  background:#0f0f0f;
}

.services h2,
.how h2,
.apply h2{
  margin:0;
  font-size:36px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:30px;
  margin-top:40px;
}

.service-card{
  background:#161616;
  padding:20px;
  border-radius:14px;
  transition:transform .35s ease, box-shadow .35s ease, background .35s ease;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.04);
  display:flex;
  flex-direction:column;
  height:100%;
}

.service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:70%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform:skewX(-20deg);
  transition:left .7s ease;
  pointer-events:none;
}

.service-card::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:2px;
  background:#ff7a00;
  opacity:0;
  transition:opacity .3s;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.6),
    0 0 20px rgba(255,122,0,0.15);
  background:#1f1f1f;
}

.service-card:hover::before{
  left:140%;
}

.service-card:hover::after{
  opacity:1;
}

.service-img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:15px;
  transition:transform .5s ease;
}

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

.service-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:0;
}

.service-card h3{
  margin:0;
  font-size:22px;
  line-height:1.15;
}

/* HOW SECTION */

.how{
  background:
    radial-gradient(circle at top center, rgba(255,122,0,0.08), transparent 28%),
    #0a0a0a;
}

.timeline{
  margin-top:40px;
}

.premium-timeline{
  display:grid;
  grid-template-columns:1fr 70px 1fr 70px 1fr;
  align-items:stretch;
  max-width:1140px;
  margin:40px auto 0;
}

.timeline-step{
  position:relative;
  background:linear-gradient(180deg, rgba(24,24,26,0.98), rgba(14,14,16,0.98));
  padding:34px 28px 30px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.03);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
  overflow:hidden;
  min-height:280px;
}

.timeline-step::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, rgba(255,122,0,0.55), transparent 75%);
  opacity:.9;
}

.timeline-step::after{
  content:"";
  position:absolute;
  top:-70px;
  right:-50px;
  width:160px;
  height:160px;
  background:radial-gradient(circle, rgba(255,122,0,0.12), transparent 70%);
  filter:blur(10px);
  pointer-events:none;
}

.timeline-step:hover{
  transform:translateY(-8px);
  border-color:rgba(255,122,0,0.38);
  box-shadow:
    0 24px 50px rgba(0,0,0,0.52),
    0 0 24px rgba(255,122,0,0.10);
  background:linear-gradient(180deg, rgba(28,28,30,1), rgba(16,16,18,1));
}

.timeline-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:24px;
}

.step-number-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
}

.step-number{
  width:64px;
  height:64px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:800;
  color:#ffffff;
  background:linear-gradient(135deg, #ff9b32 0%, #ff6a00 100%);
  box-shadow:
    0 0 0 8px rgba(255,122,0,0.08),
    0 14px 30px rgba(255,122,0,0.24);
  flex-shrink:0;
}

.timeline-icon{
  width:56px;
  height:56px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.03);
  flex-shrink:0;
}

.timeline-step h3{
  margin:0 0 14px;
  font-size:28px;
  line-height:1.1;
  color:#ffffff;
}

.timeline-step p{
  margin:0;
  font-size:16px;
  color:#c5cbd4;
  line-height:1.7;
  max-width:290px;
}

.timeline-connector{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.timeline-connector span{
  display:block;
  width:100%;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(255,122,0,0.15), rgba(255,122,0,0.85), rgba(255,122,0,0.15));
  box-shadow:0 0 18px rgba(255,122,0,0.22);
}

.timeline-connector::after{
  content:"";
  position:absolute;
  right:8px;
  width:12px;
  height:12px;
  border-top:2px solid #ff7a00;
  border-right:2px solid #ff7a00;
  transform:rotate(45deg);
  box-shadow:0 0 10px rgba(255,122,0,0.25);
}

.start-note{
  text-align:center;
  margin-top:34px;
  color:#b8bec7;
  font-size:18px;
  line-height:1.7;
}

.start-note strong{
  color:#ffffff;
}

/* APPLY */

.apply{
  position:relative;
  background:
    radial-gradient(circle at top left, rgba(255,122,0,0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,122,0,0.06), transparent 24%),
    #0f0f0f;
  overflow:hidden;
}

.apply::before{
  content:"";
  position:absolute;
  inset:auto auto 0 -120px;
  width:280px;
  height:280px;
  background:radial-gradient(circle, rgba(255,122,0,0.10), transparent 70%);
  filter:blur(30px);
  pointer-events:none;
}

.form-box{
  max-width:760px;
  position:relative;
  z-index:1;
}

.apply-intro{
  text-align:center;
  max-width:720px;
  margin:0 auto 28px;
}

.apply-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,122,0,0.12);
  border:1px solid rgba(255,122,0,0.18);
  color:#ff9a3d;
  font-size:12px;
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.apply-intro p{
  margin:16px auto 0;
  color:#b7bec8;
  font-size:17px;
  line-height:1.7;
  max-width:640px;
}

.application-card{
  position:relative;
  padding:28px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(20,20,22,0.92), rgba(10,10,12,0.94));
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 26px 70px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow:hidden;
}

.application-card-glow{
  position:absolute;
  top:-120px;
  right:-60px;
  width:260px;
  height:260px;
  background:radial-gradient(circle, rgba(255,122,0,0.20), transparent 68%);
  filter:blur(18px);
  animation:glowFloat 6s ease-in-out infinite;
  pointer-events:none;
}

.driver-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.field-group{
  position:relative;
}

.field-full{
  grid-column:1 / -1;
}

.field-group input,
.field-group select,
.field-group textarea{
  width:100%;
  padding:24px 16px 12px;
  border:none;
  border-radius:16px;
  background:rgba(255,255,255,0.035);
  color:#ffffff;
  font-size:15px;
  border:1px solid rgba(255,255,255,0.08);
  transition:border-color .3s ease, box-shadow .3s ease, transform .3s ease, background .3s ease;
  appearance:none;
}

.field-group select:invalid{
  color:transparent;
}

.field-group select option[value=""]{
  color:#777777;
}

.field-group select option{
  color:#000000;
  background:#ffffff;
}

.field-group select{
  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:12px;
}

.field-group textarea{
  min-height:140px;
  resize:vertical;
}

.field-group input::placeholder,
.field-group textarea::placeholder{
  color:transparent;
}

.field-group label{
  position:absolute;
  left:16px;
  top:18px;
  color:#8f98a3;
  font-size:15px;
  pointer-events:none;
  transition:all .24s ease;
  background:transparent;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus{
  outline:none;
  border-color:rgba(255,122,0,0.55);
  box-shadow:
    0 0 0 4px rgba(255,122,0,0.10),
    0 14px 30px rgba(0,0,0,0.18);
  background:rgba(255,255,255,0.05);
  transform:translateY(-1px);
}

.field-group input:focus + label,
.field-group input:not(:placeholder-shown) + label,
.field-group textarea:focus + label,
.field-group textarea:not(:placeholder-shown) + label,
.field-group select:focus + label,
.field-group select:valid + label,
.field-group select.has-value + label{
  top:8px;
  font-size:11px;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:#ff9a3d;
}

.form-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  margin-top:8px;
}

.form-note{
  color:#9da5af;
  font-size:14px;
  line-height:1.6;
}

.submit-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:220px;
  padding:17px 26px;
  border:none;
  border-radius:16px;
  background:linear-gradient(135deg, #ff8f1f 0%, #ff6a00 100%);
  color:#ffffff;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  overflow:hidden;
  box-shadow:0 18px 36px rgba(255,122,0,0.28);
  transition:transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.submit-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 44px rgba(255,122,0,0.34);
  filter:brightness(1.03);
}

.submit-btn:active{
  transform:translateY(0);
}

.submit-btn:disabled{
  cursor:not-allowed;
}

.submit-btn-text{
  position:relative;
  z-index:2;
}

.submit-btn-shine{
  position:absolute;
  top:0;
  left:-120%;
  width:70%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.34), transparent);
  transform:skewX(-20deg);
  z-index:1;
}

.submit-btn:hover .submit-btn-shine{
  animation:buttonShine .9s ease;
}

.form-success{
  display:none;
  padding:16px 18px;
  border-radius:16px;
  background:rgba(34,197,94,0.10);
  border:1px solid rgba(34,197,94,0.24);
  color:#b7f7c8;
  font-size:15px;
  line-height:1.6;
}

.form-success.show{
  display:block;
  animation:successReveal .45s ease;
}

/* FOOTER */

.site-footer{
  position:relative;
  background:
    radial-gradient(circle at top left, rgba(255,122,0,0.10), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255,122,0,0.08), transparent 28%),
    #050505;
  border-top:1px solid rgba(255,255,255,0.07);
  overflow:hidden;
}

.site-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:min(1000px, 90%);
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,122,0,0.55), transparent);
}

.footer-container{
  padding-top:48px;
  padding-bottom:28px;
}

.footer-top{
  display:grid;
  grid-template-columns:1.4fr .8fr 1fr;
  gap:40px;
  align-items:start;
}

.footer-brand{
  display:flex;
  align-items:flex-start;
  gap:18px;
}

.footer-logo-wrap{
  width:90px;
  height:90px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,122,0,0.16), rgba(255,122,0,0.05));
  border:1px solid rgba(255,122,0,0.22);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 14px 28px rgba(0,0,0,0.25);
}

.footer-logo{
  width:84px;
  height:84px;
  object-fit:contain;
}

.footer-brand h3,
.footer-links h4,
.footer-contact-box h4{
  margin:0 0 14px;
}

.footer-brand h3{
  font-size:22px;
  font-weight:700;
  color:#ffffff;
}

.footer-brand p{
  margin:0;
  max-width:380px;
  color:#a7adb7;
  font-size:15px;
  line-height:1.7;
}

.footer-links,
.footer-contact-box{
  display:flex;
  flex-direction:column;
}

.footer-links h4,
.footer-contact-box h4{
  color:#ffffff;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}

.footer-links a,
.footer-contact-box a,
.footer-contact-box span{
  color:#b5bbc5;
  text-decoration:none;
  margin-bottom:12px;
  font-size:15px;
  transition:color .25s ease, transform .25s ease;
}

.footer-links a:hover,
.footer-contact-box a:hover{
  color:#ff9a3d;
  transform:translateX(3px);
}

.footer-contact-box span{
  color:#8d939d;
  margin-bottom:0;
  line-height:1.6;
}

.footer-bottom{
  margin-top:34px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.06);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-bottom p{
  margin:0;
  color:#7d848e;
  font-size:14px;
}

/* CENTER SECTION TITLES */

.services h2,
.how h2{
  text-align:center;
  margin-bottom:40px;
  font-size:36px;
  font-weight:700;
}

.services h2::after,
.how h2::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  background:#ff7a00;
  margin:15px auto 0;
  border-radius:2px;
}

/* ANIMATIONS */

.hidden{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

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

.service-animate{
  opacity:0;
  transform:translateY(50px) scale(.96);
  filter:blur(8px);
}

.service-animate.show-card{
  animation:serviceReveal .8s cubic-bezier(.2,.65,.2,1) forwards;
}

.service-animate:nth-child(1).show-card{
  animation-delay:.08s;
}

.service-animate:nth-child(2).show-card{
  animation-delay:.22s;
}

.service-animate:nth-child(3).show-card{
  animation-delay:.36s;
}

@keyframes serviceReveal{
  0%{
    opacity:0;
    transform:translateY(50px) scale(.96);
    filter:blur(8px);
  }
  60%{
    opacity:1;
    transform:translateY(-6px) scale(1.01);
    filter:blur(0);
  }
  100%{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }
}

@keyframes livePulse{
  0%{
    transform:scale(1);
    opacity:1;
  }
  50%{
    transform:scale(1.6);
    opacity:.45;
  }
  100%{
    transform:scale(1);
    opacity:1;
  }
}

@keyframes glowFloat{
  0%{
    transform:translate3d(0,0,0) scale(1);
  }
  50%{
    transform:translate3d(-16px,18px,0) scale(1.08);
  }
  100%{
    transform:translate3d(0,0,0) scale(1);
  }
}

@keyframes buttonShine{
  0%{
    left:-120%;
  }
  100%{
    left:150%;
  }
}

@keyframes successReveal{
  0%{
    opacity:0;
    transform:translateY(10px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes spin{
  to{
    transform:rotate(360deg);
  }
}

/* FORM STATES */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill{
  -webkit-text-fill-color:#ffffff;
  box-shadow:0 0 0 1000px rgba(255,255,255,0.035) inset;
  border:1px solid rgba(255,122,0,0.55);
  transition:background-color 5000s ease-in-out 0s;
}

.application-card.focused{
  box-shadow:
    0 0 0 1px rgba(255,122,0,0.35),
    0 20px 60px rgba(0,0,0,0.55),
    0 0 40px rgba(255,122,0,0.12);
}

.spinner{
  width:18px;
  height:18px;
  border:2px solid rgba(255,255,255,0.3);
  border-top:2px solid white;
  border-radius:50%;
  animation:spin 0.8s linear infinite;
  display:none;
}

.submit-btn.loading .spinner{
  display:inline-block;
}

.submit-btn.loading .submit-btn-text{
  opacity:0.6;
}

/* ABOUT MODAL */

.about-modal{
  position:fixed;
  inset:0;
  z-index:2200;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .32s ease, visibility .32s ease;
}

.about-modal.open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.about-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.74);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
}

.about-modal-dialog{
  position:relative;
  width:min(980px, 100%);
  max-height:min(88vh, 900px);
  overflow:auto;
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top right, rgba(255,122,0,0.14), transparent 30%),
    linear-gradient(180deg, rgba(22,22,26,0.98), rgba(10,10,12,0.98));
  box-shadow:0 35px 90px rgba(0,0,0,0.55);
}

.about-modal-content{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:40px;
  padding:44px;
}

.about-profile{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.about-photo-wrap{
  width:220px;
  height:220px;
  border-radius:50%;
  padding:8px;
  background:linear-gradient(135deg, rgba(255,143,31,0.95), rgba(255,106,0,0.9));
  box-shadow:0 18px 40px rgba(255,122,0,0.24);
}

.about-photo{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  background:#111;
  border:4px solid rgba(255,255,255,0.08);
}

.about-mini-badge{
  margin-top:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(255,122,0,0.22);
  background:rgba(255,122,0,0.08);
  color:#ffb066;
  font-size:13px;
  font-weight:600;
  line-height:1.4;
}

.about-copy{
  align-self:center;
}

.about-eyebrow{
  display:inline-block;
  margin-bottom:14px;
  color:#ff9a3d;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.9px;
  text-transform:uppercase;
}

.about-copy h2{
  margin:0 0 18px;
  font-size:42px;
  line-height:1.08;
  max-width:620px;
}

.about-copy p{
  margin:0 0 16px;
  color:#d6d8de;
  font-size:17px;
  line-height:1.8;
}

.about-highlight{
  color:#ff9a3d;
  font-weight:700;
}

.about-signature{
  margin-top:24px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex;
  flex-direction:column;
  gap:6px;
}

.about-signature strong{
  font-size:20px;
}

.about-signature span{
  color:#a9aeb8;
  font-size:14px;
}

.about-modal-close{
  position:absolute;
  top:18px;
  right:18px;
  width:48px;
  height:48px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  cursor:pointer;
  transition:all .25s ease;
  z-index:2;
}

.about-modal-close:hover{
  background:rgba(255,122,0,0.08);
  border-color:rgba(255,122,0,0.34);
}

.about-modal-close span{
  position:absolute;
  top:50%;
  left:50%;
  width:18px;
  height:2px;
  background:#fff;
  border-radius:10px;
}

.about-modal-close span:first-child{
  transform:translate(-50%, -50%) rotate(45deg);
}

.about-modal-close span:last-child{
  transform:translate(-50%, -50%) rotate(-45deg);
}

/* RESPONSIVE */

@media (max-width:1100px){
  .header-phone{
    display:none;
  }

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

  .footer-brand{
    grid-column:1 / -1;
  }
}

@media (max-width:980px){
  .hero h1{
    font-size:48px;
  }

  .hero-benefits{
    grid-template-columns:1fr;
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
  }

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

  .field-full{
    grid-column:auto;
  }

  .service-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .premium-timeline{
    grid-template-columns:1fr;
    gap:18px;
    max-width:720px;
  }

  .timeline-connector{
    display:none;
  }

  .timeline-step{
    min-height:auto;
  }

  .timeline-step p{
    max-width:none;
  }
}

@media (max-width:900px){
  .about-modal-content{
    grid-template-columns:1fr;
    gap:28px;
    padding:36px 24px 28px;
  }

  .about-copy{
    text-align:left;
  }

  .about-copy h2{
    font-size:34px;
    max-width:none;
  }
}

@media (max-width:768px){
  .site-header{
    background:rgba(7,7,10,0.9);
  }

  .nav{
    flex-wrap:wrap;
  }

  .brand-subtitle{
    display:none;
  }

  .menu-toggle{
    display:flex;
    margin-left:auto;
  }

  .nav-panel{
    width:100%;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:14px;
    margin-top:14px;
    padding:14px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.03);
    box-shadow:0 14px 30px rgba(0,0,0,0.28);
  }

  .nav-panel.open{
    display:flex;
  }

  .main-nav{
    flex-direction:column;
    align-items:stretch;
    background:transparent;
    border:none;
    padding:0;
    gap:8px;
  }

  .main-nav a{
    padding:13px 14px;
    background:rgba(255,255,255,0.03);
  }

  .header-contact{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .header-phone{
    display:block;
    text-align:center;
  }

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

  .hero{
    min-height:auto;
    padding:150px 20px 70px;
  }

  .hero h1{
    font-size:40px;
  }

  .hero-benefits{
    gap:22px;
    grid-template-columns:1fr;
    max-width:100%;
  }

  .benefit-column{
    padding:24px 22px;
  }

  .rate-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .rate-row span:last-child{
    text-align:left;
  }

  .timeline-step{
    padding:28px 22px 24px;
    border-radius:20px;
  }

  .timeline-top{
    margin-bottom:20px;
  }

  .step-number{
    width:58px;
    height:58px;
    font-size:20px;
  }

  .timeline-icon{
    width:52px;
    height:52px;
    font-size:24px;
    border-radius:14px;
  }

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

  .timeline-step p{
    font-size:15px;
    line-height:1.65;
  }

  .start-note{
    font-size:16px;
    margin-top:28px;
  }

  .application-card{
    padding:22px 16px;
    border-radius:22px;
  }

  .form-bottom{
    flex-direction:column;
    align-items:stretch;
  }

  .submit-btn{
    width:100%;
  }

  .footer-top{
    grid-template-columns:1fr;
    gap:30px;
  }

  .footer-brand{
    flex-direction:column;
    gap:16px;
  }

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

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

@media (max-width:640px){
  .about-modal{
    padding:12px;
  }

  .about-modal-dialog{
    max-height:92vh;
    border-radius:22px;
  }

  .about-photo-wrap{
    width:160px;
    height:160px;
  }

  .about-mini-badge{
    font-size:12px;
    padding:9px 14px;
  }

  .about-copy h2{
    font-size:28px;
  }

  .about-copy p{
    font-size:15px;
    line-height:1.72;
  }

  .about-modal-close{
    top:14px;
    right:14px;
    width:44px;
    height:44px;
  }
}

@media (max-width:480px){
  .container{
    padding:50px 16px;
  }

  .brand-mark{
    width:48px;
    height:48px;
  }

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

  .hero h1{
    font-size:34px;
  }

  .benefit-column h3{
    font-size:17px;
  }

  .benefit-column li{
    font-size:14px;
  }

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

  .services h2,
  .how h2,
  .apply h2{
    font-size:30px;
  }

  .timeline-step{
    padding:24px 18px 22px;
  }

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

  .timeline-icon{
    width:48px;
    height:48px;
    font-size:22px;
  }

  .timeline-step h3{
    font-size:22px;
  }

  .apply-intro p{
    font-size:15px;
  }

  .field-group label{
    font-size:14px;
  }

  .footer-brand h3{
    font-size:20px;
  }

  .footer-brand p,
  .footer-links a,
  .footer-contact-box a,
  .footer-contact-box span{
    font-size:14px;
  }
}