/*
Theme Name: Avora HR Theme v2
Theme URI: https://avorahrsolutions.com
Author: Avora HR Solutions
Description: Interactive HR consultancy theme with animated services explorer
Version: 2.1
Text Domain: avora-hr-v2
*/

/* =============================================
   VARIABLES & RESET
============================================= */
:root {
  --navy:        #0D2A4A;
  --navy-mid:    #163a5f;
  --navy-light:  #1e4d7a;
  --teal:        #5DCAA5;
  --teal-dark:   #3daa85;
  --teal-glow:   rgba(93,202,165,0.18);
  --offwhite:    #EEF2F7;
  --white:       #ffffff;
  --gray:        #8a9ab0;
  --gray-dark:   #3d4f62;
  --text:        #1a2535;

  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Outfit', 'Segoe UI', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --r: 14px;
  --r-lg: 22px;
  --shadow: 0 8px 40px rgba(13,42,74,0.13);
  --shadow-lg: 0 24px 80px rgba(13,42,74,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  line-height: 1.15;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
p  { color: var(--gray-dark); line-height: 1.8; }

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 18px;
}
.label::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--teal);
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 8px;
  font-family: var(--ff-body); font-size: 14px; font-weight: 700;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.3s var(--ease-in-out); white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn-teal  { background: var(--teal); color: var(--navy); border-color: var(--teal); }
.btn-teal:hover  { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(93,202,165,0.4); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-navy  { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover  { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow); }

/* =============================================
   HEADER
============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s var(--ease-in-out);
  padding: 0;
}
.site-header.scrolled { background: rgba(10,24,42,0.96); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(93,202,165,0.12); }
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.logo span { color: var(--teal); }
.logo img { height: 46px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.78);
  padding: 9px 18px; border-radius: 7px; transition: all 0.25s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta { background: var(--teal) !important; color: var(--navy) !important; font-weight: 700 !important; margin-left: 8px; }
.nav-cta:hover { background: var(--teal-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--navy); position: relative; overflow: hidden;
  padding: 130px 0 90px;
}

/* Animated mesh background */
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 100% 70% at 75% 40%, rgba(93,202,165,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 90% at 5% 90%, rgba(93,202,165,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(30,77,122,0.6) 0%, transparent 60%);
  animation: meshPulse 8s ease-in-out infinite alternate;
}
@keyframes meshPulse {
  from { opacity: 0.8; }
  to   { opacity: 1; }
}

.hero-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(93,202,165,0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(93,202,165,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-content { position: relative; z-index: 2; max-width: 780px; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(93,202,165,0.1); border: 1px solid rgba(93,202,165,0.22);
  border-radius: 50px; padding: 9px 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  color: var(--teal); margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease-out-expo) both;
}
.hero-pill-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.hero h1 {
  color: var(--white); margin-bottom: 26px;
  animation: fadeUp 0.8s 0.1s var(--ease-out-expo) both;
}
.hero h1 em { font-style: normal; color: var(--teal); }

.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  max-width: 560px; margin-bottom: 44px; line-height: 1.85;
  animation: fadeUp 0.8s 0.2s var(--ease-out-expo) both;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px;
  animation: fadeUp 0.8s 0.3s var(--ease-out-expo) both;
}
.hero-trust {
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 44px; border-top: 1px solid rgba(255,255,255,0.09);
  animation: fadeUp 0.8s 0.4s var(--ease-out-expo) both;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(93,202,165,0.12); display: flex;
  align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0;
}
.trust-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.88); display: block; }
.trust-sub  { font-size: 11px; color: rgba(255,255,255,0.42); }

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

/* =============================================
   VALUE BAR
============================================= */
.value-bar { background: var(--offwhite); padding: 0; }
.value-bar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 2px solid rgba(13,42,74,0.08);
}
.value-bar-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(13,42,74,0.08);
  display: flex; align-items: flex-start; gap: 14px;
  transition: background 0.3s;
}
.value-bar-item:last-child { border-right: none; }
.value-bar-item:hover { background: var(--white); }
.vb-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.vb-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.vb-sub   { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* =============================================
   SERVICES CARD GRID
============================================= */
.services-section {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}
.services-section .section-header {
  text-align: center; max-width: 640px;
  margin: 0 auto 72px;
}
.services-section .section-header p { margin-top: 16px; font-size: 1.05rem; }

/* ── Service Cards Grid ───────────────────── */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

/* FRONT face */
.svc-card-front {
  position: absolute;
  inset: 0;
  background: var(--white);
  border: 2px solid rgba(13,42,74,0.09);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: opacity 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo);
  z-index: 2;
}
.svc-card:hover .svc-card-front {
  opacity: 0;
  transform: translateY(-12px) scale(0.97);
  pointer-events: none;
}

.svc-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.4s var(--ease-out-expo);
}
.svc-card:hover .svc-card-icon { transform: scale(1.15) rotate(-5deg); }

.svc-card-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.svc-card-title {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 700;
}

.svc-card-desc {
  font-size: 13.5px;
  color: var(--gray-dark);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 16px;
}

