﻿/* =============================================
   FAISAL HONDA — GLOBAL STYLESHEET
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Inter:wght@300;400;500;600&family=Tajawal:wght@400;700;900&family=Cairo:wght@400;600;700&display=swap');

/* Design Tokens */
:root {
  --c-red: #F5C100;
  --c-red-dk: #D4A800;
  --c-red-lt: #FFD700;
  --c-dark: #0D0D0D;
  --c-dark2: #1C1C1C;
  --c-dark3: #242424;
  --c-light: #F8F8F8;
  --c-white: #FFFFFF;
  --c-gray: #888888;
  --c-gray-l: #BBBBBB;
  --c-gold: #F5C100;
  --c-border: rgba(255, 255, 255, 0.08);
  --f-h: 'Montserrat', sans-serif;
  --f-b: 'Inter', sans-serif;
  --f-ah: 'Tajawal', sans-serif;
  --f-ab: 'Cairo', sans-serif;
  --max-w: 1280px;
  --pad: clamp(1rem, 5vw, 4rem);
  --sec-pad: clamp(3rem, 8vw, 6rem);
  --r: 8px;
  --r-lg: 16px;
  --sh-card: 0 4px 24px rgba(0, 0, 0, .25);
  --sh-red: 0 0 24px rgba(245, 193, 0, .45);
  --sh-red-sm: 0 0 12px rgba(245, 193, 0, .25);
  --tr: .3s ease;
  --tr-s: .5s ease;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--f-b);
  background: var(--c-dark);
  color: var(--c-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

html[lang="ar"] body {
  font-family: var(--f-ab);
  line-height: 1.8
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--tr)
}

ul {
  list-style: none
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
textarea,
select {
  font-family: inherit
}

/* Layout */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad)
}

.section {
  padding-block: var(--sec-pad)
}

.section--dark {
  background: var(--c-dark)
}

.section--dark2 {
  background: var(--c-dark2)
}

.section--dark3 {
  background: var(--c-dark3)
}

.section--light {
  background: var(--c-light)
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--f-h);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4 {
  font-family: var(--f-ah);
  letter-spacing: 0
}

.text-red {
  color: var(--c-red)
}

.text-gold {
  color: var(--c-gold)
}

.text-gray {
  color: var(--c-gray)
}

.text-center {
  text-align: center
}

.sec-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: .75rem
}

.sec-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--c-white)
}

.sec-title--dk {
  color: var(--c-dark)
}

.sec-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--c-gray);
  max-width: 600px;
  line-height: 1.7
}

.sec-sub--c {
  margin-inline: auto
}

.title-acc {
  position: relative;
  display: inline-block
}

.title-acc::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--c-red);
  border-radius: 2px
}

html[dir="rtl"] .title-acc::after {
  left: auto;
  right: 0
}

.sec-hdr--c .title-acc::after {
  left: 50%;
  transform: translateX(-50%)
}

html[dir="rtl"] .sec-hdr--c .title-acc::after {
  left: 50%;
  right: auto
}

.sec-hdr {
  margin-bottom: 3.5rem
}

.sec-hdr--c {
  text-align: center
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: var(--tr);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent
}

.btn-red {
  background: var(--c-red);
  color: #0D0D0D;
  border-color: var(--c-red);
  box-shadow: 0 4px 16px rgba(245, 193, 0, .3);
  font-weight: 700
}

.btn-red:hover {
  background: var(--c-red-dk);
  border-color: var(--c-red-dk);
  transform: scale(1.04);
  box-shadow: var(--sh-red)
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .6)
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  transform: scale(1.04)
}

.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .35)
}

.btn-wa:hover {
  background: #1da851;
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .5)
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem
}

.btn-full {
  width: 100%;
  justify-content: center
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--tr-s), box-shadow var(--tr-s)
}

.navbar.scrolled {
  background: rgba(13, 13, 13, .97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .5);
  border-bottom: 1px solid rgba(245, 193, 0, .25);
  backdrop-filter: blur(12px)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  gap: 1rem
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0
}

.nav-logo-en {
  font-family: var(--f-h);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--c-red);
  letter-spacing: .05em;
  text-transform: uppercase
}

.nav-logo-ar {
  font-family: var(--f-ah);
  font-size: .75rem;
  color: rgba(255, 255, 255, .7)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem
}

.nav-links a {
  padding: .35rem .6rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  border-radius: 6px;
  transition: var(--tr);
  white-space: nowrap
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(245, 193, 0, .12)
}

