/* =============================================
   GARETT TRACTOR — Dealer Site Stylesheet
   ============================================= */

:root {
  /* Palette from the approved mockup */
  --bg:          #14202b;   /* page background            */
  --surface:     #1B2A38;   /* cards, panels              */
  --surface-2:   #18262f;   /* subtle bands, chips, inputs*/
  --head:        #FFFFFF;   /* headlines                  */
  --body:        #A8B8C4;   /* body copy                  */
  --muted:       #8397A6;   /* secondary copy             */
  --border:      #3A5068;   /* hairlines                  */

  --primary:     #F5A623;   /* accent / CTA               */
  --primary-dk:  #DC9214;
  --primary-rgb: 245,166,35;
  --accent:      #F5A623;
  --accent-soft: rgba(245,166,35,.14);

  /* Legacy aliases kept so untouched rules stay coherent */
  --dark:        #14202b;
  --dark-2:      #1B2A38;
  --mid:         #3A5068;
  --light-bg:    #18262f;
  --tint:        rgba(245,166,35,.14);
  --text:        #A8B8C4;
  --white:       #FFFFFF;
  --green:       #37B26B;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.35);
  --shadow-md:  0 10px 30px -8px rgba(0,0,0,.5), 0 2px 6px rgba(0,0,0,.3);
  --shadow-lg:  0 28px 60px -18px rgba(0,0,0,.62), 0 6px 16px rgba(0,0,0,.35);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-pill: 999px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --ease-out:   cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--body); background: var(--bg); line-height: 1.65; font-size: 16px; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { letter-spacing: -.022em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }
input, select, textarea { font-family: inherit; }

/* ---- Utilities ---- */
.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 104px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }

