* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
  display: block;
}

.site-header {
  height: 54px;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo,
.footer-logo {
  color: #e30613;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -2px;
}
.nav {
  display: flex;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}
.header-actions button,
.small-btn,
.btn.red {
  background: #e30613;
  color: #fff;
  border: 0;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.menu-btn {
  display: none;
  font-size: 24px;
}

.hero {
  min-height: 520px;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 6%;
}
.quote-box {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  text-align: left;
}
.quote-box span {
  font-size: 13px;
  font-weight: 700;
}
.quote-box div {
  display: flex;
  margin-top: 5px;
}
.quote-box input {
  width: 100%;
  border: 0;
  padding: 12px;
}
.quote-box button {
  width: 40px;
  border: 0;
  background: #e30613;
  color: #fff;
  font-size: 24px;
}
.hero-content {
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(46px, 8vw, 76px);
  line-height: .95;
  font-weight: 900;
  margin-bottom: 22px;
}
.hero p {
  max-width: 680px;
  margin: auto;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}
.hero-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.btn {
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.btn.white {
  background: #fff;
  color: #000;
}
.award-box {
  position: absolute;
  right: 55px;
  top: 80px;
  width: 105px;
  border: 2px solid #f2c94c;
  padding: 10px;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
}
.award-box span,
.award-box small {
  display: block;
  margin-top: 8px;
  color: #f2c94c;
}
.control h2 {
  text-align: center;
  font-size: 36px;
  padding: 58px 20px;
}
.control-black {
  background: #000;
  color: #fff;
  padding: 60px 11%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 46px 80px;
}
.control-black h3 {
  font-size: 26px;
  line-height: 1.05;
}
.control-black p {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.section-padding {
  padding: 78px 11%;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 38px;
}
.section-head h2 {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 14px;
}
.section-head p {
  font-size: 15px;
  max-width: 760px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px;
  gap: 40px;
}
.stats div {
  border-top: 2px solid #000;
  padding-top: 12px;
}
.stats h3 {
  font-size: 36px;
}
.stats p {
  font-size: 13px;
  font-weight: 800;
}
.wide-image img {
  height: 520px;
  object-fit: cover;
}
.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.black-card {
  min-height: 220px;
  background: #000;
  color: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.black-card h3 {
  font-size: 40px;
}
.black-card p {
  font-size: 14px;
  font-weight: 800;
}
.image-cards.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.image-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #000;
}
.image-card img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  opacity: .75;
  transition: .4s ease;
}
.image-card:hover img {
  transform: scale(1.06);
  opacity: .55;
}
.image-card div {
  position: absolute;
  inset: 0;
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.image-card h3 {
  font-size: 36px;
}
.image-card h4 {
  font-size: 18px;
}
.image-card p {
  font-size: 14px;
  font-weight: 700;
}
.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.career-grid img {
  height: 260px;
  object-fit: cover;
  margin-bottom: 18px;
}
.career-grid h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.career-grid p {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 14px;
}
.career-grid a {
  font-size: 12px;
  font-weight: 900;
  color: #e30613;
}
.ready {
  text-align: center;
  padding: 80px 20px 95px;
}
.ready h2 {
  font-size: 42px;
  margin-bottom: 28px;
}
.footer {
  background: #f1f3f4;
  padding: 50px 11%;
}
.footer-grid {
  display: flex;
  gap: 100px;
  margin-bottom: 50px;
}
.footer-grid div {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
}
.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  font-size: 12px;
}
@media (max-width: 900px) {
  .nav,
  .header-actions a,
  .header-actions button {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .site-header {
    padding: 0 20px;
  }
  .award-box {
    display: none;
  }
  .control-black,
  .features,
  .stats,
  .cards.three,
  .image-cards.two,
  .career-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-padding,
  .control-black,
  .footer {
    padding-left: 6%;
    padding-right: 6%;
  }
  .wide-image img {
    height: 340px;
  }
  .footer-bottom,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}
.auth-left {
  padding: 42px 11%;
  display: flex;
  flex-direction: column;
}
.auth-logo {
  color: #e30613;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -2px;
}
.auth-content {
  max-width: 520px;
  margin: auto 0;
}
.auth-label {
  display: inline-block;
  color: #e30613;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.auth-content h1 {
  font-size: clamp(42px, 5vw, 62px);
  line-height: .95;
  margin-bottom: 18px;
  letter-spacing: -2px;
}
.auth-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}
.auth-form {
  margin-top: 34px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  height: 54px;
  border: 2px solid #e6e6e6;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
}
.form-group input:focus {
  border-color: #000;
}
.password-field {
  position: relative;
}
.password-field input {
  padding-right: 75px;
}
.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.form-row,
.check {
  display: flex;
  align-items: center;
  gap: 9px;
}
.form-row {
  justify-content: space-between;
  margin-bottom: 26px;
  font-size: 14px;
}
.form-row a,
.auth-switch a {
  color: #e30613;
  font-weight: 900;
}
.check {
  color: #333;
  font-size: 14px;
}
.check input {
  width: 16px;
  height: 16px;
  accent-color: #e30613;
}
.full-check {
  margin-bottom: 26px;
}
.auth-btn {
  width: 100%;
  height: 56px;
  border: 0;
  background: #e30613;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.auth-btn:hover {
  background: #000;
}
.auth-switch {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
}
.auth-right {
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.6)),
    url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 70px;
}
.register-bg {
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.6)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
}
.auth-card {
  max-width: 500px;
  color: #fff;
}
.auth-card h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: .95;
  margin-bottom: 18px;
}
.auth-card p {
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}
@media (max-width: 900px) {
  .auth-page {
    grid-template-columns: 1fr;
  }
  .auth-left {
    min-height: 100vh;
    padding: 32px 6%;
  }
  .auth-right {
    display: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.order-details-page {
  min-height: 100vh;
  background: #f4f5f6;
  padding: 80px 6%;
}
.order-container {
  max-width: 1100px;
  margin: auto;
}
.order-header {
  margin-bottom: 34px;
}
.order-header span,
.order-card span,
.order-status-card span {
  color: #e30613;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.order-header h1 {
  font-size: 52px;
  line-height: 1;
  margin: 12px 0;
}
.order-header p {
  color: #555;
}
.order-status-card {
  background: #000;
  color: #fff;
  padding: 34px;
  margin-bottom: 26px;
}
.order-status-card h2 {
  font-size: 34px;
  margin-top: 8px;
}
.order-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.order-card {
  background: #fff;
  padding: 28px;
  border-left: 5px solid #e30613;
}
.order-card h3 {
  font-size: 22px;
  margin-top: 10px;
  line-height: 1.35;
}
.timeline-box {
  background: #fff;
  padding: 34px;
  margin-top: 28px;
}
.timeline-box h2 {
  font-size: 32px;
  margin-bottom: 28px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 18px;
  position: relative;
  padding-bottom: 28px;
}
.timeline-item span {
  width: 18px;
  height: 18px;
  background: #ccc;
  border-radius: 50%;
  margin-top: 4px;
}
.timeline-item.active span {
  background: #e30613;
}
.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 24px;
  width: 2px;
  height: calc(100% - 18px);
  background: #ddd;
}
.timeline-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.timeline-item p {
  color: #555;
}
@media (max-width: 768px) {
  .order-grid {
    grid-template-columns: 1fr;
  }
  .order-header h1 {
    font-size: 38px;
  }
}

.admin-page {
  min-height: 100vh;
  background: #f4f5f6;
  padding: 70px 6%;
}
.admin-container {
  max-width: 1200px;
  margin: auto;
}
.admin-container.small {
  max-width: 760px;
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 20px;
}
.admin-header span {
  color: #e30613;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.admin-header h1 {
  font-size: 48px;
  line-height: 1;
  margin-top: 8px;
}
.admin-btn,
.admin-submit {
  border: 0;
  background: #e30613;
  color: #fff;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.admin-btn.dark {
  background: #000;
}
.admin-table-wrap {
  background: #fff;
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  background: #000;
  color: #fff;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  padding: 16px;
}
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.admin-table td a {
  color: #e30613;
  font-weight: 900;
  margin-right: 12px;
}
.admin-table td .delete-link {
  color: #000;
}
.admin-form {
  background: #fff;
  padding: 34px;
}
.admin-form .form-group {
  margin-bottom: 22px;
}
.admin-form label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 2px solid #e5e5e5;
  padding: 14px;
  font-size: 15px;
  outline: none;
}
.admin-form textarea {
  min-height: 110px;
  resize: vertical;
}
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: #000;
}
.admin-submit {
  width: 100%;
  margin-top: 10px;
}
.admin-error {
  background: #ffe9e9;
  color: #b00020;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.dashboard-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 270px 1fr;
  background: #f4f5f6;
}
.dashboard-sidebar {
  background: #000;
  color: #fff;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
}
.dashboard-logo {
  color: #e30613;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 50px;
}
.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dashboard-menu a {
  color: #fff;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.dashboard-menu a.active,
.dashboard-menu a:hover {
  background: #e30613;
}
.logout-btn {
  margin-top: auto;
  background: #fff;
  color: #000;
  padding: 14px 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.dashboard-main {
  padding: 60px 6%;
}
.dashboard-top {
  background: #fff;
  padding: 36px;
  margin-bottom: 28px;
  border-left: 6px solid #e30613;
}
.dashboard-top span {
  color: #e30613;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.dashboard-top h1 {
  font-size: 46px;
  line-height: 1;
  margin: 12px 0 10px;
}
.dashboard-top p {
  color: #555;
}
.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dashboard-card {
  background: #fff;
  padding: 32px;
  min-height: 230px;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .3s ease;
}
.dashboard-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.dashboard-card span {
  color: #e30613;
  font-size: 13px;
  font-weight: 900;
}
.dashboard-card h3 {
  font-size: 26px;
  line-height: 1;
}
.dashboard-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.45;
}
.dashboard-card.red-card {
  background: #e30613;
  color: #fff;
}
.dashboard-card.red-card span,
.dashboard-card.red-card p {
  color: #fff;
}
@media (max-width: 900px) {
  .dashboard-page {
    grid-template-columns: 1fr;
  }
  .dashboard-sidebar {
    min-height: auto;
  }
  .dashboard-cards {
    grid-template-columns: 1fr;
  }
  .dashboard-top h1 {
    font-size: 34px;
  }
}