.svc-card-best {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  background: var(--offwhite);
  padding: 6px 12px;
  border-radius: 6px;
  border-left: 3px solid var(--teal);
  margin-bottom: 12px;
}

.svc-card-hover-hint {
  font-size: 11px;
  color: var(--gray);
  font-style: italic;
  margin-top: auto;
  transition: color 0.3s;
}

/* Top accent bar on front */
.svc-card-front::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}
.svc-card:hover .svc-card-front::before { transform: scaleX(1); }

/* BACK face */
.svc-card-back {
  position: absolute;
  inset: 0;
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo);
  z-index: 1;
  overflow: hidden;
}
.svc-card-back::before {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,202,165,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.svc-card:hover .svc-card-back {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.svc-card-back-title {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(93,202,165,0.2);
}

.svc-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin-bottom: 20px;
}
.svc-card-features li {
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
  transition: color 0.2s, transform 0.2s;
}
.svc-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
  font-size: 11px;
}
.svc-card:hover .svc-card-features li:nth-child(1) { transition-delay: 0.05s; transform: translateX(0); }
.svc-card:hover .svc-card-features li:nth-child(2) { transition-delay: 0.10s; }
.svc-card:hover .svc-card-features li:nth-child(3) { transition-delay: 0.15s; }
.svc-card:hover .svc-card-features li:nth-child(4) { transition-delay: 0.20s; }
.svc-card:hover .svc-card-features li:nth-child(5) { transition-delay: 0.25s; }
.svc-card:hover .svc-card-features li:nth-child(6) { transition-delay: 0.30s; }
.svc-card-features li:hover { color: var(--white); transform: translateX(4px); }

.svc-cta {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: 13px;
}

/* =============================================
   ABOUT SECTION
/* =============================================
   ABOUT SECTION
============================================= */
.about-section {
  padding: 120px 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.about-section::after {
  content: '';
  position: absolute; right: -120px; top: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(93,202,165,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-content .label { color: var(--teal); }
.about-content h2 { color: var(--white); margin-bottom: 22px; }
.about-content > p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.85; }

.about-points { display: flex; flex-direction: column; gap: 22px; }
.about-pt { display: flex; gap: 16px; align-items: flex-start; }
.apt-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(93,202,165,0.12); border: 1px solid rgba(93,202,165,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 13px; font-weight: 900; flex-shrink: 0; margin-top: 2px;
}
.apt-strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.apt-text   { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

.about-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg); padding: 40px;
  backdrop-filter: blur(8px);
  position: relative; z-index: 2;
}
.about-card-label {
  font-family: var(--ff-head); font-size: 1.15rem;
  color: var(--white); font-weight: 700;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.expertise-items { display: flex; flex-direction: column; gap: 14px; }
.expertise-item { display: flex; align-items: center; gap: 12px; }
.ei-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.ei-text { font-size: 13.5px; color: rgba(255,255,255,0.7); }

.founding-box {
  margin-top: 24px; padding: 18px 20px;
  background: rgba(93,202,165,0.08);
  border: 1px solid rgba(93,202,165,0.18);
  border-radius: 10px; text-align: center;
}
.founding-box p { font-size: 13px; font-weight: 700; color: var(--teal); }
.founding-box span { font-size: 12px; color: rgba(255,255,255,0.45); display: block; margin-top: 4px; line-height: 1.5; }

/* =============================================
   PRICING
============================================= */
.pricing-section {
  padding: 120px 0;
  background: var(--offwhite);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1020px; margin: 0 auto;
}
.price-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 44px 38px; border: 2px solid transparent;
  transition: all 0.35s var(--ease-in-out);
  position: relative;
}
.price-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.price-card.featured { background: var(--navy); border-color: var(--teal); transform: scale(1.03); }
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--navy);
  font-size: 10px; font-weight: 900; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 18px; border-radius: 50px;
  white-space: nowrap;
}
.plan-tier { font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.plan-name { font-family: var(--ff-head); font-size: 1.5rem; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.price-card.featured .plan-name { color: var(--white); }
.plan-tagline { font-size: 13px; color: var(--gray); margin-bottom: 28px; line-height: 1.5; }
.price-card.featured .plan-tagline { color: rgba(255,255,255,0.5); }

.plan-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan-amount .cur { font-size: 1rem; font-weight: 700; color: var(--navy); margin-top: 6px; }
.price-card.featured .plan-amount .cur { color: var(--white); }
.plan-amount .num { font-family: var(--ff-head); font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-card.featured .plan-amount .num { color: var(--white); }
.plan-period { font-size: 12px; color: var(--gray); margin-bottom: 28px; }
.price-card.featured .plan-period { color: rgba(255,255,255,0.4); }
.plan-divider { height: 1px; background: rgba(13,42,74,0.08); margin-bottom: 24px; }
.price-card.featured .plan-divider { background: rgba(255,255,255,0.1); }

.plan-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.plan-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--gray-dark); }
.price-card.featured .plan-feat { color: rgba(255,255,255,0.75); }
.pf-check { color: var(--teal); font-weight: 900; flex-shrink: 0; }
.plan-btn { width: 100%; justify-content: center; }

.pricing-note { text-align: center; margin-top: 44px; font-size: 14px; color: var(--gray); }
.pricing-note a { color: var(--teal); font-weight: 600; }

/* =============================================
   LEAD MAGNET
============================================= */
.lead-section { padding: 80px 0; background: var(--white); }
.lead-inner {
  background: var(--navy); border-radius: var(--r-lg);
  padding: 64px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; overflow: hidden;
}
.lead-inner::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(93,202,165,0.08) 0%, transparent 70%);
}
.lead-content .label { color: var(--teal); }
.lead-content h2 { color: var(--white); font-size: 1.9rem; margin-bottom: 14px; }
.lead-content p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.8; }
.lead-checklist { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.lc-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.75); }
.lc-item::before { content: '✓'; color: var(--teal); font-weight: 900; flex-shrink: 0; }

