/* =========================================================
   ServiRapide — style.css
   ========================================================= */
:root {
  --dark:   #04342C;
  --mid:    #0A5242;
  --green:  #1D9E75;
  --gold:   #F5A623;
  --light:  #E8F5F0;
  --bg:     #F5FDF9;
  --text:   #0A1A16;
  --muted:  #64748B;
  --border: #C8E6DA;
  --white:  #FFFFFF;
  --shadow: 0 18px 50px rgba(4,52,44,.12);
  --radius: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--green);
  line-height: 1.65;
  padding-bottom: 0;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-dark {
  background: linear-gradient(135deg, var(--dark), var(--mid));
  color: var(--white);
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-image: url('servirapide2.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 52, 44, 0.82) 0%,
    rgba(4, 52, 44, 0.60) 60%,
    rgba(4, 52, 44, 0.40) 100%
  );
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.1; }
.section-title { text-align: center; margin-bottom: 52px; }
.section-title.left { text-align: left; margin-bottom: 24px; }
.section-title.light h2 { color: var(--white); }
.section-title.light p  { color: rgba(255,255,255,.72); }
.section-title h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 14px;
}
.section-title p {
  color: var(--muted);
  font-size: 16px;
  max-width: 660px;
  margin: 0 auto;
}
.section-title.left p { margin-left: 0; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 900;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(29,158,117,.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(29,158,117,.36); }
.btn-outline-light {
  border: 2px solid rgba(255,255,255,.38);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn-outline-nav {
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.88);
  background: transparent;
  padding: 8px 16px;
  font-size: 13px;
}
.btn-outline-nav:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,.28);
  font-size: 16px;
}
.btn-whatsapp:hover { transform: translateY(-2px); background: #20bb5a; }
.full { width: 100%; }

/* ── BADGE ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}
.badge.green { background: var(--green); border: none; color: #fff; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav-wrap {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex-shrink: 0;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--green);
}
.brand strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  line-height: 1;
  color: #fff;
}
.brand small {
  display: block;
  color: var(--green);
  font-size: 11px;
  margin-top: 3px;
}
.desktop-nav { display: flex; gap: 2px; align-items: center; }
.desktop-nav a {
  color: rgba(255,255,255,.72);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 11px;
  border-radius: 10px;
  transition: .2s;
}
.desktop-nav a:hover,
.desktop-nav a.active { background: rgba(255,255,255,.1); color: #fff; }
.desktop-nav a.active { color: var(--green); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-btn {
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  background: transparent;
  border-radius: 10px;
  padding: 7px 13px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  transition: .2s;
  font-family: 'Outfit', sans-serif;
}
.lang-btn:hover { background: rgba(255,255,255,.12); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(29,158,117,.38), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(29,158,117,.25), transparent 36%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: center;
  padding: 80px 0 70px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900;
  letter-spacing: -1.5px;
  max-width: 720px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 36px;
  padding: 40px 32px;
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
  text-align: center;
}
.hero-logo-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 44px rgba(0,0,0,.2);
  overflow: hidden;
  padding: 8px;
}
.hero-logo { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.hero-card h3 { font-size: 26px; margin-bottom: 6px; }
.hero-card p  { font-size: 14px; color: rgba(255,255,255,.72); margin: 0; }

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar { background: var(--dark); color: #fff; padding: 28px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-grid > div { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stats-icon { font-size: 22px; color: var(--green); margin-bottom: 4px; }
.stats-grid strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.stats-grid span { color: rgba(255,255,255,.58); font-size: 13px; }

/* ── ABOUT ──────────────────────────────────────────────── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.about-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 34px 28px;
  border: 1.5px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.about-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.about-icon {
  width: 58px;
  height: 58px;
  background: var(--light);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--green);
  margin-bottom: 18px;
}
.about-card h3 { font-size: 18px; color: var(--dark); margin-bottom: 10px; }
.about-card p  { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── SERVICES ───────────────────────────────────────────── */
.services-section { background: var(--bg); }
.services-category-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 14px 20px;
  background: var(--light);
  border-radius: 16px;
  border-left: 4px solid var(--green);
}
.services-category-label i { font-size: 20px; color: var(--green); }
.services-category-label strong { display: block; font-size: 15px; color: var(--dark); }
.services-category-label small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.member-label { border-left-color: var(--gold); margin-top: 44px; }
.member-label i { color: var(--gold); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 0;
}
.service-grid--3 { grid-template-columns: repeat(3, 1fr); }
.service-card--wide { grid-column: span 1; }

