/* ═══════════════════════════════════════════════════════
   PROFITRACK ACCOUNTING — SHARED STYLESHEET v2
   ═══════════════════════════════════════════════════════ */

/* Arabic font (Cairo) + RTL layout overrides */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');
@import url('rtl.css');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #000000;
  --navy2:      #0D0D0D;
  --navy3:      #1A1A1A;
  --gold:       #0096DB;
  --gold2:      #33ACE6;
  --gold-light: rgba(0,150,219,.12);
  --light:      #F5F7FA;
  --white:      #FFFFFF;
  --text:       #2D3748;
  --muted:      #718096;
  --border:     #E2E8F0;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.18);
  --shadow-gold:0 8px 32px rgba(0,150,219,.25);
  --transition: all .28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }

/* ─── SCROLL PROGRESS BAR ─── */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transition: width .08s linear;
}

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5 { line-height: 1.2; }
.serif { font-family: 'Playfair Display', serif; }

/* ─── UTILITIES ─── */
.container   { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }
.text-center { text-align: center; }
.text-white  { color: #fff; }
.text-muted  { color: var(--muted); }
.text-navy   { color: var(--navy); }
.text-gold   { color: var(--gold); }
.mt-auto     { margin-top: auto; }

.tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
  animation: tagPop .5s cubic-bezier(.34,1.56,.64,1) both;
}
.tag-dark {
  background: rgba(0,150,219,.2);
  color: var(--gold2);
}

@keyframes tagPop {
  from { opacity: 0; transform: scale(.7) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
h2.section-title.on-dark { color: var(--white); }

p.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}
p.section-sub.on-dark { color: rgba(255,255,255,.65); }

/* ─── GRID ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: .93rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
  border-radius: inherit;
}
.btn:active::after { background: rgba(255,255,255,.15); }

.btn-primary  { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #fff; box-shadow: 0 4px 16px rgba(0,150,219,.3); }
.btn-primary:hover  { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,150,219,.45); filter: brightness(1.06); }
.btn-navy    { background: var(--navy); color: #fff; }
.btn-navy:hover    { background: var(--navy2); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-white   { background: #fff; color: var(--navy); box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.btn-white:hover   { background: var(--light); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,.15); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: .83rem; }

/* ─── NAVBAR ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .3s, background .3s;
}
nav.scrolled {
  background: rgba(0,0,0,.99);
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
  transition: height .3s;
}
nav.scrolled .nav-inner { height: 62px; }

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .2s;
}
.logo:hover { opacity: .85; }
.logo img {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); background: rgba(0,150,219,.08); }
.nav-links > li > a .caret { font-size: .65rem; transition: transform .25s; }
.nav-links > li:hover > a .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(11,31,58,.2);
  min-width: 720px;
  padding: 32px 24px 24px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  z-index: 600;
  animation: dropdownIn .2s cubic-bezier(.4,0,.2,1);
  transform-origin: top left;
}
.nav-links > li:hover .dropdown { display: grid; }

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-8px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.dropdown-group { padding: 8px; }
.dropdown-group-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: .86rem;
  color: var(--text);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--light); color: var(--navy); transform: translateX(3px); }
.dropdown a .d-icon { font-size: 1rem; width: 22px; flex-shrink: 0; }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { color: var(--gold2); font-weight: 600; font-size: .88rem; text-decoration: none; white-space: nowrap; transition: color .2s; }
.nav-phone:hover { color: var(--gold); }

/* Mobile nav */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s cubic-bezier(.4,0,.2,1); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  animation: slideDown .25s ease;
}
.mobile-menu.open { display: flex; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
  padding: 12px 24px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .93rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); background: rgba(255,255,255,.04); padding-left: 30px; }
.mobile-menu .m-section {
  padding: 8px 24px 4px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  font-weight: 700;
}

/* ─── INNER PAGE HERO ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 60%, #0096db 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* Floating orbs */
.page-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  right: -100px; top: -150px;
  background: radial-gradient(circle, rgba(0,150,219,.12) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(20px) scale(1.05); }
}