/* ---- Modal ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s; padding: 20px; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box { background: var(--surface); border-radius: var(--radius); padding: 32px; max-width: 500px; width: 100%; max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-lg); transform: scale(.95); transition: transform .25s; }
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.modal-header h3 { font-size: 19px; font-weight: 800; color: var(--head); line-height: 1.25; }
.modal-close { background: var(--surface-2); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background var(--transition); color: var(--body); }
.modal-close:hover { background: var(--border); }
.modal-item-info { background: var(--surface-2); border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 20px; display: flex; gap: 12px; align-items: center; border-left: 4px solid var(--primary); }
.modal-item-emoji { font-size: 30px; }
.modal-item-name { font-size: 14px; font-weight: 700; color: var(--head); }
.modal-item-price { font-size: 15px; color: var(--primary); font-weight: 800; margin-top: 2px; }
.modal-form .form-field { margin-bottom: 13px; }
.modal-form .form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--head); margin-bottom: 5px; }
.modal-form .form-field input, .modal-form .form-field select, .modal-form .form-field textarea { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; color: var(--body); outline: none; transition: border-color var(--transition); background: var(--surface); }
.modal-form .form-field input:focus, .modal-form .form-field select:focus, .modal-form .form-field textarea:focus { border-color: var(--primary); }
.modal-form .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-disclaimer { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.55; }
.modal-success { text-align: center; padding: 20px 10px; }
.modal-success .success-icon { font-size: 52px; margin-bottom: 14px; }
.modal-success h3 { font-size: 20px; font-weight: 800; color: var(--head); margin-bottom: 8px; }
.modal-success p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---- Badges ---- */
.badge { display: inline-block; padding: 5px 12px; border-radius: var(--radius-pill); font-size: 11.5px; font-weight: 700; letter-spacing: .3px; backdrop-filter: blur(6px); box-shadow: 0 2px 8px rgba(16,27,36,.14); }
.badge-new    { background: rgba(55,178,107,.20); color: #6FE0A5; border: 1px solid rgba(55,178,107,.4); }
.badge-hot    { background: rgba(245,166,35,.20); color: #F5A623; border: 1px solid rgba(245,166,35,.45); }
.badge-sold   { background: rgba(131,151,166,.18); color: #A8B8C4; border: 1px solid rgba(131,151,166,.35); }
.badge-sale   { background: rgba(224,90,74,.20); color: #FF9182; border: 1px solid rgba(224,90,74,.4); }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 26px; border-radius: var(--radius-pill); font-weight: 600; font-size: 14.5px; letter-spacing: -.01em; border: 1.5px solid transparent; transition: all var(--transition); white-space: nowrap; cursor: pointer; }
.btn-primary  { background: var(--primary); color: #14202b; font-weight: 700; border-color: var(--primary); box-shadow: 0 6px 20px -6px rgba(var(--primary-rgb),.55); }
.btn-primary:hover  { background: var(--primary-dk); border-color: var(--primary-dk); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(var(--primary-rgb),.65); }
.btn-outline  { background: transparent; color: var(--primary); border-color: rgba(var(--primary-rgb),.4); }
.btn-outline:hover  { background: var(--primary); color: #14202b; border-color: var(--primary); transform: translateY(-2px); }
.btn-dark     { background: var(--dark); color: var(--white); border-color: var(--head); }
.btn-dark:hover     { background: var(--dark-2); transform: translateY(-2px); }
.btn-white    { background: transparent; color: var(--head); border-color: var(--border); }
.btn-white:hover    { background: rgba(255,255,255,.06); border-color: var(--primary); transform: translateY(-2px); }
.btn-ghost    { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.btn-ghost:hover    { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.btn-green    { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover    { background: #219A52; transform: translateY(-2px); }
.btn-sm  { padding: 9px 18px; font-size: 13.5px; }
.btn-lg  { padding: 15px 34px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Section headings ---- */
.section-label { display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-weight: 700; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 14px; padding: 5px 13px 5px 11px; background: var(--accent-soft); border-radius: var(--radius-pill); }
.section-label::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.section-title { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; color: var(--head); line-height: 1.12; letter-spacing: -.03em; margin-bottom: 14px; }
.section-title span { color: var(--primary); }
.section-sub { color: var(--muted); font-size: 16.5px; line-height: 1.7; max-width: 560px; }
.section-sub.center { margin: 0 auto; }
.rule { display: none; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: #101A23;
  padding: 9px 0;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { display: flex; align-items: center; gap: 5px; }
.topbar-right a { color: rgba(255,255,255,.85); font-weight: 600; font-size: 13px; transition: color var(--transition); }
.topbar-right a:hover { color: var(--accent); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: rgba(20,32,43,.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100vw;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb),.38);
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo:hover .logo-mark { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(var(--primary-rgb),.46); }
.logo-mark svg { width: 26px; height: 26px; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 18px; font-weight: 800; color: var(--head); letter-spacing: -.005em; }
.logo-sub { font-size: 9px; font-weight: 700; color: var(--primary); letter-spacing: .24em; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { position: relative; color: var(--muted); font-weight: 550; font-size: 14.5px; padding: 9px 15px; border-radius: var(--radius-pill); transition: all var(--transition); }
.nav-links a:hover { color: var(--head); background: var(--surface-2); }
.nav-links a.active { color: var(--primary); background: var(--accent-soft); font-weight: 650; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-weight: 700; font-size: 14px; color: var(--head); display: flex; align-items: center; gap: 5px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 6px; }
.hamburger span { display: block; width: 23px; height: 2px; background: var(--head); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--surface);
  border-top: 2px solid var(--border);
  padding: 0 24px;
  display: flex; flex-direction: column; gap: 2px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .35s ease, opacity .25s ease, padding .25s ease;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { max-height: 500px; opacity: 1; padding: 12px 24px 20px; }
.nav-mobile a { color: var(--body); font-size: 15px; font-weight: 500; padding: 11px 12px; border-radius: var(--radius-sm); display: block; transition: all var(--transition); }
.nav-mobile a:hover { background: var(--accent-soft); color: var(--primary); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: radial-gradient(1200px 600px at 15% -10%, rgba(58,80,104,.75) 0%, transparent 60%),
              radial-gradient(900px 500px at 95% 10%, rgba(var(--primary-rgb),.22) 0%, transparent 62%),
              linear-gradient(165deg, rgba(20,32,43,.90) 0%, rgba(15,25,34,.96) 100%),
              url("../images/lot-wide.jpg") center 32% / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 104px 0 124px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
}
.hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero-lead { position: relative; z-index: 1; max-width: 760px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px); color: rgba(255,255,255,.9); font-size: 12px; font-weight: 650; letter-spacing: .8px; text-transform: uppercase; padding: 7px 16px; border-radius: var(--radius-pill); margin-bottom: 26px; }
.hero-title { font-size: clamp(40px, 6.4vw, 78px); font-weight: 800; color: var(--white); line-height: 1.02; letter-spacing: -.042em; margin-bottom: 24px; }
.hero-title span { color: var(--primary); }
.hero-desc { color: rgba(255,255,255,.66); font-size: 17.5px; line-height: 1.72; margin-bottom: 34px; max-width: 540px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }

/* Stats sit inline in the hero as a rule-separated row (no floating white card) */
.hero-stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, auto); justify-content: start;
  gap: 0 54px; margin-top: 66px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.13);
}
.hstat { display: flex; flex-direction: column; gap: 5px; }
.hstat-n { font-size: 30px; font-weight: 800; color: var(--white); letter-spacing: -.035em; line-height: 1; }
.hstat-l { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5); letter-spacing: .04em; }

/* ============================================================
   SEARCH RAIL — one horizontal bar straddling the hero seam
   ============================================================ */
.rail-wrap { position: relative; z-index: 6; margin-top: -38px; margin-bottom: 8px; }
.hero-rail {
  display: flex; align-items: stretch; gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  padding: 8px 8px 8px 10px;
}
.rail-field { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 3px; padding: 8px 20px; min-width: 0; border-radius: var(--radius-pill); transition: background var(--transition); }
.rail-field:hover { background: var(--surface-2); }
.rail-field label { font-size: 11px; font-weight: 700; color: var(--head); letter-spacing: .04em; cursor: pointer; }
.rail-field select {
  border: none; background: none; outline: none; padding: 0;
  font-size: 14px; color: var(--muted); font-family: inherit;
  cursor: pointer; width: 100%; text-overflow: ellipsis;
}
.rail-field select:focus { color: var(--primary); font-weight: 600; }
.rail-sep { width: 1px; background: var(--border); margin: 10px 0; flex-shrink: 0; }
.rail-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--primary); color: #14202b;
  border: none; border-radius: var(--radius-pill);
  padding: 0 30px; margin-left: 8px; flex-shrink: 0;
  font-size: 15px; font-weight: 650; font-family: inherit; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.rail-btn:hover { background: var(--primary-dk); transform: translateY(-1px); }

/* Shared form-field styling still used by other pages */
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 11.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .7px; }
.form-field select, .form-field input {
  padding: 12px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14.5px; color: var(--body); background: var(--surface-2); outline: none;
  transition: all var(--transition);
}
.form-field select:focus, .form-field input:focus { border-color: var(--primary); background: var(--surface); box-shadow: 0 0 0 4px rgba(var(--primary-rgb),.12); }

/* ============================================================
   INVENTORY CARDS
   ============================================================ */
.inventory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 26px; }
.eq-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); cursor: pointer; display: flex; flex-direction: column; }
.eq-card:hover { border-color: rgba(var(--primary-rgb),.35); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.eq-card-img { position: relative; height: 226px; background: linear-gradient(135deg, var(--dark-2), var(--mid)); overflow: hidden; }
.eq-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,27,36,.72) 0%, rgba(16,27,36,.22) 30%, transparent 58%); pointer-events: none; z-index: 1; }
.eq-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease-out); }
.eq-card:hover .eq-card-img img { transform: scale(1.07); }
.eq-card-img .eq-emoji { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 80px; background: linear-gradient(135deg, var(--dark-2) 0%, var(--mid) 100%); transition: transform .7s var(--ease-out); }
.eq-card:hover .eq-emoji { transform: scale(1.07); }
.eq-card-tags { position: absolute; top: 13px; left: 13px; display: flex; gap: 6px; flex-wrap: wrap; z-index: 2; }