.nav-links a.active {
  color: var(--c-red)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--tr)
}

.lang-toggle:hover {
  border-color: var(--c-red)
}

.lang-btn {
  padding: .35rem .75rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .5);
  transition: var(--tr);
  border-radius: 50px;
  background: none;
  cursor: pointer
}

.lang-btn.active {
  background: var(--c-red);
  color: #fff
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--tr)
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 88vw);
  height: 100vh;
  background: var(--c-dark2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  transition: right .4s cubic-bezier(.77, 0, .175, 1);
  border-left: 1px solid rgba(245, 193, 0, .25);
  box-shadow: -8px 0 40px rgba(0, 0, 0, .5);
  gap: .5rem
}

.mobile-menu.open {
  right: 0
}

html[dir="rtl"] .mobile-menu {
  right: auto;
  left: -100%;
  border-left: none;
  border-right: 1px solid rgba(245, 193, 0, .25)
}

html[dir="rtl"] .mobile-menu.open {
  left: 0
}

.mobile-menu a {
  display: block;
  padding: .875rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  border-radius: 6px;
  transition: var(--tr)
}

.mobile-menu a:hover {
  color: var(--c-red);
  background: rgba(245, 193, 0, .08);
  padding-inline-start: 1.5rem
}

.mobile-menu__cta {
  margin-top: 1.5rem
}

.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px)
}

.mob-overlay.visible {
  opacity: 1;
  pointer-events: all
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-dark)
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .35;
  transition: transform 8s ease;
  transform: scale(1.05)
}

.hero__bg.loaded {
  transform: scale(1)
}

.hero__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, .95) 0%, rgba(13, 13, 13, .75) 40%, rgba(30, 0, 0, .6) 100%)
}

.hero__cont {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  width: 100%
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245, 193, 0, .12);
  border: 1px solid rgba(245, 193, 0, .4);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--c-red);
  margin-bottom: 1.5rem;
  letter-spacing: .05em
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -.03em
}

.hero__hl {
  color: var(--c-red);
  display: block
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255, 255, 255, .4);
  font-size: .8rem
}

.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, .3)
}

/* Stats Bar */
.stats-bar {
  background: var(--c-dark2);
  border-top: 1px solid rgba(245, 193, 0, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding-block: 2.5rem
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  position: relative
}

.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, .1)
}

html[dir="rtl"] .stat-item+.stat-item::before {
  left: auto;
  right: 0
}

.stat-num {
  font-family: var(--f-h);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--c-red);
  line-height: 1;
  margin-bottom: .35rem;
  display: block
}

.stat-lbl {
  font-size: clamp(.75rem, 1.5vw, .875rem);
  color: var(--c-gray);
  font-weight: 500;
  line-height: 1.4;
  max-width: 120px;
  margin-inline: auto
}

/* Cards */
.card {
  background: var(--c-dark2);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  position: relative;
  overflow: hidden
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-red);
  border-color: rgba(245, 193, 0, .4)
}

.card--lt {
  background: #fff;
  border-color: rgba(0, 0, 0, .08)
}

.icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 193, 0, .12);
  border: 1px solid rgba(245, 193, 0, .2);
  border-radius: var(--r);
  font-size: 1.4rem;
  color: var(--c-red);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: var(--tr)
}

.card:hover .icon-box {
  background: rgba(245, 193, 0, .2);
  box-shadow: var(--sh-red-sm)
}

.icon-box--lg {
  width: 72px;
  height: 72px;
  font-size: 1.8rem
}

.icon-box--c {
  margin-inline: auto
}

/* Grids */
.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem
}

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}

.g5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem
}

/* Red Divider */
.red-div {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--c-red), transparent);
  margin-block: 1.5rem;
  border-radius: 2px
}

.red-div--c {
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--c-red), transparent)
}

/* Business Cards (Home) */
.biz-cards {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem
}

.biz-card {
  position: relative;
  padding: 2.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  transition: var(--tr);
  display: block
}

.biz-card--p {
  background: linear-gradient(135deg, #0D1000 0%, var(--c-dark2) 100%);
  border-color: rgba(245, 193, 0, .25)
}

.biz-card--s {
  background: var(--c-dark3)
}

.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-red);
  border-color: rgba(245, 193, 0, .5)
}

.biz-card__tag {
  display: inline-block;
  padding: .25rem .75rem;
  background: var(--c-red);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 1rem
}

.biz-card__tag--s {
  background: rgba(255, 255, 255, .12)
}

.biz-card h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: .75rem
}