@media (min-width: 921px) {
  .service-grid .service-card:nth-child(5) { grid-column: 2 / 4; }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border: 1.5px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(4,52,44,.16); }
.service-card--member { border-color: rgba(245,166,35,.25); }
.service-img-wrap { width: 100%; height: 180px; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-img { transform: scale(1.06); }
.service-body { padding: 20px 22px 24px; }
.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--light);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--green);
  margin-bottom: 14px;
}
.service-icon--gold { background: rgba(245,166,35,.12); color: var(--gold); }
.service-card h3 { font-size: 17px; color: var(--dark); margin-bottom: 7px; }
.service-card p  { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ── GALLERY ────────────────────────────────────────────── */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.photo-box {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.photo-box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.photo-box:hover img { transform: scale(1.05); }
.photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(4,52,44,.82));
  color: #fff;
  padding: 28px 16px 14px;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── PRICING ────────────────────────────────────────────── */
.pricing-section { background: var(--bg); }
.pricing-fee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  margin-top: 16px;
}
.pricing-fee-badge i { color: var(--green); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-card:hover { transform: translateY(-5px); }
.price-card.featured {
  border-color: var(--green);
  background: linear-gradient(160deg, #fff, var(--light));
}
.price-card--premium {
  border-color: var(--gold) !important;
  background: linear-gradient(160deg, #fff, rgba(245,166,35,.07)) !important;
}
.popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 5px 18px;
  font-weight: 900;
  font-size: 11px;
  white-space: nowrap;
}
.plan-tag {
  width: 36px;
  height: 36px;
  background: var(--light);
  color: var(--green);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 4px;
}
.plan-tag--premium { background: rgba(245,166,35,.15); color: var(--gold); }
.plan-type {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.price-card h3 { font-size: 20px; color: var(--dark); margin-top: 2px; }
.price {
  font-family: 'Sora', sans-serif;
  font-weight: 900;
  font-size: 38px;
  color: var(--dark);
  line-height: 1;
  margin: 6px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.featured .price { color: var(--green); }
.price-card--premium .price { color: var(--gold); }
.price small {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.price-card ul { margin: 10px 0 16px; display: flex; flex-direction: column; gap: 8px; }
.price-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
}
.price-card li i { color: var(--green); font-size: 12px; flex-shrink: 0; }
.price-card .btn { margin-top: auto; }

/* ── SUBSCRIPTION MODEL ─────────────────────────────────── */
.sub-model-section { background: linear-gradient(135deg, var(--dark), var(--mid)); }
.sub-model-grid {
  display: grid;
  grid-template-columns: .45fr .55fr;
  gap: 36px;
  align-items: start;
}
.sub-fee-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.sub-fee-icon {
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  font-size: 28px;
  color: var(--green);
  margin: 0 auto 18px;
}
.sub-fee-card h3 { font-size: 20px; margin-bottom: 10px; }
.sub-fee-card p  { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.7; }
.sub-fee-amount {
  margin-top: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.sub-fee-amount small {
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  color: rgba(255,255,255,.6);
  font-weight: 700;
}
.sub-table-wrap h3 { font-size: 20px; margin-bottom: 20px; }
.sub-table { width: 100%; border-collapse: collapse; }
.sub-table tr { border-bottom: 1px solid rgba(255,255,255,.12); }
.sub-table tr:last-child { border: none; }
.sub-table td {
  padding: 13px 10px;
  font-size: 14px;
  color: rgba(255,255,255,.82);
  vertical-align: middle;
}
.sub-cat-badge {
  width: 34px;
  height: 34px;
  background: var(--green);
  border-radius: 10px;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: #fff !important;
  line-height: 34px;
  padding: 0 !important;
}
.sub-price {
  text-align: right;
  font-weight: 900;
  font-size: 15px;
  color: var(--green) !important;
  white-space: nowrap;
}
.sub-price small { font-size: 11px; color: rgba(255,255,255,.55); font-weight: 600; }

/* ── STEPS ──────────────────────────────────────────────── */
.steps-section .section-title { margin-bottom: 48px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.step-card {
  text-align: center;
  padding: 10px 6px;
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--green);
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 16px; margin-bottom: 8px; }
.step-card p  { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.6; }

/* ── DASHBOARD ──────────────────────────────────────────── */
.dashboard-section { background: var(--bg); }
.dashboard-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: center;
}
.dashboard-card {
  background: var(--white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.dash-head h3 { font-size: 21px; color: var(--dark); }
.dash-head > div > span {
  display: inline-block;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 4px 13px;
  font-size: 12px;
  font-weight: 900;
  margin-top: 7px;
}
.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px var(--light);
  flex-shrink: 0;
  margin-top: 4px;
}
.next-box {
  background: var(--light);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 22px;
}
.next-box small { display: block; color: var(--muted); font-weight: 700; font-size: 12px; margin-bottom: 5px; }
.next-box strong { font-size: 15px; color: var(--dark); }
.dashboard-card h4 { margin-bottom: 14px; color: var(--dark); font-size: 15px; }
.progress-row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 13px;
  margin: 14px 0 5px;
}
.progress-row em {
  font-style: normal;
  color: var(--muted);
  background: var(--bg);
  border-radius: 999px;
  padding: 1px 9px;
}
.progress { height: 9px; background: var(--light); border-radius: 999px; overflow: hidden; }
.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--mid));
  border-radius: 999px;
  transition: width .6s ease;
}
.history-box { margin-top: 20px; border-top: 1px solid var(--border); padding-top: 18px; }
.history-box strong { font-size: 14px; color: var(--dark); }
.history-box p { color: var(--muted); font-size: 13px; margin-top: 7px; }

/* ── REGISTER ───────────────────────────────────────────── */
.register-section { background: linear-gradient(135deg, #fff, var(--bg)); }
.form-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.form-note {
  margin-top: 16px;
  background: var(--light);
  border-left: 4px solid var(--green);
  padding: 13px 16px;
  border-radius: 12px;
  color: var(--dark) !important;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-note i { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.subscribe-form {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.subscribe-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--dark);
  font-size: 13px;
}
.subscribe-form input,
.subscribe-form select {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 13px;
  padding: 13px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  outline: none;
  background: #fff;
  transition: border-color .2s;
}
.subscribe-form input:focus,
.subscribe-form select:focus { border-color: var(--green); }
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.success-message {
  background: var(--light);
  border: 1.5px solid var(--green);
  color: var(--dark);
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.success-message i { color: var(--green); font-size: 18px; flex-shrink: 0; }

/* ── CONTACT ────────────────────────────────────────────── */
.contact-section h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.contact-section > .container > div > p { color: rgba(255,255,255,.75); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.contact-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-item i {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.12);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--green);
  flex-shrink: 0;
}
.contact-item .fa-whatsapp { color: #25D366; }
.contact-item span { display: block; font-size: 11px; color: rgba(255,255,255,.55); font-weight: 700; margin-bottom: 2px; }
.contact-item strong { font-size: 15px; color: #fff; }

/* ── MOBILE TABBAR ──────────────────────────────────────── */
.mobile-tabbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: var(--dark);
  z-index: 200;
  box-shadow: 0 -5px 25px rgba(0,0,0,.22);
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-tabbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.55);
  font-size: 20px;
  flex: 1;
  padding: 8px 0;
  transition: color .2s;
}
.mobile-tabbar a span { font-size: 10px; font-weight: 800; }
.mobile-tabbar a.active { color: var(--green); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.7); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 60px 0 50px;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { width: 52px; height: 52px; border-radius: 16px; object-fit: cover; }
.footer-brand strong { font-size: 18px; color: #fff; font-family: 'Sora', sans-serif; }
.footer-brand > p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--green); color: #fff; }
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.58);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--green); }
.footer-contact-mini {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-mini p {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-mini i { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0 90px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-align: center;
}

/* ── SCROLL FADE ANIMATIONS ─────────────────────────────── */
.fade-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE: TABLET ─────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .header-actions .btn-outline-nav {  display: inline-flex;
    padding: 7px 12px;
    font-size: 12px; }
  .hero-inner { grid-template-columns: 1fr; padding: 64px 0 52px; }
  .hero-card { max-width: 400px; }
  .about-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid--3 { grid-template-columns: 1fr 1fr; }
  .service-grid .service-card:nth-child(5) { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-layout { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sub-model-grid { grid-template-columns: 1fr; }
  .mobile-tabbar { display: flex; }
  .footer-bottom { padding-bottom: 86px; }
}

@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .section { padding: 62px 0; }
  .hero h1 { font-size: 34px; letter-spacing: -1px; }
  .hero p { font-size: 15px; }
  .stats-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid--3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .two-cols { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .subscribe-form, .dashboard-card, .price-card { padding: 22px; }
  .brand small { display: none; }
  .header-actions .btn-sm { display: none; }
  .hero-logo-wrap { width: 130px; height: 130px; }
}

/* LionTech footer credit */
.footer-liontech {
  margin-top: 10px;
}
.footer-liontech a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
.footer-liontech a:hover {
  color: var(--gold);
}
.liontech-logo {
  height: 24px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}