/* Condition pill — top right of the photo */
.eq-cond {
  position: absolute; top: 13px; right: 13px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700; letter-spacing: .2px;
  backdrop-filter: blur(8px); box-shadow: 0 2px 8px rgba(16,27,36,.18);
}
.eq-cond::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.cond-recon { background: rgba(255,255,255,.94); color: #126538; }
.cond-asis  { background: rgba(255,255,255,.94); color: #A85C0B; }

/* Category label — bottom left of the photo, over the gradient scrim */
.eq-cat {
  position: absolute; left: 14px; bottom: 13px; z-index: 2;
  font-size: 11.5px; font-weight: 650; letter-spacing: .5px;
  text-transform: uppercase; color: rgba(255,255,255,.95);
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}

.eq-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.eq-card-make { font-size: 11.5px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 5px; }
.eq-card-title { font-size: 17px; font-weight: 750; color: var(--head); letter-spacing: -.025em; margin-bottom: 14px; line-height: 1.3; }
.eq-card-specs { display: flex; flex-wrap: wrap; gap: 7px; font-size: 12.5px; color: var(--muted); margin-bottom: 18px; }
.eq-card-specs span { display: inline-flex; align-items: center; gap: 5px; background: var(--surface-2); border: 1px solid var(--border); padding: 5px 11px; border-radius: var(--radius-pill); white-space: nowrap; }
.eq-card-specs svg { color: var(--primary); opacity: .85; flex-shrink: 0; }

.eq-card-pricerow { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); margin-bottom: 16px; }
.eq-card-price { font-size: 27px; font-weight: 800; color: var(--head); letter-spacing: -.04em; line-height: 1.1; }
.eq-card-pricenote { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

.eq-card-actions { display: flex; gap: 9px; align-items: stretch; }
.eq-card-detail {
  display: flex; align-items: center; justify-content: center;
  width: 40px; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: var(--radius-pill);
  color: var(--muted); background: var(--surface);
  transition: all var(--transition);
}
.eq-card-detail:hover { background: var(--dark); border-color: var(--head); color: var(--white); transform: translateX(2px); }
.eq-card-footer { display: none; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw { background: var(--surface-2); }
.tl-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.tl-aside { position: sticky; top: 110px; }
.tl-aside .section-title { margin-bottom: 16px; }

.tl-steps { display: flex; flex-direction: column; }
.tl-step { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 32px 0; border-top: 1px solid var(--border); align-items: start; }
.tl-step:first-child { border-top: none; padding-top: 0; }
.tl-step:last-child { padding-bottom: 0; }
.tl-ico {
  width: 60px; height: 60px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(var(--primary-rgb),.32);
  color: var(--primary);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.tl-step:hover .tl-ico { background: rgba(var(--primary-rgb),.22); border-color: var(--primary); transform: translateY(-2px); }
.tl-body h3 { font-size: 21px; font-weight: 750; color: var(--head); letter-spacing: -.028em; margin-bottom: 9px; }
.tl-body p { font-size: 15px; color: var(--muted); line-height: 1.72; max-width: 520px; }

/* Still used by the process steps on about.html */
.hiw-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 56px; }
.hiw-step { text-align: center; padding: 0 10px; }
.step-circle {
  position: relative; width: 62px; height: 62px; margin: 0 auto 20px;
  background: var(--surface); border: 1.5px solid rgba(var(--primary-rgb),.35);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary); box-shadow: var(--shadow-sm);
}
.step-num {
  position: absolute; top: -7px; right: -7px; width: 23px; height: 23px;
  background: var(--primary); color: #14202b; border-radius: 50%;
  font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.hiw-step h3 { font-size: 16px; font-weight: 700; color: var(--head); margin-bottom: 9px; letter-spacing: -.015em; }
.hiw-step p { font-size: 13.5px; color: var(--muted); line-height: 1.66; }

/* Two-column section head (replaces the centred heading rhythm) */
.sec-head-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; margin-bottom: 54px; }
.sec-head-split .section-title { margin-bottom: 0; }
.sec-head-split .section-sub { max-width: none; padding-bottom: 6px; }

/* Bento: one tall photo feature + three cards of unequal span */
.bento { display: grid; grid-template-columns: 1.25fr 1fr 1fr; grid-auto-rows: minmax(186px, auto); gap: 18px; }
.bento-feature {
  grid-column: 1; grid-row: span 2;
  position: relative; overflow: hidden;
  border-radius: var(--radius); background: var(--dark);
  display: flex; align-items: flex-end; min-height: 420px;
}
.bento-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.bento-feature::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,27,36,.96) 14%, rgba(16,27,36,.30) 100%); }
.bento-feature-body { position: relative; z-index: 1; padding: 36px; }
.bento-kicker { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.bento-feature h3 { font-size: clamp(20px, 2.1vw, 25px); font-weight: 750; color: var(--white); line-height: 1.24; letter-spacing: -.028em; margin-bottom: 13px; }
.bento-feature p { font-size: 14.5px; color: rgba(255,255,255,.62); line-height: 1.68; }

.bento-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.bento-card:hover { border-color: rgba(var(--primary-rgb),.35); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.bento-wide { grid-column: 2 / span 2; }
.why-icon { color: var(--primary); margin-bottom: 16px; display: block; }
.bento-card h3 { font-size: 16px; font-weight: 700; color: var(--head); margin-bottom: 9px; letter-spacing: -.015em; }
.bento-card p { font-size: 13.5px; color: var(--muted); line-height: 1.66; }

/* Still used by the team grid on about.html */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 56px; }
.why-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover { border-color: rgba(var(--primary-rgb),.35); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--head); margin-bottom: 9px; letter-spacing: -.015em; }
.why-card p { font-size: 13.5px; color: var(--muted); line-height: 1.66; }