.page-hero-inner { position: relative; z-index: 1; }
.page-hero-inner > * {
  animation: heroFadeUp .65s cubic-bezier(.4,0,.2,1) both;
}
.page-hero-inner > *:nth-child(1) { animation-delay: .0s; }
.page-hero-inner > *:nth-child(2) { animation-delay: .08s; }
.page-hero-inner > *:nth-child(3) { animation-delay: .16s; }
.page-hero-inner > *:nth-child(4) { animation-delay: .24s; }
.page-hero-inner > *:nth-child(5) { animation-delay: .32s; }
.page-hero-inner > *:nth-child(6) { animation-delay: .40s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a, .breadcrumb span { font-size: .82rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero h1 em { font-style: normal; color: var(--gold2); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.88); max-width: 580px; margin-bottom: 28px; line-height: 1.7; text-shadow: 0 1px 0 rgba(0,0,0,.12); }
.page-hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.page-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,150,219,.16);
  border: 1px solid rgba(0,150,219,.28);
  color: rgba(255,248,235,.96);
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 99px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.hero-badge-pill:hover {
  background: rgba(0,150,219,.2);
  border-color: rgba(0,150,219,.4);
  color: var(--gold2);
  transform: translateY(-1px);
}

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(0,150,219,.2); }
.card-accent { border-top: 3px solid var(--gold); }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0,150,219,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,.14); border-color: rgba(0,150,219,.25); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(0,150,219,.18), rgba(0,150,219,.06));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  position: relative; z-index: 1;
}
.service-card:hover .service-icon { transform: scale(1.12) rotate(-3deg); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; position: relative; z-index: 1; }
.service-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; flex: 1; position: relative; z-index: 1; }
.service-card ul { list-style: none; margin-top: 16px; }
.service-card ul li {
  font-size: .85rem; color: var(--muted);
  padding: 4px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.service-card ul li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: .85rem; font-weight: 600;
  text-decoration: none; margin-top: 18px;
  transition: var(--transition);
  position: relative; z-index: 1;
}
.service-card .card-link:hover { gap: 12px; }

/* Feature card */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(0,150,219,.3); transform: translateX(4px); }
.feature-icon {
  width: 50px; height: 50px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.feature-card:hover .feature-icon { transform: scale(1.12) rotate(-5deg); }
.feature-body h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-body p { font-size: .86rem; color: var(--muted); line-height: 1.6; }

/* Stat card */
.stat-box {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.stat-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.stat-box:hover::before { transform: scaleX(1); }
.stat-box strong {
  display: block; font-size: 2.4rem; font-weight: 800;
  color: var(--gold); line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-box .stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-box span { font-size: .85rem; color: var(--muted); margin-top: 8px; display: block; }
.stat-box .stat-label {
  font-size: .92rem;
  color: var(--muted);
  margin-top: 10px;
  display: block;
  line-height: 1.45;
}
.stat-box.on-dark { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.stat-box.on-dark strong { -webkit-text-fill-color: var(--gold2); }
.stat-box.on-dark span { color: rgba(255,255,255,.55); }
.stat-box.on-dark .stat-num { -webkit-text-fill-color: var(--gold2); }
.stat-box.on-dark .stat-label { color: rgba(255,255,255,.82); }

/* ─── PROCESS STEPS ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), var(--gold), transparent);
  opacity: .4;
  z-index: 0;
}
.process-step { text-align: center; padding: 28px 20px; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px;
  background: rgba(0,150,219,.1);
  border: 2px solid rgba(0,150,219,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
  color: var(--gold2);
  margin: 0 auto 20px;
  transition: var(--transition);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(0,150,219,.15);
  transition: var(--transition);
}
.process-step:hover .step-num { transform: scale(1.1); background: rgba(0,150,219,.18); border-color: var(--gold); }
.process-step:hover .step-num::after { inset: -10px; border-color: rgba(0,150,219,.2); }
.process-dark .step-num { background: rgba(0,150,219,.15); border-color: rgba(0,150,219,.4); }
.process-step h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.process-dark .process-step h4 { color: var(--white); }
.process-dark .process-step p { color: rgba(255,255,255,.55); }

/* ─── TESTIMONIALS ─── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote-mark { font-size: 4rem; line-height: .8; color: var(--gold); opacity: .18; font-family: Georgia,serif; position: absolute; top: 16px; right: 24px; }
.stars { color: var(--gold); font-size: .85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: .92rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.author-row { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: .88rem; flex-shrink: 0;
}
.author-info strong { display: block; font-size: .9rem; color: var(--navy); font-weight: 700; }
.author-info span { font-size: .78rem; color: var(--muted); }

/* ─── MARQUEE STRIP ─── */
.strip { background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold)); padding: 14px 0; overflow: hidden; }
.strip-inner { display: flex; gap: 48px; animation: marquee 28s linear infinite; width: max-content; }
.strip-item { font-size: .85rem; font-weight: 700; color: var(--navy); white-space: nowrap; display: flex; align-items: center; gap: 10px; }
.strip-item::before { content: '◆'; font-size: .6rem; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy3) 50%, #0096db);
  padding: 88px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  left: -200px; bottom: -200px;
  background: radial-gradient(circle, rgba(0,150,219,.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  right: -100px; top: -150px;
  background: radial-gradient(circle, rgba(0,150,219,.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-section p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative; z-index: 1;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── CONTACT FORM ─── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .93rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  background: var(--light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,150,219,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ─── BLOG ─── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.14); border-color: rgba(0,150,219,.2); }
.blog-card-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy3));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-card-thumb .thumb-pattern {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-2.5h5V20.5H20zm-2 5h-1v-2h1v2zm-4 0h-1v-2h1v2zm-4 0h-1v-2h1v2zm11.5 0H19v-2h2.5v2z'/%3E%3C/g%3E%3C/svg%3E");
}
.blog-card-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.5));
  opacity: 0;
  transition: opacity .3s;
}
.blog-card:hover .blog-card-thumb::after { opacity: 1; }
.blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .07em;
  z-index: 1;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.blog-meta span { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.blog-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; transition: color .2s; }
