/* =========================
   SECTION
========================= */
.hero-main {
  padding: 100px 60px;
  background: radial-gradient(circle at 20% 10%, #0b1f3a, #071326 70%);
  font-family: Inter, system-ui;
}

/* =========================
   LAYOUT
========================= */
.hero-wrap {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =========================
   LEFT
========================= */
.hero-left {
  max-width: 600px;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1px;

  color: #6aa3ff;
  background: rgba(80,140,255,0.12);
  border: 1px solid rgba(80,140,255,0.25);

  margin-bottom: 20px;
}

/* HEADING */
.hero-left h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

/* BLUE TEXT */
.hero-left h1 span {
  color: #4f7cff;
}

/* PARAGRAPH */
.hero-left p {
  color: #8fa2c4;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

/* =========================
   BUTTONS
========================= */
.hero-actions {
  display: flex;
  gap: 16px;
}

/* PRIMARY */
.hero-btn.primary {
  background: linear-gradient(90deg, #ff7a2f, #ff5a00);
  color: #fff;
  padding: 16px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;

  box-shadow: 0 12px 30px rgba(255,122,47,0.35);
  transition: all 0.3s ease;
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255,122,47,0.5);
}

/* SECONDARY */
.hero-btn.secondary {
  padding: 16px 26px;
  border-radius: 12px;
  text-decoration: none;

  color: #c7d2e6;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);

  transition: all 0.3s ease;
}

.hero-btn.secondary:hover {
  background: rgba(255,255,255,0.08);
}

/* =========================
   IMAGE
========================= */
.hero-right {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  transform-style: preserve-3d;
}

/* fixed container */
.hero-img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* image control */
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* glow edge */
.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 80% 20%, rgba(80,140,255,0.15), transparent 60%);
  pointer-events: none;
}

/* =========================
   HOVER (SUBTLE)
========================= */
.hero-right:hover .hero-img img {
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    margin: auto;
  }

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

  .hero-right {
    margin: auto;
  }
}

@media (max-width: 768px) {
  .hero-main {
    padding: 70px 20px;
  }

  .hero-img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-img {
    height: 240px;
  }
}

/* =========================
   SECTION
========================= */
.velocity {
  padding: 100px 60px;
  background: #f4f5f7;
  font-family: Inter, system-ui;
}

.velocity-container {
  max-width: 1300px;
  margin: auto;
}

/* =========================
   HEADER
========================= */
.velocity-header {
  text-align: center;
  margin-bottom: 60px;
}

.velocity-header h2 {
  font-size: 40px;
  color: #0b1b34;
  margin-bottom: 12px;
}

.velocity-header p {
  color: #6b7a90;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

/* =========================
   GRID
========================= */
.velocity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =========================
   CARD
========================= */
.v-card {
  background: #1e3556;
  padding: 24px;
  border-radius: 18px;
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%; /* ensures equal height */

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* hover glow */
.v-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(80,140,255,0.15), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

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

/* hover lift */
.v-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* =========================
   ICON
========================= */
.v-icon {
  font-size: 26px;
  color: #6aa3ff;
  margin-bottom: 14px;
}

/* =========================
   TEXT
========================= */
.v-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.v-card p {
  font-size: 14px;
  color: #b7c6db;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* =========================
   IMAGE (STRICT CONTROL)
========================= */
.v-img {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
}

.v-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .velocity-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .velocity {
    padding: 70px 20px;
  }

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

/* =========================
   SECTION
========================= */
.efficiency {
  padding: 100px 60px;
  background: radial-gradient(circle at 20% 10%, #0b1f3a, #071326 70%);
  font-family: Inter, system-ui;
}

/* =========================
   LAYOUT
========================= */
.eff-wrap {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =========================
   LEFT
========================= */
.eff-left h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 40px;
}

/* LIST */
.eff-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ITEM */
.eff-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

/* NUMBER BOX */
.eff-num {
  min-width: 38px;
  height: 38px;
  border-radius: 10px;

  background: rgba(80,140,255,0.15);
  color: #6aa3ff;

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

  font-weight: 600;
}

/* TEXT */
.eff-item h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 6px;
}

.eff-item p {
  color: #9fb0c7;
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
}

/* =========================
   IMAGE
========================= */
.eff-right {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  transform-style: preserve-3d;
}

.eff-img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
}

/* strict control */
.eff-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* subtle glow */
.eff-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(80,255,200,0.15), transparent 60%);
  pointer-events: none;
}

/* =========================
   HOVER
========================= */
.eff-right:hover img {
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .eff-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .eff-left {
    margin: auto;
  }

  .eff-item {
    text-align: left;
  }

  .eff-right {
    margin: auto;
  }
}