/* ============================================================
   DELIVERY SECTION
   ============================================================ */
/* ---- Happy customers: mosaic (one lead tile + three) ---- */
.cust-mosaic { display: grid; grid-template-columns: 1.25fr 1fr; grid-auto-rows: 210px; gap: 16px; }
.cust-tile { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.cust-tile-lead { grid-row: span 2; }
.cust-tile img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform .5s var(--ease-out); }
.cust-tile:hover img { transform: scale(1.05); }
.cust-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 18px 15px; font-size: 12.5px; font-weight: 650; color: #fff; letter-spacing: .01em;
  background: linear-gradient(to top, rgba(16,27,36,.9) 0%, transparent 100%);
}
.cust-tile-lead figcaption { font-size: 14px; padding: 46px 22px 20px; }

/* ---- Testimonials: one featured quote + a compact stack ---- */
.testi-section { background: var(--surface-2); }
.testi-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: start; }
.testi-stars { color: var(--accent); font-size: 19px; letter-spacing: 3px; }
.testi-stars.sm { font-size: 14px; letter-spacing: 2px; }

.testi-lead {
  background: linear-gradient(160deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  padding: 42px 40px; position: relative; overflow: hidden;
}
.testi-lead::before {
  content: 'C'; position: absolute; top: -26px; right: 22px;
  font-size: 170px; font-weight: 800; line-height: 1;
  color: rgba(var(--primary-rgb),.30); pointer-events: none;
}
.testi-lead blockquote { position: relative; font-size: 21px; line-height: 1.62; color: rgba(255,255,255,.94); font-weight: 450; letter-spacing: -.015em; margin: 22px 0 30px; }
.testi-lead figcaption { display: flex; align-items: center; gap: 15px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.testi-lead figcaption img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(var(--primary-rgb),.6); }

.testi-stack { display: flex; flex-direction: column; gap: 14px; }
.testi-mini {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 22px 24px;
  transition: background var(--transition), border-color var(--transition);
}
.testi-mini:hover { background: rgba(255,255,255,.075); border-color: rgba(var(--primary-rgb),.4); }
.testi-mini blockquote { font-size: 14.5px; line-height: 1.66; color: rgba(255,255,255,.74); margin: 11px 0 16px; }
.testi-mini figcaption { display: flex; align-items: center; gap: 12px; }
.testi-mini figcaption img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }

.testi-lead figcaption span, .testi-mini figcaption span { display: flex; flex-direction: column; gap: 2px; font-size: 12.5px; color: var(--accent); }
.testi-lead figcaption strong, .testi-mini figcaption strong { font-size: 15px; font-weight: 750; color: #fff; letter-spacing: -.01em; }

/* ---- Floating WhatsApp button (all pages) ---- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 8000;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.18);
  transition: transform .22s ease, box-shadow .22s ease;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,.6), 0 4px 12px rgba(0,0,0,.22); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; position: relative; z-index: 1; }
.wa-float-pulse {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: rgba(37,211,102,.35); animation: wa-pulse 2.2s ease-out infinite; pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.7); opacity: 0;  }
  100% { transform: scale(1.7); opacity: 0;  }
}
@media(max-width:600px){
  .wa-float { bottom:18px; right:18px; width:52px; height:52px; }
  .wa-float svg { width:27px; height:27px; }
}

/* ---- Stats ribbon (still used on about.html) ---- */
.customers-section { background: var(--bg); }
.stats-ribbon { position: relative; z-index: 5; margin-top: -62px; }
.stats-ribbon-inner { display: flex; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; }
.stat-cell { flex: 1; padding: 26px 20px; display: flex; align-items: center; gap: 14px; justify-content: center; border-right: 1px solid var(--border); transition: background var(--transition); }
.stat-cell:hover { background: var(--surface-2); }
.stat-cell:last-child { border-right: none; }
.stat-icon { font-size: 26px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--accent-soft); border-radius: 14px; flex-shrink: 0; }
.stat-num { font-size: 26px; font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--head); }
.stat-lbl { font-size: 11.5px; color: var(--muted); font-weight: 600; margin-top: 5px; letter-spacing: .5px; text-transform: uppercase; }
@media (max-width: 768px) {
  .stats-ribbon { margin-top: -46px; }
  .stats-ribbon-inner { flex-wrap: wrap; }
  .stat-cell { flex-basis: 50%; padding: 20px 14px; }
  .stat-cell:nth-child(2) { border-right: none; }
}

