/* =========================================================
   Ecom Trendify 3PL — Premium Industrial Static Website
   ========================================================= */

:root {
  --black: #06090d;
  --charcoal: #0b1118;
  --navy: #0f1823;
  --navy-2: #152333;
  --steel: #1f2b38;
  --orange: #F48720;
  --orange-2: #ff9e3d;
  --white: #ffffff;
  --soft: #f5f7fa;
  --muted: #a9b3bf;
  --muted-2: #687789;
  --border: rgba(255, 255, 255, .12);
  --border-dark: rgba(10, 20, 32, .12);
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --shadow-soft: 0 14px 38px rgba(8, 17, 29, .12);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #fff;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea,
select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

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

a {
  text-decoration: none;
  color: inherit
}

button,
input,
select,
textarea {
  font: inherit
}

button {
  cursor: pointer
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: auto
}

/* Top bar */
.top-strip {
  background: #020407;
  color: rgba(255, 255, 255, .88);
  font-size: .86rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0
}

.strip-left,
.strip-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px
}

.top-strip i {
  color: var(--orange)
}

.top-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header.is-scrolled {
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28)
}

.navbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .01em
}

.logo img {
  width: 231px;
  height: 90px;
  object-fit: contain;
}

.logo-text {
  display: none
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav-menu a,
.nav-menu button {
  color: #414141;
  background: transparent;
  border: 0;
  padding: 13px 14px;
  border-radius: 0;
  font-weight: 700;
  font-size: .96rem;
  position: relative;
}

.nav-menu a::after,
.nav-menu button::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s ease;
}

.nav-menu a:hover::after,
.nav-menu button:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1)
}

.nav-menu a:hover,
.nav-menu button:hover,
.nav-menu a.active {
  color: #F48720;
}

.dropdown {
  position: relative
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 12px;
  background: #0c131d;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
}

.dropdown:hover .dropdown-panel,
.dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown-panel a {
  display: block;
  border-radius: 10px;
  padding: 11px 12px;
  color: #fff;
}

.dropdown-panel a::after {
  display: none
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: #000;
  font-size: 1.1rem
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 11px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: .25s ease;
  white-space: nowrap
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-primary {
    background: #F48720;
    color: #111;
    box-shadow: 0 16px 36px rgba(255,122,0,.25);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(255, 122, 0, .35)
}

.btn-outline {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .25);
  color: #fff
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1)
}

.btn-dark {
  background: #0b1118;
  color: #fff
}

.btn-dark:hover {
  background: #172231
}

.btn-light {
  background: #fff;
  color: #111;
  border-color: #e5e7eb
}

.btn-light:hover {
  background: #f3f4f6
}

/* Hero */
.hero {
  min-height: 720px;
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, #06090d 0%, #0c131d 48%, #131f2b 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, .20), transparent 70%);
  filter: blur(12px)
}

.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .06), transparent 68%)
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 0 76px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 42px;
  align-items: start
}

.hero-content {
  max-width: 640px;
  padding-left: 56px;
  margin-top: -28px
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  margin-bottom: 16px
}

.hero h1,
.page-hero h1 {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2.1rem, 4.15vw, 3.95rem);
  line-height: .95;
  letter-spacing: -.055em;
  margin: 0 0 18px;
}

.hero h1 span {
  display: block;
  white-space: nowrap
}

.hero-line {
  display: block;
  white-space: nowrap
}

.hero p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
  max-width: 560px;
  margin: 0 0 24px
}

.orange-line {
  width: 64px;
  height: 4px;
  background: var(--orange);
  margin: 18px 0
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0
}

.support-line {
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
  margin-top: 8px
}

.hero-media {
  position: relative;
  margin-top: -28px
}

.hero-main-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 520px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .14)
}

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

.hero-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, .42) 100%)
}

.hero-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(6, 9, 13, .76);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .12)
}

.hero-label strong {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px
}

.hero-label span {
  display: block;
  color: rgba(255, 255, 255, .74);
  font-size: .95rem
}

.hero-mini-card {
  position: absolute;
  right: -16px;
  top: 28px;
  background: #fff;
  color: #111827;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px
}