.biz-card p {
  color: var(--c-gray);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem
}

.biz-card .arrow-link {
  color: var(--c-red);
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap var(--tr)
}

.biz-card:hover .arrow-link {
  gap: .875rem
}

.biz-card__decor {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 8rem;
  color: rgba(204, 0, 0, .05);
  pointer-events: none;
  transition: var(--tr)
}

.biz-card:hover .biz-card__decor {
  color: rgba(245, 193, 0, .1);
  transform: rotate(15deg) scale(1.1)
}

html[dir="rtl"] .biz-card__decor {
  right: auto;
  left: -20px
}

/* Parts Grid */
.parts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem
}

.part-card {
  background: var(--c-dark2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  cursor: pointer
}

.part-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-red);
  border-color: rgba(245, 193, 0, .5)
}

.part-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 193, 0, .1);
  border-radius: 50%;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  color: var(--c-red);
  transition: var(--tr);
  border: 1px solid rgba(245, 193, 0, .2)
}

.part-card:hover .part-icon {
  background: rgba(245, 193, 0, .2);
  box-shadow: 0 0 16px rgba(245, 193, 0, .3)
}

.part-card h4 {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.4
}

.part-card .part-ar {
  font-size: .78rem;
  font-family: var(--f-ab);
  color: var(--c-gray);
  margin-top: .25rem
}

/* Feature Items */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem
}

.feat-item {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--c-dark2);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--r-lg);
  transition: var(--tr)
}

.feat-item:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 193, 0, .3);
  box-shadow: var(--sh-red-sm)
}

.feat-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.feat-item p {
  font-size: .875rem;
  color: var(--c-gray);
  line-height: 1.6
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.testi-card {
  background: var(--c-dark2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: var(--tr)
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 193, 0, .3);
  box-shadow: var(--sh-red-sm)
}

.testi-quote {
  font-size: 3rem;
  color: var(--c-red);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: .5rem;
  opacity: .6
}

.testi-text {
  font-size: .95rem;
  color: var(--c-gray-l);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic
}

.testi-stars {
  color: var(--c-gold);
  font-size: .875rem;
  margin-bottom: 1rem;
  letter-spacing: 2px
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .875rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 1rem
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), var(--c-red-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0
}

.testi-author strong {
  display: block;
  font-size: .9rem;
  font-weight: 700
}

.testi-author span {
  font-size: .8rem;
  color: var(--c-gray)
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--c-red) 0%, #990000 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, .02) 20px, rgba(255, 255, 255, .02) 40px)
}

.cta-banner>* {
  position: relative;
  z-index: 1
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fff
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 2rem
}

.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem
}

/* Footer */
.footer {
  background: #080808;
  padding-block: 4rem 1.5rem;
  border-top: 1px solid rgba(245, 193, 0, .2)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem
}

.footer-logo-en {
  font-family: var(--f-h);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-red);
  letter-spacing: .05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: .25rem
}

.footer-logo-ar {
  font-family: var(--f-ah);
  font-size: .9rem;
  color: rgba(255, 255, 255, .5)
}

.footer-tagline {
  font-size: .875rem;
  color: var(--c-gray);
  line-height: 1.7;
  margin: 1rem 0 1.5rem
}

.footer-social {
  display: flex;
  gap: .75rem
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: var(--c-gray);
  transition: var(--tr);
  font-size: .9rem
}

.footer-social a:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
  transform: translateY(-3px)
}

.foot-h {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem
}

.foot-links {
  display: flex;
  flex-direction: column;
  gap: .625rem
}

.foot-links a {
  font-size: .875rem;
  color: var(--c-gray);
  transition: var(--tr)
}

.foot-links a:hover {
  color: var(--c-red);
  padding-inline-start: .5rem
}

.foot-contact-i {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .875rem;
  color: var(--c-gray)
}

.foot-contact-i i {
  color: var(--c-red);
  margin-top: 3px;
  flex-shrink: 0
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem
}

.footer-copy {
  font-size: .8rem;
  color: var(--c-gray)
}

/* Tier Badge */
.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: .875rem;
  background: linear-gradient(135deg, rgba(212, 160, 23, .15), rgba(212, 160, 23, .05));
  border: 1px solid rgba(212, 160, 23, .4);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.75rem
}

.tier-hex {
  width: 56px;
  height: 64px;
  background: linear-gradient(135deg, var(--c-gold), #b8860b);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tier-hex span {
  font-size: .7rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  letter-spacing: .02em
}

.tier-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-gold)
}