.delivery-section {
  background: radial-gradient(800px 420px at 85% 15%, rgba(var(--primary-rgb),.32) 0%, transparent 62%),
              linear-gradient(165deg, rgba(20,32,43,.93) 0%, rgba(15,25,34,.96) 100%),
              url("../images/lot-aerial.jpg") center / cover no-repeat;
  padding: 100px 0;
}
.delivery-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.delivery-text h2 { font-size: clamp(28px, 3.8vw, 42px); font-weight: 800; letter-spacing: -.035em; line-height: 1.12; color: var(--white); margin-bottom: 18px; }
.delivery-text h2 span { color: var(--primary); }
.delivery-text p { color: rgba(255,255,255,.62); font-size: 16.5px; line-height: 1.75; margin-bottom: 30px; }
.delivery-points { display: flex; flex-direction: column; gap: 16px; }
.delivery-point { display: flex; gap: 13px; align-items: flex-start; color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.55; }
.dp-icon { font-size: 18px; color: #6BCF9B; flex-shrink: 0; margin-top: 2px; }
.delivery-map {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  padding: 44px 36px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.delivery-map .map-emoji { font-size: 40px; color: var(--primary); margin: 0 auto 20px; width: 84px; height: 84px; border-radius: 24px; background: rgba(var(--primary-rgb),.18); border: 1px solid rgba(var(--primary-rgb),.3); display: flex; align-items: center; justify-content: center; }
.delivery-map h4 { color: var(--white); font-size: 19px; font-weight: 750; letter-spacing: -.02em; margin-bottom: 10px; }
.delivery-map p { color: rgba(255,255,255,.55); font-size: 14.5px; line-height: 1.65; }
.delivery-states { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; justify-content: center; }
.state-tag { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.65); font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: var(--radius-pill); }

/* ============================================================
   BROWSE PAGE
   ============================================================ */
.browse-layout { display: grid; grid-template-columns: 275px 1fr; gap: 32px; padding: 48px 0; }
.sidebar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; height: fit-content; position: sticky; top: 98px; box-shadow: var(--shadow-sm); }
.sidebar-title { font-size: 15px; font-weight: 700; color: var(--head); margin-bottom: 18px; display: flex; justify-content: space-between; align-items: center; }
.sidebar-title button { font-size: 12px; font-weight: 600; color: var(--primary); background: none; cursor: pointer; padding: 0; border: none; }
.filter-group { margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; }
.filter-group h4 { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 10px; }
.filter-options { display: flex; flex-direction: column; gap: 7px; }
.filter-opt label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--body); cursor: pointer; }
.filter-opt input[type="checkbox"] { accent-color: var(--primary); width: 14px; height: 14px; }
.filter-opt .cnt { margin-left: auto; font-size: 11px; color: var(--muted); background: var(--surface-2); padding: 1px 6px; border-radius: 8px; }
.price-range-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.price-range-inputs input { padding: 8px 10px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; outline: none; width: 100%; transition: border-color var(--transition); }
.price-range-inputs input:focus { border-color: var(--primary); }
.browse-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.results-info { font-size: 14px; color: var(--muted); }
.results-info strong { color: var(--body); }
.sort-wrap { display: flex; align-items: center; gap: 8px; }
.sort-wrap label { font-size: 13px; font-weight: 600; color: var(--muted); }
.sort-wrap select { padding: 7px 11px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; background: var(--surface); color: var(--body); outline: none; }
.pagination { display: flex; justify-content: center; gap: 5px; margin-top: 36px; }
.page-btn { width: 40px; height: 40px; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: var(--body); cursor: pointer; transition: all var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--primary); border-color: var(--primary); color: #14202b; }
.page-btn.disabled { opacity: .4; pointer-events: none; }
#noResults { display: none; text-align: center; padding: 60px 20px; }

/* ============================================================
   LISTING DETAIL
   ============================================================ */
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; padding: 36px 0; }
.gallery-main { height: 400px; border-radius: var(--radius); overflow: hidden; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--dark-2), var(--mid)); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumbs { display: flex; gap: 7px; overflow-x: auto; }
.gallery-thumb { flex-shrink: 0; width: 90px; height: 66px; border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer; overflow: hidden; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--dark-2), var(--mid)); transition: border-color var(--transition); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb.active { border-color: var(--primary); }
.detail-title { font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: var(--head); margin: 22px 0 10px; line-height: 1.25; }
.detail-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.detail-meta > span { display: inline-flex; align-items: center; gap: 6px; background: var(--surface-2); border: 1px solid var(--border); padding: 6px 12px; border-radius: var(--radius-pill); }
.detail-meta svg { color: var(--primary); opacity: .85; flex-shrink: 0; }
.detail-meta .badge, .detail-meta .eq-cond { border: none; }
.detail-desc { font-size: 15px; line-height: 1.8; color: var(--body); margin-bottom: 22px; }
.specs-table { width: 100%; border-collapse: collapse; margin-bottom: 22px; }
.specs-table th { background: var(--surface-2); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); padding: 9px 14px; text-align: left; border: 1px solid var(--border); }
.specs-table td { padding: 10px 14px; border: 1px solid var(--border); font-size: 14px; }
.specs-table tr:nth-child(even) td { background: var(--surface-2); }

/* Price card */
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; position: sticky; top: 98px; box-shadow: var(--shadow-md); }
.price-card .price { font-size: 34px; font-weight: 800; letter-spacing: -.035em; color: var(--head); margin-bottom: 4px; }
.price-card .price-note { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.price-card .btn { margin-bottom: 8px; }
.divider-line { height: 1px; background: var(--border); margin: 16px 0; }
.quick-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.qs-item { background: var(--surface-2); border-radius: var(--radius-sm); padding: 10px; text-align: center; }
.qs-val { font-size: 15px; font-weight: 700; color: var(--head); }
.qs-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; }
.contact-form-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; margin-top: 14px; }
.contact-form-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; color: var(--head); }
.contact-form-card .form-field { margin-bottom: 10px; }
.contact-form-card .form-field input,
.contact-form-card .form-field textarea,
.contact-form-card .form-field select { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; outline: none; transition: border-color var(--transition); color: var(--body); }
.contact-form-card .form-field input:focus,
.contact-form-card .form-field textarea:focus { border-color: var(--primary); }
.contact-form-card .form-field textarea { resize: vertical; min-height: 80px; }

/* ============================================================
   SELL PAGE — FORM
   ============================================================ */