.hero-mini-card i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 0, .12);
  color: var(--orange);
  font-size: 1.15rem
}

.hero-mini-card strong {
  display: block;
  font-size: .95rem;
  line-height: 1.2
}

.hero-mini-card span {
  display: block;
  color: var(--muted-2);
  font-size: .84rem;
  margin-top: 2px
}

.hero-mini-card.secondary {
  right: -16px;
  left: auto;
  top: 132px;
  bottom: auto;
  max-width: 250px
}

/* Trust strip */
.trust-grid {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(9, 15, 23, .94);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(14px)
}

.trust-item {
    padding: 23px 28px;
    display: flex;
    gap: 15px;
    align-items: center;
    border-right: 1px solid #F8810B;
}

.trust-item:last-child {
  border-right: 0
}

.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 1.55rem
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: 1rem
}

.trust-item span {
  display: block;
  color: rgba(255, 255, 255, .68);
  font-size: .88rem
}

/* Sections */
.section {
  padding: 82px 0
}

.section.dark {
  background: var(--charcoal);
  color: #fff
}

.section.soft {
  background: #f5f7fa
}

.section-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center
}

.section-head.left {
  text-align: left;
  margin-left: 0
}

.section-head .small-title {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
  font-size: .82rem
}

.section-head h2 {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.85rem, 2.7vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 8px 0 12px
}

.section-head p {
  margin: 0;
  color: var(--muted-2);
  font-size: 1.05rem
}

.section.dark .section-head p,
.section.dark .card p,
.section.dark .feature p,
.section.dark .faq-answer {
  color: rgba(255, 255, 255, .68)
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

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

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.dark .card {
  background: #101923;
  border-color: rgba(255, 255, 255, .13);
  box-shadow: none
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow)
}

.dark .card:hover {
  border-color: rgba(255, 122, 0, .45)
}

.card-icon {
  height: 70px;
  width: 70px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 0, .12);
  color: var(--orange);
  font-size: 2rem
}

.service-card {
  text-align: center
}

.service-card .card-icon {
  margin-left: auto;
  margin-right: auto;
  font-size: 2.4rem
}

.card h3 {
  font-family: Manrope, Inter, sans-serif;
  margin: 0 0 8px;
  font-size: 1.22rem;
  line-height: 1.2
}

.card p {
  margin: 0;
  color: var(--muted-2)
}

.card .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 900
}

/* Split visual */
.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 420px;
  box-shadow: var(--shadow)
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease
}

.visual-card:hover img {
  transform: scale(1.045)
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .45), transparent)
}

.image-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(6, 9, 13, .78);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  color: #fff;
  z-index: 1
}

.image-caption strong {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  margin-bottom: 3px
}

.image-caption span {
  color: rgba(255, 255, 255, .72)
}

.text-block h2 {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 0 0 12px
}

.text-block p {
  color: var(--muted-2);
  font-size: 1.05rem
}

.dark .text-block p {
  color: rgba(255, 255, 255, .72)
}

.inline-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.feature i {
  color: var(--orange);
  font-size: 1.38rem;
  margin-top: 4px
}

.feature strong {
  display: block;
  line-height: 1.2
}

.feature p {
  font-size: .9rem;
  margin: 3px 0 0
}

/* Why strip */
.reason-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.reason {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, .12)
}

.reason:last-child {
  border-right: 0
}

.reason i {
  color: var(--orange);
  font-size: 2rem
}

.reason strong {
  display: block;
  color: #fff;
  margin-bottom: 4px
}

.reason span {
  color: rgba(255, 255, 255, .68);
  font-size: .92rem
}

/* Platform tiles */
.platforms {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px
}

.platform {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  min-height: 100px;
  display: grid;
  place-items: center;
  color: #111827;
  font-weight: 900;
  font-size: 1.6rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16)
}

.platform-logo {
  padding: 14px 18px
}

.platform-logo img {
  display: block;
  width: auto;
  max-width: 88%;
  max-height: 58px;
  object-fit: contain
}

.platform-logo.walmart-logo img {
  max-height: 70px
}

.platform-logo.ebay-logo img {
  max-height: 54px
}