.tier-sub {
  font-size: .8rem;
  color: rgba(212, 160, 23, .7);
  margin-top: .15rem
}

/* Process Steps */
.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative
}

.proc-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--c-red), rgba(245, 193, 0, .3));
  z-index: 0
}

html[dir="rtl"] .proc-steps::before {
  background: linear-gradient(270deg, var(--c-red), rgba(245, 193, 0, .3))
}

.proc-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1
}

.proc-step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(245, 193, 0, .1)
}

.proc-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.proc-step p {
  font-size: .85rem;
  color: var(--c-gray);
  line-height: 1.6
}

.proc-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: .5rem
}

/* Trust Badges */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--c-dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  transition: var(--tr)
}

.trust-badge:hover {
  border-color: rgba(245, 193, 0, .3);
  box-shadow: var(--sh-red-sm)
}

.trust-badge i {
  font-size: 1.75rem;
  color: var(--c-red);
  flex-shrink: 0
}

.trust-badge strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .15rem
}

.trust-badge span {
  font-size: .78rem;
  color: var(--c-gray)
}

/* Grade Cards */
.grade-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem
}

.grade-card {
  background: var(--c-dark2);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  border-top: 4px solid transparent;
  transition: var(--tr)
}

.grade-card--a {
  border-top-color: var(--c-gold)
}

.grade-card--b {
  border-top-color: var(--c-red)
}

.grade-card--c {
  border-top-color: var(--c-gray)
}

.grade-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-card)
}

.grade-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff
}

.grade-badge--a {
  background: var(--c-gold)
}

.grade-badge--b {
  background: var(--c-red)
}

.grade-badge--c {
  background: var(--c-gray)
}

/* Comparison Table */
.comp-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-lg);
  overflow: hidden
}

.comp-table th {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  background: var(--c-dark3);
  text-align: start
}

.comp-table th:nth-child(2) {
  background: var(--c-red);
  text-align: center
}

.comp-table th:nth-child(3) {
  text-align: center;
  color: var(--c-gray)
}

.comp-table td {
  padding: 1rem 1.5rem;
  font-size: .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.comp-table tr:nth-child(odd) td {
  background: rgba(255, 255, 255, .02)
}

.comp-table td:nth-child(2) {
  text-align: center;
  color: #4CAF50;
  font-weight: 700;
  background: rgba(204, 0, 0, .05)
}

.comp-table td:nth-child(3) {
  text-align: center;
  color: var(--c-gray)
}

/* Contact */
.contact-lay {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem
}

.contact-form {
  background: var(--c-dark2);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, .07)
}

.form-group {
  margin-bottom: 1.25rem
}

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-gray-l);
  margin-bottom: .5rem
}

.form-ctrl {
  width: 100%;
  padding: .875rem 1.125rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r);
  color: #fff;
  font-size: .95rem;
  transition: var(--tr)
}

.form-ctrl:focus {
  outline: none;
  border-color: var(--c-red);
  background: rgba(204, 0, 0, .05);
  box-shadow: 0 0 0 3px rgba(245, 193, 0, .1)
}

.form-ctrl::placeholder {
  color: rgba(255, 255, 255, .3)
}

.form-ctrl option {
  background: var(--c-dark2)
}

textarea.form-ctrl {
  resize: vertical;
  min-height: 130px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

/* Hours */
.hours-table {
  width: 100%;
  border-collapse: collapse
}

.hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.hours-table td {
  padding: .75rem 0;
  font-size: .9rem
}

.hours-table td:first-child {
  color: var(--c-gray)
}

.hours-table td:last-child {
  color: #fff;
  font-weight: 600;
  text-align: end
}

.hours-table tr.closed td {
  color: rgba(255, 255, 255, .3)
}

.map-box {
  background: var(--c-dark3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-lg);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gray);
  font-size: .9rem;
  gap: .5rem
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--c-dark) 0%, #0D1000 100%);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  border-bottom: 1px solid rgba(245, 193, 0, .2);
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 193, 0, .08) 0%, transparent 70%);
  pointer-events: none
}

html[dir="rtl"] .page-hero::before {
  right: auto;
  left: -10%
}

.page-hero__lbl {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 1rem
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--c-gray);
  max-width: 580px;
  line-height: 1.7
}

/* Values */
.vals-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem
}

.val-item {
  background: var(--c-dark2);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--tr)
}

.val-item:hover {
  border-color: rgba(245, 193, 0, .35);
  transform: translateY(-5px);
  box-shadow: var(--sh-red-sm)
}