@media (max-width: 768px) {
  .efficiency {
    padding: 70px 20px;
  }

  .eff-left h2 {
    font-size: 30px;
  }

  .eff-img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .eff-img {
    height: 240px;
  }
}


/* =========================
   SECTION
========================= */
.pricing {
  padding: 100px 20px;
  background: #f4f5f7;
  font-family: Inter, system-ui;
  text-align: center;
}

.pricing-container {
  max-width: 900px;
  margin: auto;
}

/* =========================
   HEADER
========================= */
.pricing-header h2 {
  font-size: 40px;
  color: #0b1b34;
  margin-bottom: 10px;
}

.pricing-header p {
  color: #6b7a90;
  margin-bottom: 50px;
}

/* =========================
   CARD
========================= */
.pricing-card {
  position: relative;
  background: #2c4568;
  color: #fff;

  padding: 60px 40px;
  border-radius: 24px;

  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

/* =========================
   BADGE
========================= */
.badge {
  position: absolute;
  top: 20px;
  right: -40px;

  transform: rotate(45deg);

  background: #4f7cff;
  color: #fff;
  font-size: 12px;
  padding: 6px 50px;
  font-weight: 600;
}

/* =========================
   TEXT
========================= */
.pricing-card h3 {
  font-size: 24px;
  color: #6aa3ff;
  margin-bottom: 10px;
}

.sub {
  color: #a9b6cc;
  margin-bottom: 30px;
}

/* =========================
   PRICE
========================= */
.price span {
  color: #a9b6cc;
  font-size: 14px;
}

.price h1 {
  font-size: 42px;
  margin-top: 8px;
}

.price h1 small {
  font-size: 18px;
  color: #a9b6cc;
}

/* =========================
   FEATURES
========================= */
.features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.features li {
  margin-bottom: 12px;
  color: #cbd6e6;
  position: relative;
  padding-left: 22px;
}

/* check */
.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6aa3ff;
}

/* =========================
   BUTTON
========================= */
.pricing-btn {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 30px auto 0;

  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;

  background: linear-gradient(90deg, #5b8dff, #4f7cff);
  color: #fff;

  transition: all 0.3s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(79,124,255,0.4);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .pricing-card {
    padding: 40px 20px;
  }

  .price h1 {
    font-size: 32px;
  }

  .badge {
    right: -30px;
  }
}

.pricing-card {
  position: relative;
  overflow: hidden; /* important */
}

.badge {
  position: absolute;
  top: 26px;
  right: -48px;

  width: 180px;
  text-align: center;

  transform: rotate(45deg);
  transform-origin: center;

  background: #4f7cff;
  color: #0b1b34;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 0;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.features {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  width: fit-content;
  text-align: left;
}

.features li {
  display: flex;
  align-items: center;
  gap: 12px;              /* controls space between tick and text */
  margin-bottom: 14px;
  color: #cbd6e6;
  padding-left: 0;        /* remove old left padding */
  position: static;       /* reset old positioning */
}

.features li::before {
  content: "✓";
  position: static;       /* stop absolute positioning */
  color: #6aa3ff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  flex: 0 0 auto;
}

/* =========================
   SECTION
========================= */
.contact-section {
  padding: 100px 60px;
  background: radial-gradient(circle at 20% 10%, #0b1f3a, #071326 70%);
  font-family: Inter, system-ui;
}

/* =========================
   LAYOUT
========================= */
.contact-wrap {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =========================
   LEFT SIDE
========================= */
.contact-left h2 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-left p {
  color: #9fb0c7;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

/* INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #cbd6e6;
  font-size: 15px;
}

/* ICON STYLE */
.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;

  background: rgba(80,140,255,0.15);
  color: #6aa3ff;

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

  font-size: 18px;
}

/* =========================
   FORM CARD
========================= */
.contact-card {
  padding: 40px;
  border-radius: 24px;

  background: linear-gradient(145deg, #0f2a4a, #0b1f3a);
  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 0 40px rgba(80,140,255,0.08);
}

/* =========================
   FORM
========================= */
form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ROW */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* INPUT GROUP */
.input-group {
  display: flex;
  flex-direction: column;
}

.input-group label {
  color: #9fb0c7;
  font-size: 13px;
  margin-bottom: 8px;
}

/* INPUT */
.input-group input,
.input-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  padding: 14px 16px;
  border-radius: 10px;

  color: #ffffff;
  font-size: 14px;

  outline: none;
  transition: all 0.25s ease;
}

/* TEXTAREA */
textarea {
  min-height: 130px;
  resize: none;
}

/* FOCUS EFFECT */
.input-group input:focus,
.input-group textarea:focus {
  border-color: #4f7cff;
  box-shadow: 0 0 0 2px rgba(79,124,255,0.15);
}

/* =========================
   BUTTON
========================= */
.submit-btn {
  margin-top: 10px;

  background: linear-gradient(90deg, #ff7a2f, #ff5a00);
  color: #fff;

  padding: 16px;
  border: none;
  border-radius: 12px;

  font-weight: 600;
  font-size: 15px;
  cursor: pointer;

  box-shadow: 0 15px 40px rgba(255,122,47,0.35);
  transition: all 0.3s ease;
}

/* HOVER */
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(255,122,47,0.5);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-left {
    margin: auto;
  }

  .contact-info {
    align-items: center;
  }

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

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 20px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-left h2 {
    font-size: 34px;
  }
}

/* =================================
   STARTUP PAGE BUTTON EFFECTS
   solid -> transparent border
   glass -> left to right fill
   ================================= */

.hero-btn.primary,
.hero-btn.secondary,
.pricing-btn,
.submit-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    color .35s ease,
    border-color .35s ease,
    background-color .35s ease,
    background .35s ease,
    transform .28s ease,
    box-shadow .35s ease;
}

/* sliding fill */
.hero-btn.primary::before,
.hero-btn.secondary::before,
.pricing-btn::before,
.submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-102%);
  transition: transform .52s cubic-bezier(.22,1,.36,1);
  background: var(--hover-fill, transparent);
}