.platform-logo.tiktok-logo img {
  max-height: 46px
}

.platform-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827
}

.platform-brand i {
  font-size: 2rem
}

.platform-brand.shopify i {
  color: #95bf47
}

.platform-brand.shopify span {
  font-size: 1.35rem
}

.seller-models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.seller-model-card {
  padding: 24px;
  background: #101820;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04)
}

.seller-model-card i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 0, .12);
  color: var(--orange);
  font-size: 1.15rem;
  flex-shrink: 0
}

.seller-model-card strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px
}

.seller-model-card p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: .94rem;
  line-height: 1.5
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.included-card {
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, .08);
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.included-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 0, .12);
  color: var(--orange);
  font-size: 1.15rem
}

.included-content h3 {
  margin: 0 0 6px;
  font-size: 1.04rem;
  line-height: 1.25
}

.included-content p {
  margin: 0;
  color: var(--muted-2);
  font-size: .95rem;
  line-height: 1.55
}

.section.dark .included-card {
  background: #101820;
  border-color: rgba(255, 255, 255, .08)
}

.section.dark .included-content p {
  color: rgba(255, 255, 255, .68)
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.step {
  background: #fff;
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-soft)
}

.step-num {
  height: 50px;
  width: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 122, 0, .14);
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 16px
}

.step h3 {
  font-family: Manrope, Inter, sans-serif;
  margin: 0 0 7px
}

.step p {
  color: var(--muted-2);
  margin: 0
}

/* FAQ */
.faq-wrap {
  max-width: 1100px;
  margin: auto
}

.faq-item {
  background: #101820;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 8px
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800
}

.faq-question i {
  transition: .25s ease;
  color: #fff
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: rgba(255, 255, 255, .68);
  transition: max-height .35s ease, padding .35s ease
}

.faq-item.active .faq-answer {
  padding: 0 22px 18px;
  max-height: 240px
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: var(--orange)
}


.faq-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 34px;
}

.faq-mini-card {
  background: #101820;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.faq-mini-card i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 0, .12);
  color: var(--orange);
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.faq-mini-card strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-size: 1rem;
}

.faq-mini-card span {
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
  line-height: 1.5;
}

.faq-category {
  margin-top: 34px;
}

.faq-category:first-of-type {
  margin-top: 0;
}

.faq-category h3 {
  font-family: Manrope, Inter, sans-serif;
  color: #fff;
  font-size: 1.38rem;
  line-height: 1.1;
  margin: 0 0 8px;
}

.faq-category>p {
  color: rgba(255, 255, 255, .68);
  margin: 0 0 16px;
}

/* CTA */
.cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(0deg, #1a0b02, #F48720 1%, #111820);
    color: #fff;
    border-top: 1px solid rgba(255, 122, 0, .5);
    border-bottom: 1px solid rgba(255, 122, 0, .5);
}

.cta-band .container {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 34px;
  align-items: center;
  padding: 42px 0
}

.cta-img {
  height: 180px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow)
}

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

.cta-content h2 {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
  margin: 0 0 8px
}

.cta-content p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .85)
}

/* Page hero */
.page-hero {
  background: linear-gradient(90deg, rgba(6, 9, 13, .94), rgba(12, 18, 26, .82)), url("../images/hero-warehouse.jpg") center/cover no-repeat;
  color: #fff;
  padding: 62px 0 72px
}

.page-hero p {
  color: rgba(255, 255, 255, .76);
  font-size: 1.1rem;
  max-width: 700px
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px
}

.info-card,
.form-card {
  background: #fff;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-soft);
  padding: 30px;
  border-radius: 16px
}

.info-line {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.info-line:last-child {
  border-bottom: 0
}

.info-line i {
  color: var(--orange);
  font-size: 1.3rem;
  margin-top: 4px
}

.info-line strong {
  display: block
}

.info-line span {
  color: var(--muted-2)
}

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

.field {
  margin-bottom: 15px
}

.field label {
  display: block;
  font-weight: 800;
  margin-bottom: 8px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  color: #111827;
  outline: none;
  transition: .2s ease
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, .15)
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: #e11d48
}

