/* ==========================================================================
   ZIK — Software House & Digital Solutions Agency
   Global stylesheet — design system, layout, components
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

/* ---- Design tokens ---------------------------------------------------- */
:root {
  /* Brand — Blue + White */
  --primary: #1D4ED8;
  /* core brand blue */
  --primary-dark: #0B2E6B;
  /* deep navy — headers, footer, dark sections */
  --primary-darker: #071D47;
  --primary-light: #3B82F6;
  /* hover / lighter accents */
  --accent: #38BDF8;
  /* sky accent — highlights, icons on dark bg */
  --accent-soft: #E0F2FE;

  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-soft: #F5F8FF;
  --bg-soft-2: #EEF3FF;
  --border: #E2E8F0;
  --border-soft: #EDF1FA;

  --text: #0B1220;
  --text-muted: #55617A;
  --text-faint: #8792A6;

  --success: #16A34A;
  --danger: #DC2626;

  --font-head: 'Sora', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-w: 1200px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.06);
  --shadow: 0 8px 24px rgba(11, 46, 107, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 46, 107, 0.14);
}

/* ---- Reset -------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--text);
}

p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 56px 0;
}

@media (max-width: 900px) {
  .section {
    padding: 60px 0;
  }
}

.section-dark {
  background: var(--primary-darker);
  color: var(--white);
}

.section-dark p {
  color: #B7C6EA;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-soft {
  background: var(--bg-soft);
}

/* ---- Type scale ----------------------------------------------------------*/
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent-soft);
  border: 1px solid #CFE4FF;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-dark .eyebrow {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.3);
  color: var(--accent);
}

h1.display {
  font-size: 48px;
  letter-spacing: -0.02em;
}

h2.h2 {
  font-size: 34px;
  letter-spacing: -0.015em;
}

h3.h3 {
  font-size: 22px;
}

.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
}

@media (max-width: 720px) {
  h1.display {
    font-size: 34px;
  }

  h2.h2 {
    font-size: 26px;
  }
}

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

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

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #1B44BE;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.section-dark .btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.section-dark .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}

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

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- Badges / pills ------------------------------------------------------*/
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--bg-soft-2);
  color: var(--primary);
  border: 1px solid #DCE7FF;
}

.badge-demo {
  background: #FFF7E6;
  color: #A5690A;
  border-color: #FCE3B0;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 120px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  color: var(--text);
}

.brand-name span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links>li {
  position: relative;
}

.nav-links a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  background: none;
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}

.nav-links a:hover,
.nav-trigger:hover,
.nav-trigger.is-open,
.nav-links a.is-active {
  color: var(--primary);
  background: var(--bg-soft-2);
}

.nav-trigger i.chev {
  font-size: 11px;
  transition: transform .2s ease;
}

.nav-trigger.is-open i.chev {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 340px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}

.nav-links>li.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 10px;
  transition: background .15s ease;
}

.dropdown-item:hover {
  background: var(--bg-soft-2);
}

.dropdown-item .icn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  background: var(--bg-soft-2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.dropdown-item .ttl {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.dropdown-item .dsc {
  font-size: 12px;
  color: var(--text-faint);
}

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

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1080px) {

  .nav-links,
  .nav-cta-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--white);
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
  padding: 20px;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.mobile-close {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-links>li {
  border-bottom: 1px solid var(--border-soft);
}

.mobile-links a,
.mobile-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 2px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
}

.mobile-links a i.lead-icon,
.mobile-trigger i.lead-icon {
  color: var(--primary);
  margin-right: 10px;
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding-left: 14px;
}

.mobile-links>li.is-open .mobile-dropdown {
  max-height: 400px;
  padding-bottom: 10px;
}

.mobile-dropdown a {
  padding: 10px 2px;
  font-size: 14.5px;
  font-weight: 500;
}

.mobile-cta {
  margin-top: 20px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding: 76px 0 90px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-art {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  min-height: 360px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}

.hero-art .glow-1 {
  width: 240px;
  height: 240px;
  background: var(--accent);
  top: -60px;
  right: -60px;
}

.hero-art .glow-2 {
  width: 220px;
  height: 220px;
  background: #6366F1;
  bottom: -70px;
  left: -50px;
}

.hero-art .hero-badge-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 30px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 18px;
  color: var(--white);
  backdrop-filter: blur(6px);
}

.hero-stat-card .num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
}

.hero-stat-card .lbl {
  font-size: 12.5px;
  color: #CBD9F5;
  margin-top: 4px;
}

.trust-strip {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}

.trust-strip .lbl-row {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
  text-align: center;
}

.service-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
}

.service-chip i {
  color: var(--primary);
}

/* ==========================================================================
   CARDS / GRIDS
   ========================================================================== */
.grid {
  display: grid;
  gap: 26px;
}

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

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

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

@media (max-width: 980px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #D8E4FF;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bg-soft-2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.card ul.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 9px;
}

.card ul.check-list li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
  margin-top: 8px;
}

/* Solutions / audience cards */
.solution-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.solution-card .num {
  font-family: var(--font-head);
  font-weight: 800;
  color: #C7D6FA;
  font-size: 30px;
  margin-bottom: 6px;
}

/* Portfolio / case study cards */
.work-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.work-card .thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-soft-2), var(--accent-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 34px;
  position: relative;
}

.work-card .thumb .badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.work-card .body {
  padding: 22px;
}

.work-card .cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 6px;
}

/* Team card */
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
}

.team-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  background: #f3f4f6;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.team-role {
  color: var(--primary);
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 12px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 720px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-strip .num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
}

.stat-strip .lbl {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.section-dark .stat-strip .num {
  color: var(--accent);
}

.section-dark .stat-strip .lbl {
  color: #B7C6EA;
}

/* Steps / process */
.step-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .step-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .step-row {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding-left: 2px;
}

.step .step-num {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 16px;
}

/* Pricing / consult banner */
.consult-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.consult-banner h2,
.consult-banner p {
  color: var(--white);
}

.consult-banner p {
  color: #CBD9F5;
}

/* Blog cards */
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.blog-card .thumb {
  aspect-ratio: 16/9;
  background: var(--bg-soft-2);
}

.blog-card .body {
  padding: 20px;
}

.blog-card .meta {
  font-size: 12.5px;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 17px;
}

/* Forms */
.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

.form-note {
  font-size: 12.5px;
  color: var(--text-faint);
}

.alert {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}

.alert-success {
  background: #ECFDF3;
  color: #067647;
  border: 1px solid #ABEFC6;
}

.alert-error {
  background: #FEF3F2;
  color: #B42318;
  border: 1px solid #FECDCA;
}

/* Contact info tiles */
.contact-tile {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-tile .icn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-soft-2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pending-tag {
  font-size: 11px;
  font-weight: 700;
  color: #A5690A;
  background: #FFF7E6;
  border: 1px solid #FCE3B0;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--primary-darker);
  color: #C7D3EC;
  padding-top: 64px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 34px;
  }

  .footer-grid>div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-brand span {
  color: var(--accent);
}

.footer-text {
  font-size: 14px;
  color: #9FB0D6;
  max-width: 320px;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-size: 14px;
  color: #C7D3EC;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  position: relative;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
  font-size: 12.5px;
  color: #8093BE;
}

.footer-bottom a {
  color: #8093BE;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 400;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform .2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-code {
  font-family: var(--font-head);
  font-size: 110px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}