.blog-card:hover .blog-card-body h3 { color: var(--gold); }
.blog-card-body p { font-size: .86rem; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: .85rem; font-weight: 600; text-decoration: none; margin-top: 16px; transition: var(--transition); }
.blog-read-more:hover { gap: 12px; }

/* Blog article */
.blog-article { max-width: 760px; }
.blog-article .lead { font-size: 1.1rem; color: var(--text); line-height: 1.8; margin-bottom: 32px; font-weight: 500; border-left: 4px solid var(--gold); padding-left: 20px; }
.blog-article h2 { font-family: 'Playfair Display',serif; font-size: 1.8rem; color: var(--navy); margin: 40px 0 16px; }
.blog-article h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 28px 0 12px; }
.blog-article h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 20px 0 8px; }
.blog-article p { font-size: .97rem; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.blog-article ul, .blog-article ol { margin: 16px 0 16px 24px; }
.blog-article li { font-size: .95rem; color: var(--text); line-height: 1.7; margin-bottom: 8px; }
.blog-article strong { color: var(--navy); }
.blog-callout {
  background: linear-gradient(135deg, rgba(0,150,219,.08), rgba(0,150,219,.04));
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 18px 24px;
  margin: 28px 0;
}
.blog-callout strong { color: var(--navy); font-size: .95rem; }
.blog-callout p { margin: 4px 0 0; font-size: .93rem; color: var(--text); }
.blog-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy3));
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  margin: 44px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.blog-cta-box::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  right: -80px; top: -80px;
  background: radial-gradient(circle, rgba(0,150,219,.12) 0%, transparent 60%);
}
.blog-cta-box h3 { font-family: 'Playfair Display',serif; font-size: 1.5rem; margin-bottom: 12px; position: relative; z-index: 1; }
.blog-cta-box p { color: rgba(255,255,255,.7); font-size: .93rem; margin-bottom: 22px; position: relative; z-index: 1; }
.blog-cta-box .btn { position: relative; z-index: 1; }