.sell-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; padding: 44px 0 80px; align-items: start; }
.sell-form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.sell-form-card > h2 { font-size: 24px; font-weight: 800; color: var(--head); letter-spacing: -.028em; margin-bottom: 6px; }
.sell-form-card > p { font-size: 14.5px; color: var(--muted); margin-bottom: 26px; }

.form-section-title {
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary); margin: 32px 0 16px;
  padding-bottom: 11px; border-bottom: 1px solid var(--border);
}
.form-section-title:first-of-type { margin-top: 0; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.col-span-2 { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-group label { font-size: 12.5px; font-weight: 650; color: var(--head); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14.5px; color: var(--body); background: var(--surface-2);
  outline: none; transition: all var(--transition); font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); background: var(--surface);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb),.12);
}
.form-group textarea { resize: vertical; line-height: 1.6; }

/* Photo upload */
.upload-zone {
  border: 2px dashed var(--border); border-radius: var(--radius);
  background: var(--surface-2); padding: 40px 24px; text-align: center;
  cursor: pointer; transition: all var(--transition);
}
.upload-zone:hover { border-color: var(--primary); background: var(--accent-soft); }
.upload-zone input[type="file"] { display: none; }
.upload-icon { font-size: 34px; color: var(--primary); margin-bottom: 12px; }
.upload-zone h4 { font-size: 16px; font-weight: 700; color: var(--head); margin-bottom: 6px; }
.upload-zone p { font-size: 13.5px; color: var(--muted); }
.upload-zone p span { color: var(--primary); font-weight: 650; text-decoration: underline; }