.error-text {
  display: none;
  color: #e11d48;
  font-size: .85rem;
  margin-top: 5px
}

.field.error .error-text {
  display: block
}

.success-message {
  display: none;
  background: #ecfdf5;
  color: #065f46;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-weight: 700
}

.success-message.show {
  display: block
}

/* Footer */
.footer {
  background: #071018;
  color: #fff;
  padding: 62px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 28px
}

.footer-logo img {
    width: 212px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer p,
.footer a,
.footer-bottom {
  color: rgba(255, 255, 255, .67)
}

.footer h3 {
  font-family: Manrope, Inter, sans-serif;
  margin: 0 0 14px
}

.footer-links {
  display: grid;
  gap: 9px
}

.footer-links a:hover {
  color: #fff
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px
}

.socials a {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .9rem
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  height: 62px;
  width: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 16px 36px rgba(37, 211, 102, .36);
  animation: pulse 2.4s infinite
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .45), 0 16px 36px rgba(37, 211, 102, .36)
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 16px 36px rgba(37, 211, 102, .36)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 16px 36px rgba(37, 211, 102, .36)
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease
}

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

.fade-up {
  animation: fadeUp .8s ease both
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

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

/* Responsive */
@media (max-width:1080px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr)
  }

  .grid-4,
  .trust-panel,
  .timeline,
  .reason-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust-item:nth-child(2) {
    border-right: 0
  }

  .grid-2,
  .contact-grid,
  .hero-inner {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cta-band .container {
    grid-template-columns: 1fr
  }
}

@media (max-width:920px) {
  .hero-content {
    padding-left: 28px;
    margin-top: -16px
  }

  .hero-media {
    margin-top: -16px
  }

  .nav-menu {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #0b1118;
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 14px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .25s ease
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
  }

.nav-menu a, .nav-menu button {
    text-align: left;
    padding: 14px 15px;
    color: #fff;
}

  .dropdown-panel {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #111a25;
    margin-top: 4px
  }

  .dropdown.open .dropdown-panel {
    display: block
  }

  .menu-toggle {
    display: grid;
    place-items: center
  }

  .nav-actions .desktop-cta {
    display: none
  }
}

@media (max-width:720px) {
  .hero-content {
    padding-left: 16px;
    margin-top: 17px !important;
  }

  .hero-media {
    margin-top: -10px
  }

  .top-strip .container {
    justify-content: center
  }

  .strip-left {
    justify-content: center
  }

  .strip-right {
    display: none
  }

.logo img {
    width: 226px !important;
    height: 60px;
}

  .hero {
    min-height: 640px
  }

  .hero h1 {
    font-size: 3rem
  }

  .hero-buttons {
    flex-direction: column
  }

  .btn {
    width: 100%
  }

  .section {
    padding: 62px 0
  }

  .grid-5,
  .grid-4,
  .grid-3,
  .trust-panel,
  .timeline,
  .reason-row,
  .platforms,
  .form-row,
  .included-grid,
  .seller-models,
  .faq-overview {
    grid-template-columns: 1fr
  }

  .trust-grid {
    margin-top: 0
  }

  .trust-panel {
    border-radius: 0
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
  }

  .reason {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
  }

  .inline-features {
    grid-template-columns: 1fr
  }

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

  .footer-bottom {
    flex-direction: column
  }
}

@media (max-width:920px) {
  .hero-content {
    padding-left: 28px;
    margin-top: -16px
  }

  .hero-media {
    margin-top: -16px
  }

  .hero-mini-card {
    right: 14px;
    top: 14px
  }

  .hero-mini-card.secondary {
    right: 14px;
    left: auto;
    top: 108px;
    bottom: auto
  }
}

@media (max-width:720px) {
  .hero-content {
    padding-left: 16px;
    margin-top: -10px
  }

  .hero-media {
    margin-top: -10px
  }

  .hero-main-image {
    min-height: 320px
  }

  .hero-mini-card,
  .hero-mini-card.secondary {
    position: static;
    max-width: none;
    margin-top: 14px
  }
}


section#custom-box {
    background: #0b1118;
}