/* gloss sweep */
.hero-btn.primary::after,
.hero-btn.secondary::after,
.pricing-btn::after,
.submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 52%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.08) 35%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,.08) 65%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left .65s cubic-bezier(.22,1,.36,1);
}

/* text above effects */
.hero-btn.primary,
.hero-btn.secondary,
.pricing-btn,
.submit-btn {
  z-index: 1;
}

/* hover motion */
.hero-btn.primary:hover,
.hero-btn.secondary:hover,
.pricing-btn:hover,
.submit-btn:hover {
  transform: translateY(-3px);
}

.hero-btn.primary:hover::before,
.hero-btn.secondary:hover::before,
.pricing-btn:hover::before,
.submit-btn:hover::before {
  transform: translateX(0);
}

.hero-btn.primary:hover::after,
.hero-btn.secondary:hover::after,
.pricing-btn:hover::after,
.submit-btn:hover::after {
  left: 140%;
}

/* =================================
   ORANGE SOLID -> TRANSPARENT ORANGE
   ================================= */

.hero-btn.primary,
.pricing-btn,
.submit-btn {
  --hover-fill: transparent;
  border: 2px solid #ff7a2f;
}

.hero-btn.primary:hover,
.pricing-btn:hover,
.submit-btn:hover {
  background: transparent !important;
  color: #ff7a2f !important;
  border-color: #ff7a2f !important;
}

/* pricing button keeps same orange family */
.pricing-btn {
  box-shadow: 0 15px 40px rgba(255,122,47,0.35);
}

.pricing-btn:hover {
  box-shadow:
    0 0 0 1px rgba(255,122,47,.14),
    0 18px 38px rgba(255,122,47,.18) !important;
}

.submit-btn:hover {
  box-shadow:
    0 0 0 1px rgba(255,122,47,.14),
    0 18px 38px rgba(255,122,47,.18) !important;
}

/* =================================
   GLASS / DARK -> LIGHT SLIDE IN
   ================================= */

.hero-btn.secondary {
  --hover-fill: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.18);
}

.hero-btn.secondary:hover {
  background: rgba(255,255,255,.04) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.30) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 12px 26px rgba(0,0,0,.16) !important;
}

/* =================================
   make submit button thicker too
   ================================= */
.submit-btn {
  border: 2px solid #ff7a2f !important;
}

/* focus */
.hero-btn.primary:focus-visible,
.hero-btn.secondary:focus-visible,
.pricing-btn:focus-visible,
.submit-btn:focus-visible {
  outline: 2px solid rgba(90,150,255,.7);
  outline-offset: 3px;
}

/* velocity cards */
.v-card {
  transition: all 0.35s ease;
}

.v-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* efficiency items */
.eff-item {
  transition: 0.3s ease;
}

.eff-item:hover {
  transform: translateX(8px);
}

/* pricing */
.pricing-card {
  transition: 0.4s ease;
}

.pricing-card:hover {
  transform: scale(1.03);
}

/* buttons */
.hero-btn:hover {
  transform: translateY(-2px);
}

/* ANIMATION  */