/* sell.html nav uses .nav-actions and a <ul> nav; match the shared navbar */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-links li { list-style: none; }
.breadcrumb .sep { opacity: .5; }
.footer-contact-list { display: flex; flex-direction: column; gap: 11px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; line-height: 1.6; opacity: .62; }
.footer-contact-list li span:first-child { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.toast-container { position: fixed; bottom: 22px; right: 22px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }

@media (max-width: 1024px) { .sell-layout { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .form-grid, .form-grid.cols-3 { grid-template-columns: 1fr; }
  .sell-form-card { padding: 24px 20px; }
}

/* ============================================================
   SELL PAGE — TIPS SIDEBAR
   ============================================================ */
.sell-tips-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 22px; }
.sell-tips-card h3 { font-size: 15px; font-weight: 700; color: var(--head); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.tip-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.tip-item:last-child { margin-bottom: 0; }
.tip-icon { color: var(--primary); font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.tip-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.tip-text strong { color: var(--head); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-photo { width: 100%; height: 440px; object-fit: cover; object-position: center 35%; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; }
.about-float-stat { position: absolute; bottom: -16px; right: -16px; background: var(--primary); color: #14202b; border-radius: var(--radius); padding: 14px 18px; text-align: center; box-shadow: var(--shadow-md); }
.about-float-stat .fn { font-size: 26px; font-weight: 900; }
.about-float-stat .fl { font-size: 12px; opacity: .9; }
.about-text h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--head); margin-bottom: 14px; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.process-points { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.process-point { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--body); line-height: 1.5; }
.pp-icon { font-size: 18px; color: var(--primary); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; padding: 56px 0; }
.contact-form-wrap { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px; }
.contact-form-wrap h2 { font-size: 22px; font-weight: 800; color: var(--head); margin-bottom: 4px; }
.contact-form-wrap > p { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.contact-form-wrap .form-field { margin-bottom: 14px; }
.contact-form-wrap .form-field input,
.contact-form-wrap .form-field select,
.contact-form-wrap .form-field textarea { width: 100%; padding: 11px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; outline: none; transition: border-color var(--transition); color: var(--body); }
.contact-form-wrap .form-field input:focus,
.contact-form-wrap .form-field textarea:focus,
.contact-form-wrap .form-field select:focus { border-color: var(--primary); }
.contact-form-wrap .form-field textarea { resize: vertical; min-height: 130px; }
.contact-form-wrap .form-field label { font-size: 13px; font-weight: 600; color: var(--head); margin-bottom: 5px; display: block; }
.contact-info-panel { display: flex; flex-direction: column; gap: 14px; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; gap: 16px; align-items: flex-start; transition: all var(--transition); }
.info-card:hover { border-color: rgba(var(--primary-rgb),.35); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-icon { width: 48px; height: 48px; background: linear-gradient(140deg, var(--tint), #F4F9FD); border: 1px solid rgba(var(--primary-rgb),.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 19px; color: var(--primary); flex-shrink: 0; }
.info-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: 3px; }
.info-value { font-size: 15px; font-weight: 600; color: var(--head); }
.info-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.faq-item { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-btn { width: 100%; text-align: left; padding: 16px 18px; background: none; font-size: 14px; font-weight: 700; color: var(--head); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px; border: none; }
.faq-icon { font-size: 18px; flex-shrink: 0; transition: .25s; }
.faq-body { display: none; padding: 0 18px 16px; font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   PAGE HERO (inner)
   ============================================================ */
.page-hero {
  background: radial-gradient(900px 400px at 20% -20%, #1F3A50 0%, transparent 60%),
              radial-gradient(700px 380px at 92% 0%, rgba(var(--primary-rgb),.32) 0%, transparent 65%),
              linear-gradient(165deg, #182634 0%, #101A23 100%);
  padding: 76px 0; color: var(--white); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 50px); font-weight: 800; letter-spacing: -.035em; line-height: 1.1; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.7; max-width: 560px; }
.breadcrumb-bar { background: var(--surface-2); border-bottom: 1px solid var(--border); padding: 13px 0; }
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--primary); font-weight: 600; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: radial-gradient(760px 360px at 50% 0%, rgba(245,166,35,.20) 0%, transparent 68%),
              linear-gradient(165deg, #1B2A38 0%, #14202b 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 92px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(28px, 4.2vw, 44px); font-weight: 800; letter-spacing: -.035em; line-height: 1.12; color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.7; margin-bottom: 34px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner-btns { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #101A23; color: rgba(255,255,255,.6); padding: 76px 0 30px; }
/* Two-tier footer: brand banner across the top, then three columns */
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 52px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 26px; }
.footer-brand {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: auto minmax(0, 460px); gap: 46px;
  align-items: center; justify-content: space-between;
  padding-bottom: 40px; margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: var(--primary); }
.footer-desc { font-size: 15px; line-height: 1.72; opacity: .55; max-width: none; margin: 0; }
.footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.soc-btn { width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: var(--transition); }
.soc-btn:hover { background: var(--primary); color: #14202b; }
.footer-col h4 { color: var(--white); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.1px; margin-bottom: 18px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14px; opacity: .58; transition: all var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--primary); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; line-height: 1.6; margin-bottom: 14px; opacity: .62; }
.footer-contact li span:first-child { color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; opacity: .4; flex-wrap: wrap; gap: 8px; }

/* ============================================================
   TOAST
   ============================================================ */
.toast-wrap { position: fixed; bottom: 22px; right: 22px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast { background: var(--dark); color: var(--white); padding: 13px 18px; border-radius: var(--radius-sm); font-size: 14px; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-lg); animation: toastIn .3s ease; min-width: 240px; }
.toast.success { background: var(--green); }
.toast.error { background: #C0392B; }
@keyframes toastIn { from { transform: translateX(110%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { padding: 72px 0 100px; }
  .section-pad { padding: 80px 0; }
  .hero-stats { gap: 0 36px; margin-top: 52px; }
  .hero-rail { flex-wrap: wrap; border-radius: 24px; padding: 12px; }
  .rail-field { flex: 1 1 44%; }
  .rail-sep { display: none; }
  .rail-btn { flex: 1 1 100%; margin-left: 0; margin-top: 8px; padding: 15px 26px; }
  .browse-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .detail-layout { grid-template-columns: 1fr; }
  .price-card { position: static; }
  .about-story { grid-template-columns: 1fr; }
  .delivery-inner { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .sec-head-split { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-feature { grid-column: 1 / span 2; grid-row: auto; min-height: 340px; }
  .bento-wide { grid-column: 1 / span 2; }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .tl-layout { grid-template-columns: 1fr; gap: 46px; }
  .testi-layout { grid-template-columns: 1fr; }
  .cust-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .cust-tile-lead { grid-column: 1 / span 2; grid-row: auto; }
  .cust-tile-lead img { object-position: center 25%; }
  .tl-aside { position: static; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links, .nav-cta .btn-outline, .nav-cta .btn-primary, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .rail-wrap { margin-top: -28px; }
  .hero-stats { grid-template-columns: repeat(2, auto); gap: 24px 34px; }
  .hstat-n { font-size: 25px; }
  .inventory-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .bento-feature-body { padding: 28px; }
  .hiw-steps { grid-template-columns: 1fr 1fr; }
  .tl-step { grid-template-columns: 66px 1fr; gap: 18px; }
  .testi-lead { padding: 30px 26px; }
  .testi-lead blockquote { font-size: 18px; }
  .tl-ico { width: 52px; height: 52px; border-radius: 14px; }
  .tl-ico svg { width: 22px; height: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .rail-field { flex: 1 1 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section-pad { padding: 60px 0; }
  .hero { padding: 56px 0 90px; }
  .why-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-feature, .bento-wide { grid-column: 1; }
  .cust-mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .cust-tile-lead { grid-column: 1; }
  .bento-feature { min-height: 300px; }
  .hiw-steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .browse-toolbar { flex-direction: column; align-items: flex-start; }
}