.val-item h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .35rem
}

.val-item p {
  font-size: .8rem;
  color: var(--c-gray);
  line-height: 1.6
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--c-gray);
  margin-bottom: 1.5rem;
  flex-wrap: wrap
}

.breadcrumb a {
  color: var(--c-gray)
}

.breadcrumb a:hover {
  color: var(--c-red)
}

.breadcrumb i {
  font-size: .65rem;
  color: rgba(255, 255, 255, .25)
}

.breadcrumb span {
  color: #fff
}

/* Scroll Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0)
}

[data-reveal="left"] {
  transform: translateX(-30px)
}

[data-reveal="left"].revealed {
  transform: translateX(0)
}

[data-reveal="right"] {
  transform: translateX(30px)
}

[data-reveal="right"].revealed {
  transform: translateX(0)
}

[data-stagger]>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease
}

[data-stagger].staggered>*:nth-child(1) {
  transition-delay: .05s;
  opacity: 1;
  transform: none
}

[data-stagger].staggered>*:nth-child(2) {
  transition-delay: .12s;
  opacity: 1;
  transform: none
}

[data-stagger].staggered>*:nth-child(3) {
  transition-delay: .19s;
  opacity: 1;
  transform: none
}

[data-stagger].staggered>*:nth-child(4) {
  transition-delay: .26s;
  opacity: 1;
  transform: none
}

[data-stagger].staggered>*:nth-child(5) {
  transition-delay: .33s;
  opacity: 1;
  transform: none
}

[data-stagger].staggered>*:nth-child(6) {
  transition-delay: .40s;
  opacity: 1;
  transform: none
}

[data-stagger].staggered>*:nth-child(7) {
  transition-delay: .47s;
  opacity: 1;
  transform: none
}

[data-stagger].staggered>*:nth-child(8) {
  transition-delay: .54s;
  opacity: 1;
  transform: none
}

[data-stagger].staggered>*:nth-child(9) {
  transition-delay: .61s;
  opacity: 1;
  transform: none
}

[data-stagger].staggered>*:nth-child(10) {
  transition-delay: .68s;
  opacity: 1;
  transform: none
}

/* Responsive */
@media(max-width:991px) {

  .nav-links,
  .nav-actions .btn {
    display: none
  }

  .hamburger {
    display: flex
  }

  .g4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .g5 {
    grid-template-columns: repeat(3, 1fr)
  }

  .parts-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .biz-cards {
    grid-template-columns: 1fr
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .proc-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
  }

  .proc-steps::before {
    display: none
  }

  .contact-lay {
    grid-template-columns: 1fr
  }

  .testi-grid {
    grid-template-columns: 1fr 1fr
  }

  .grade-cards {
    grid-template-columns: 1fr
  }

  .vals-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .comp-table {
    display: none
  }

  .g3 {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:767px) {
  :root {
    --sec-pad: 3rem
  }

  .g2,
  .g3 {
    grid-template-columns: 1fr
  }

  .g5,
  .parts-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .feat-grid {
    grid-template-columns: 1fr
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

  .vals-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .hero__ctas {
    flex-direction: column
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center
  }

  .cta-btns {
    flex-direction: column;
    align-items: center
  }

  .breadcrumb {
    display: none
  }
}

@media(max-width:575px) {
  :root {
    --pad: 1.125rem
  }

  .trust-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .vals-grid {
    grid-template-columns: 1fr 1fr
  }
}

/* Utilities */
.mb-1 {
  margin-bottom: .5rem
}

.mb-2 {
  margin-bottom: 1rem
}

.mb-3 {
  margin-bottom: 1.5rem
}

.mb-4 {
  margin-bottom: 2rem
}

.mt-2 {
  margin-top: 1rem
}

.mt-3 {
  margin-top: 1.5rem
}

.mt-4 {
  margin-top: 2rem
}

.d-flex {
  display: flex
}

.align-c {
  align-items: center
}

.gap-1 {
  gap: .5rem
}

.gap-2 {
  gap: 1rem
}

.gap-3 {
  gap: 1.5rem
}

.flex-wrap {
  flex-wrap: wrap
}

.justify-c {
  justify-content: center
}

.justify-b {
  justify-content: space-between
}

.w-100 {
  width: 100%
}

/* =============================================
   REAL REVIEW (FSH_Melon) — Featured Card
   ============================================= */
.testi-card--featured {
  max-width: 820px;
  margin-inline: auto;
  border-color: rgba(245, 193, 0, .25);
  background: linear-gradient(135deg, #1a1a00, var(--c-dark2));
}

.testi-top-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testi-avatar--lg {
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #F5C100, #D4A800);
  color: #000;
}

.testi-meta {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.testi-meta strong {
  font-size: 1rem;
}

.testi-meta span {
  font-size: .8rem;
  color: var(--c-gray);
}

.testi-platform {
  font-size: .75rem;
  color: var(--c-gray);
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-top: .1rem;
}

.testi-platform i {
  color: #EA4335;
}

.testi-time {
  font-size: .82rem;
  color: var(--c-gray);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .75rem;
}

.testi-headline {
  font-size: 1.05rem;
  margin-bottom: .85rem;
  color: var(--c-red);
  font-weight: 700;
}

.testi-text {
  color: rgba(255, 255, 255, .82);
  line-height: 1.85;
  font-size: .92rem;
}

/* Phone numbers — always LTR direction */
.foot-contact-i span[dir="ltr"],
.contact-info-val[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

/* RTL: flip the contact row order so icon stays on right */
html[dir="rtl"] .foot-contact-i {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .foot-contact-i span[dir="ltr"] {
  text-align: left;
}

/* RTL: contact page info cards phone align */
html[dir="rtl"] .contact-info-val {
  text-align: right;
}


/* ============================================================
   GALLERY & MOBILE RESPONSIVE FIXES
   ============================================================ */

/* Mobile Responsive Grids */
@media (max-width: 900px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .mobile-menu {
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

@media (max-width: 768px) {

  .g2,
  .g3 {
    grid-template-columns: 1fr !important;
  }

  .feat-grid--5 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .parts-mini {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-banner__content {
    text-align: center;
  }

  .cta-btns {
    justify-content: center;
  }

  .hero__title {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .parts-mini {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-grid--5 {
    grid-template-columns: 1fr !important;
  }
}

/* Gallery Layout */
.gallery-loader {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--c-gray);
}

.gallery-empty {
  text-align: center;
  padding: 4rem 1rem;
  border: 1px dashed rgba(255, 255, 255, .2);
  border-radius: var(--r);
  color: var(--c-gray);
  max-width: 600px;
  margin: 0 auto;
}

.gallery-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, .2);
}

.gallery-empty-cat {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--c-gray);
  grid-column: 1 / -1;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.gallery-tab {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .8);
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery-tab:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.gallery-tab.active {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #000;
  font-weight: 700;
}

.gallery-tab-count {
  background: rgba(0, 0, 0, .2);
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  font-size: 0.75rem;
}

.gallery-tab.active .gallery-tab-count {
  background: rgba(0, 0, 0, .15);
  color: #000;
}

/* Masonry / Grid for Images */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 2rem;
  color: #fff;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
  touch-action: none;
}

.lb-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.lb-img {
  max-width: 100%;
  max-height: calc(85vh - 50px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

.lb-caption {
  color: #fff;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 1rem;
}

.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-close:hover {
  opacity: 1;
}

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2001;
  transition: background 0.2s, transform 0.2s;
}

.lb-prev:hover,
.lb-next:hover {
  background: var(--c-red);
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.lb-prev {
  left: 1rem;
}

.lb-next {
  right: 1rem;
}

@media (max-width: 768px) {

  .lb-prev,
  .lb-next {
    display: none;
    /* Rely on swipe for mobile */
  }

  .lb-close {
    top: 1rem;
    right: 1rem;
  }
}

/* ============================================================
   MOBILE RESPONSIVENESS (OVERFLOW & GRID FIXES)
   ============================================================ */
@media (max-width: 900px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .biz-cards {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .btn.btn-outline {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {

  /* Flatten Grids */
  .g2,
  .g3,
  .g5,
  .stats-grid,
  .ct-lay {
    grid-template-columns: 1fr !important;
  }

  /* Feature items */
  .feat-grid,
  .feat-grid--5 {
    grid-template-columns: 1fr !important;
  }

  .feat-item {
    padding: 1.5rem !important;
  }

  /* Lists & Cards */
  .parts-mini {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Tables */
  .comp-table th,
  .comp-table td {
    font-size: 0.85rem;
    padding: 0.75rem;
  }

  .comp-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Padding */
  :root {
    --pad: 1.25rem;
    --sec-pad: 3.5rem;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .parts-mini {
    grid-template-columns: 1fr;
  }

  .stat-item+.stat-item::before {
    display: none;
  }

  .stats-grid {
    gap: 1.5rem;
  }
}