.lead-form-card {
  background: var(--white); border-radius: var(--r);
  padding: 36px; position: relative; z-index: 2;
}
.lead-form-card h3 { font-family: var(--ff-head); font-size: 1.35rem; color: var(--navy); margin-bottom: 6px; }
.lead-form-card p  { font-size: 13px; color: var(--gray); margin-bottom: 22px; }
.form-field { margin-bottom: 14px; }
.form-field input {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid rgba(13,42,74,0.15);
  border-radius: 8px; font-family: var(--ff-body);
  font-size: 14px; color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s; outline: none;
}
.form-field input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(93,202,165,0.14);
}
.form-field input::placeholder { color: var(--gray); }
.form-submit { width: 100%; justify-content: center; }
.form-note { font-size: 11px; color: var(--gray); text-align: center; margin-top: 10px; }
#form-msg { display: none; text-align: center; font-weight: 700; color: var(--teal); margin-top: 12px; font-size: 14px; }

/* =============================================
   PROCESS
============================================= */
.process-section { padding: 120px 0; background: var(--offwhite); }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 64px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 32px;
  left: calc(10% + 24px); right: calc(10% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  z-index: 0;
}
.proc-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.proc-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: var(--ff-head); font-size: 1.35rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; border: 3px solid var(--teal);
  transition: all 0.3s; cursor: default;
}
.proc-step:hover .proc-num { background: var(--teal); color: var(--navy); transform: scale(1.1); }
.proc-title { font-family: var(--ff-head); font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.proc-desc  { font-size: 12.5px; color: var(--gray); line-height: 1.6; }

/* =============================================
   CTA
============================================= */
.cta-section {
  padding: 110px 0;
  background: var(--teal);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(13,42,74,0.09) 0%, transparent 60%),
              radial-gradient(ellipse 70% 80% at 80% 50%, rgba(13,42,74,0.09) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--navy); margin-bottom: 14px; }
.cta-section > .container > p { color: rgba(13,42,74,0.7); font-size: 1.1rem; max-width: 520px; margin: 0 auto 44px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-cta-dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(13,42,74,0.3); }
.btn-cta-out  { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-cta-out:hover { background: rgba(13,42,74,0.08); }
.cta-contacts {
  display: flex; justify-content: center; gap: 40px;
  margin-top: 52px; flex-wrap: wrap;
}
.cta-contact { font-size: 14px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 8px; }

/* =============================================
   FOOTER
============================================= */
.site-footer { background: var(--navy); padding: 64px 0 32px; color: rgba(255,255,255,0.5); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.f-brand .f-logo { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.f-brand .f-logo span { color: var(--teal); }
.f-brand p { font-size: 13.5px; line-height: 1.8; max-width: 280px; }
.f-social { display: flex; gap: 10px; margin-top: 22px; }
.f-soc {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.07); display: flex;
  align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.55);
  transition: all 0.25s;
}
.f-soc:hover { background: var(--teal); color: var(--navy); }
.f-col h4 { font-family: var(--ff-body); font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.f-col ul { display: flex; flex-direction: column; gap: 10px; }
.f-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: all 0.25s; }
.f-col ul li a:hover { color: var(--teal); padding-left: 5px; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
  font-size: 12.5px;
}
.f-legal { display: flex; gap: 20px; }
.f-legal a { color: rgba(255,255,255,0.4); transition: color 0.25s; }
.f-legal a:hover { color: var(--teal); }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all 0.3s var(--ease-in-out);
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .svc-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { min-height: 340px; }
}

@media (max-width: 900px) {
  .svc-cards-grid { grid-template-columns: 1fr; }
  .svc-card { min-height: 320px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .price-card.featured { transform: none; }
  .lead-inner { grid-template-columns: 1fr; gap: 36px; padding: 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .value-bar-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-btns { flex-direction: column; }
  .hero-trust { gap: 20px; }
  .hamburger { display: flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(10,24,42,0.98); padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .value-bar-grid { grid-template-columns: 1fr; }
  .cta-contacts { flex-direction: column; gap: 14px; align-items: center; }
}