/* ─── ACCORDION (FAQ) ─── */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  background: none; border: none;
  font-family: inherit; font-size: .95rem; font-weight: 600;
  color: var(--navy); cursor: pointer; text-align: left; gap: 16px;
  transition: color .2s;
}
.accordion-btn:hover { color: var(--gold); }
.accordion-btn .acc-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform .35s cubic-bezier(.4,0,.2,1); color: var(--gold); }
.accordion-item.open .acc-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
}
.accordion-item.open .accordion-body { max-height: 600px; padding-bottom: 18px; }
.accordion-body p { font-size: .92rem; color: var(--muted); line-height: 1.75; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 72px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 56px; }
.footer-brand .logo { display: inline-flex; margin-bottom: 14px; }
.footer-brand .logo img { height: 54px; }
.footer-brand p { font-size: .86rem; line-height: 1.75; color: rgba(255,255,255,.45); max-width: 280px; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,.55);
  font-size: 0;
  transition: var(--transition);
}
.social-btn::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.social-btn[data-social="facebook"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.5 21v-8.2h2.8l.4-3.2h-3.2V7.5c0-.9.2-1.6 1.6-1.6h1.7V3.1c-.3 0-1.3-.1-2.4-.1-2.4 0-4 1.4-4 4.2v2.4H8v3.2h2.7V21h2.8Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.5 21v-8.2h2.8l.4-3.2h-3.2V7.5c0-.9.2-1.6 1.6-1.6h1.7V3.1c-.3 0-1.3-.1-2.4-.1-2.4 0-4 1.4-4 4.2v2.4H8v3.2h2.7V21h2.8Z'/%3E%3C/svg%3E");
}
.social-btn[data-social="instagram"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 3h10a4 4 0 0 1 4 4v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4Zm0 2C5.9 5 5 5.9 5 7v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H7Zm5 2.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 0 1 12 7.5Zm0 2A2.5 2.5 0 1 0 14.5 12 2.5 2.5 0 0 0 12 9.5Zm5.25-2.65a1.15 1.15 0 1 1-1.15 1.15 1.15 1.15 0 0 1 1.15-1.15Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 3h10a4 4 0 0 1 4 4v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4Zm0 2C5.9 5 5 5.9 5 7v10c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2H7Zm5 2.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 0 1 12 7.5Zm0 2A2.5 2.5 0 1 0 14.5 12 2.5 2.5 0 0 0 12 9.5Zm5.25-2.65a1.15 1.15 0 1 1-1.15 1.15 1.15 1.15 0 0 1 1.15-1.15Z'/%3E%3C/svg%3E");
}
.social-btn[data-social="linkedin"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.94 8.5H4V20h2.94V8.5ZM5.47 4A1.72 1.72 0 1 0 7.2 5.72 1.73 1.73 0 0 0 5.47 4ZM20 12.7c0-3.45-1.84-5.05-4.3-5.05A3.73 3.73 0 0 0 12.32 9.5V8.5H9.5c0 .66.04 11.5 0 11.5h2.82v-6.42c0-.34.03-.68.13-.93a2.31 2.31 0 0 1 2.16-1.54c1.52 0 2.13 1.16 2.13 2.86V20H20Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.94 8.5H4V20h2.94V8.5ZM5.47 4A1.72 1.72 0 1 0 7.2 5.72 1.73 1.73 0 0 0 5.47 4ZM20 12.7c0-3.45-1.84-5.05-4.3-5.05A3.73 3.73 0 0 0 12.32 9.5V8.5H9.5c0 .66.04 11.5 0 11.5h2.82v-6.42c0-.34.03-.68.13-.93a2.31 2.31 0 0 1 2.16-1.54c1.52 0 2.13 1.16 2.13 2.86V20H20Z'/%3E%3C/svg%3E");
}
.social-btn[data-social="whatsapp"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.5 11.8A8.5 8.5 0 0 0 6.1 5.7a8.37 8.37 0 0 0-2.5 6.02A8.52 8.52 0 0 0 4.75 16L3.5 20.5 8.1 19.3a8.47 8.47 0 0 0 3.9.95h.01a8.49 8.49 0 0 0 8.48-8.45Zm-8.48 7.02a7.03 7.03 0 0 1-3.58-.98l-.26-.16-2.73.72.73-2.66-.18-.27a7.04 7.04 0 1 1 6.02 3.35Zm3.86-5.27c-.21-.1-1.27-.62-1.47-.69-.2-.07-.35-.1-.5.1-.15.2-.57.69-.7.83-.13.15-.26.16-.48.05-.21-.1-.9-.33-1.72-1.06-.63-.56-1.06-1.25-1.18-1.46-.12-.2-.01-.31.09-.41.09-.09.21-.24.31-.36.1-.12.13-.2.2-.33.06-.12.03-.24-.02-.34-.05-.1-.5-1.2-.69-1.64-.18-.43-.37-.37-.5-.37h-.43c-.15 0-.39.06-.6.29-.2.22-.77.75-.77 1.83 0 1.08.79 2.13.9 2.28.1.15 1.55 2.37 3.75 3.33.52.22.93.36 1.25.46.52.16.99.14 1.36.09.42-.06 1.27-.52 1.45-1.03.18-.5.18-.93.13-1.03-.05-.08-.19-.13-.4-.24Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.5 11.8A8.5 8.5 0 0 0 6.1 5.7a8.37 8.37 0 0 0-2.5 6.02A8.52 8.52 0 0 0 4.75 16L3.5 20.5 8.1 19.3a8.47 8.47 0 0 0 3.9.95h.01a8.49 8.49 0 0 0 8.48-8.45Zm-8.48 7.02a7.03 7.03 0 0 1-3.58-.98l-.26-.16-2.73.72.73-2.66-.18-.27a7.04 7.04 0 1 1 6.02 3.35Zm3.86-5.27c-.21-.1-1.27-.62-1.47-.69-.2-.07-.35-.1-.5.1-.15.2-.57.69-.7.83-.13.15-.26.16-.48.05-.21-.1-.9-.33-1.72-1.06-.63-.56-1.06-1.25-1.18-1.46-.12-.2-.01-.31.09-.41.09-.09.21-.24.31-.36.1-.12.13-.2.2-.33.06-.12.03-.24-.02-.34-.05-.1-.5-1.2-.69-1.64-.18-.43-.37-.37-.5-.37h-.43c-.15 0-.39.06-.6.29-.2.22-.77.75-.77 1.83 0 1.08.79 2.13.9 2.28.1.15 1.55 2.37 3.75 3.33.52.22.93.36 1.25.46.52.16.99.14 1.36.09.42-.06 1.27-.52 1.45-1.03.18-.5.18-.93.13-1.03-.05-.08-.19-.13-.4-.24Z'/%3E%3C/svg%3E");
}
.social-btn:hover { background: var(--gold); color: #fff; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,150,219,.35); }
.footer-col h4 {
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.9); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .86rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s, padding-left .2s; display: inline-block; }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .82rem; }

/* ─── WHATSAPP FAB ─── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  text-decoration: none; font-size: 1.6rem;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-fab:hover { transform: scale(1.15); animation: none; }

@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 6px 24px rgba(37,211,102,.5), 0 0 0 12px rgba(37,211,102,.12); }
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* Staggered children */
.reveal-stagger > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger > *:nth-child(6) { transition-delay: .40s; }

.reveal-left { transform: translateX(-28px); }
.reveal-left.visible { transform: none; }
.reveal-right { transform: translateX(28px); }
.reveal-right.visible { transform: none; }
.reveal-scale { transform: scale(.94); }
.reveal-scale.visible { transform: none; }

.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .20s; }
.reveal-delay-3 { transition-delay: .30s; }

/* ─── COUNTER ANIMATION ─── */
.count-num { display: inline-block; }

/* ─── SIDEBAR LAYOUT ─── */
.sidebar-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.sidebar-box:hover { box-shadow: var(--shadow); }
.sidebar-box h4 { font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--navy); margin-bottom: 14px; }
.sidebar-links { list-style: none; }
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; font-size: .88rem;
  color: var(--text); text-decoration: none;
  transition: var(--transition);
}
.sidebar-links a:hover, .sidebar-links a.active { color: var(--gold); font-weight: 600; padding-left: 4px; }
.sidebar-links a .arr { color: var(--gold); font-size: .8rem; transition: transform .2s; }
.sidebar-links a:hover .arr { transform: translateX(4px); }
.sidebar-contact-card {
  background: linear-gradient(135deg, var(--navy), var(--navy3));
  border-radius: var(--radius);
  padding: 26px;
  color: #fff;
}
.sidebar-contact-card h4 { color: #fff; border: none; margin-bottom: 12px; font-size: .95rem; text-transform: none; letter-spacing: 0; }
.sidebar-contact-card p { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 16px; line-height: 1.6; }
.sidebar-contact-card a:not(.btn) { display: flex; gap: 8px; align-items: center; font-size: .86rem; color: var(--gold2); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.sidebar-contact-card a:not(.btn):hover { color: #fff; }
.sidebar-contact-card .btn { color: #fff; margin-bottom: 0; }
.sidebar-contact-card .btn:hover { color: #fff; }

/* ─── LOADING SKELETON ─── */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ─── PAGE TRANSITION ─── */
.page-fade-in {
  animation: pageFade .4s ease both;
}
@keyframes pageFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile / Tablet / Laptop
   ══════════════════════════════════════ */

/* ── Large tablet / small laptop (≤1100px) ── */
@media (max-width: 1100px) {
  .container { padding: 0 20px; }
  .dropdown { min-width: 560px; }
  .sidebar-layout { grid-template-columns: 1fr 270px; gap: 32px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 28px; }
}

/* ── Tablet landscape / small desktop (≤900px) ── */
@media (max-width: 900px) {
  /* Nav */
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 64px; }

  /* Layout grids */
  .grid-2      { grid-template-columns: 1fr; gap: 32px; }
  .grid-3      { grid-template-columns: 1fr 1fr; gap: 20px; }
  .grid-4      { grid-template-columns: 1fr 1fr; gap: 18px; }
  .why-grid    { grid-template-columns: 1fr; }

  /* Sidebar — stack to single col, sidebar goes on top */
  .sidebar-layout { grid-template-columns: 1fr; gap: 28px; }
  .sidebar { order: -1; position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .sidebar-contact-card { grid-column: 1 / -1; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-grid::before { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Spacing */
  .section    { padding: 72px 0; }
  .section-sm { padding: 48px 0; }

  /* Page hero */
  .page-hero { padding: 56px 0 48px; }
  .page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Blog grid */
  .blog-article { max-width: 100%; }

  /* CTA */
  .cta-section { padding: 64px 0; }

  /* WhatsApp FAB */
  .wa-fab { bottom: 20px; right: 18px; width: 52px; height: 52px; font-size: 1.4rem; }

  /* Stats strip */
  .stat-box strong { font-size: 2rem; }

  /* Contact form */
  .contact-form { padding: 28px 24px; }
}

/* ── Tablet portrait (≤680px) ── */
@media (max-width: 680px) {
  .container { padding: 0 16px; }

  /* Grids */
  .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 14px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 18px; }

  /* Sidebar */
  .sidebar { grid-template-columns: 1fr; }
  .sidebar-contact-card { grid-column: auto; }

  /* Section title */
  h2.section-title { font-size: clamp(1.6rem, 4vw, 2.2rem); }

  /* Page hero */
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: clamp(1.65rem, 4.5vw, 2.2rem); }
  .page-hero p { font-size: .95rem; }
  .page-hero-badges { gap: 8px; }
  .hero-badge-pill { font-size: .72rem; padding: 5px 12px; }

  /* Cards */
  .service-card { padding: 24px 20px; }
  .feature-card { padding: 20px; gap: 12px; }
  .testimonial-card { padding: 24px 20px; }

  /* Blog */
  .blog-card-thumb { height: 170px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  footer { padding: 56px 0 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* CTA */
  .cta-section h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Strip */
  .strip-inner { gap: 32px; }

  /* Section spacing */
  .section    { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Nav */
  .nav-inner { height: 60px; }
  .logo img { height: 38px; }

  /* Grid */
  .grid-4 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }

  /* Section title */
  h2.section-title { font-size: 1.55rem; }
  p.section-sub { font-size: .93rem; }

  /* Page hero */
  .page-hero { padding: 44px 0 36px; }
  .page-hero h1 { font-size: 1.65rem; line-height: 1.25; }
  .page-hero p { font-size: .9rem; }
  .page-hero-badges { display: none; }

  /* Cards */
  .service-card { padding: 20px 16px; }
  .service-icon { width: 46px; height: 46px; font-size: 1.3rem; }
  .feature-card { flex-direction: column; gap: 12px; }
  .feature-icon { width: 44px; height: 44px; }
  .stat-box { padding: 22px 14px; }
  .stat-box strong { font-size: 1.8rem; }

  /* Buttons */
  .btn-lg { padding: 14px 24px; font-size: .93rem; }

  /* Blog */
  .blog-card-body { padding: 18px 16px; }
  .blog-card-thumb { height: 150px; }

  /* Accordion */
  .accordion-btn { font-size: .9rem; padding: 16px 0; }

  /* Contact form */
  .contact-form { padding: 22px 16px; border-radius: 12px; }

  /* Sidebar */
  .sidebar-box { padding: 18px 16px; }
  .sidebar-contact-card { padding: 18px 16px; }

  /* Footer */
  .footer-grid { gap: 22px; }
  .social-btn { width: 34px; height: 34px; }

  /* Process steps */
  .step-num { width: 52px; height: 52px; font-size: 1.1rem; }
  .process-step { padding: 20px 12px; }

  /* Testimonial */
  .testimonial-card { padding: 20px 16px; }

  /* WhatsApp FAB */
  .wa-fab { bottom: 16px; right: 14px; width: 48px; height: 48px; font-size: 1.3rem; }
}

/* ── Very small mobile (≤360px) ── */
@media (max-width: 360px) {
  .page-hero h1 { font-size: 1.45rem; }
  h2.section-title { font-size: 1.4rem; }
  .btn-lg { padding: 12px 20px; font-size: .88rem; }
  .container { padding: 0 12px; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .wa-fab { animation: none; }
  .tag { animation: none; }
}
