/* ============================================================
   LEVE-LEVE DIGITAL — Design System
   ============================================================ */

:root {
  --primary:        #2563eb;
  --primary-dark:   #1d4ed8;
  --primary-light:  #dbeafe;
  --secondary:      #7c3aed;
  --accent:         #059669;
  --accent-light:   #d1fae5;
  --amber:          #d97706;
  --amber-light:    #fef3c7;
  --pink:           #db2777;
  --pink-light:     #fce7f3;
  --teal:           #0d9488;
  --orange:         #ea580c;

  --bg:             #f8fafc;
  --bg-dark:        #0f172a;
  --bg-mid:         #1e293b;
  --white:          #ffffff;
  --border:         #e2e8f0;
  --border-light:   #f1f5f9;

  --text:           #1e293b;
  --text-muted:     #64748b;
  --text-pale:      #94a3b8;

  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.25);

  --font-sans:    'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;

  --r-sm:   8px;
  --r:      12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes barFill {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes countUp { }
@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-in-out), transform .6s var(--ease-in-out);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate-delay] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .15s var(--ease-in-out), transform .7s .15s var(--ease-in-out);
}
[data-animate-delay].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: .55rem 0;
  font-size: .8rem;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar-tag { font-weight: 500; }
.top-bar-contacts { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.top-bar-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.75);
  transition: color .25s;
}
.top-bar-link:hover { color: #fff; }
.top-bar-link i { width: 13px; height: 13px; color: var(--primary); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: .9rem 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s;
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.logo-icon i { width: 20px; height: 20px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}
.logo-accent { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width .25s;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.btn-nav-cta {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem 1.25rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-full);
  font-size: .875rem;
  font-weight: 600;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn-nav-cta i { width: 15px; height: 15px; }
.btn-nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.45);
}

.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  align-items: center; justify-content: center;
  transition: background .2s;
}
.mobile-toggle:hover { background: var(--bg); }
.mobile-toggle i { width: 20px; height: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--secondary);
  bottom: -150px; left: -100px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: var(--accent);
  top: 50%; left: 40%;
  transform: translate(-50%, -50%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-full);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(74,222,128,.25);
  animation: pulse-ring 1.8s ease-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 2.25rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .875rem 1.75rem;
  background: #25d366;
  color: #fff;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
}
.btn-primary-hero i { width: 18px; height: 18px; }
.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}
.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .95rem;
  transition: background .25s, transform .25s;
  backdrop-filter: blur(8px);
}
.btn-ghost-hero i { width: 16px; height: 16px; }
.btn-ghost-hero:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.trust-item i { width: 14px; height: 14px; color: #4ade80; }

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 320px;
  height: 300px;
}
.hcard {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-2xl);
}
.hcard-main {
  width: 100%;
}
.hcard-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.hcard-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hcard-header strong { display: block; font-size: .9rem; }
.hcard-header small { font-size: .75rem; color: var(--text-muted); }
.hcard-status {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: .2rem .6rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.hcard-bar {
  height: 5px;
  background: var(--border-light);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: 1rem;
}
.hcard-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--r-full);
  animation: barFill 1.5s 1s ease-out both;
}
.hcard-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--text-muted);
}
.hcard-meta i { width: 13px; height: 13px; margin-right: .3rem; vertical-align: middle; }
.hcard-price {
  font-weight: 700;
  color: var(--primary);
  font-size: .9rem;
}

.hcard-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1.1rem;
  border-radius: var(--r-lg);
  font-size: .8rem;
  width: auto;
  animation: floatY 4s ease-in-out infinite;
}
.hcard-float strong { display: block; font-size: .82rem; font-weight: 700; }
.hcard-float small { font-size: .7rem; color: var(--text-muted); }
.hcard-top { top: -24px; right: -24px; animation-delay: 0s; }
.hcard-bottom { bottom: -18px; left: -18px; animation-delay: 1.5s; }

.star-icon { width: 22px; height: 22px; color: var(--amber); fill: var(--amber); }
.zap-icon  { width: 22px; height: 22px; color: var(--primary); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 2.25rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1.25rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}
.stat-label {
  display: block;
  margin-top: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-block;
  padding: .3rem .9rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .9rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: .75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 6rem 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: transform .35s var(--ease-out-back), box-shadow .35s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.sc-icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.sc-icon i { width: 24px; height: 24px; }
.sc-blue   { background: #dbeafe; color: var(--primary); }
.sc-purple { background: #ede9fe; color: var(--secondary); }
.sc-amber  { background: var(--amber-light); color: var(--amber); }
.sc-green  { background: var(--accent-light); color: var(--accent); }
.sc-pink   { background: var(--pink-light); color: var(--pink); }
.sc-teal   { background: #ccfbf1; color: var(--teal); }
.sc-orange { background: #ffedd5; color: var(--orange); }
.sc-dark   { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.service-card > p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.sc-list {
  margin-bottom: 1.5rem;
  flex: 1;
}
.sc-list li {
  font-size: .85rem;
  color: var(--text-muted);
  padding: .3rem 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid var(--border-light);
}
.sc-list li:last-child { border-bottom: none; }
.sc-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .5;
}
.sc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}
.sc-price {
  font-size: .8rem;
  color: var(--text-muted);
}
.sc-price strong {
  color: var(--text);
  font-size: .9rem;
}
.sc-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap .2s, color .2s;
}
.sc-cta i { width: 14px; height: 14px; transition: transform .2s; }
.sc-cta:hover { color: var(--primary-dark); }
.sc-cta:hover i { transform: translateX(3px); }

.service-card-cta {
  background: linear-gradient(145deg, var(--bg-dark), var(--bg-mid));
  border-color: transparent;
  justify-content: center;
  align-items: flex-start;
}
.service-card-cta h3 { color: #fff; margin-bottom: .65rem; }
.service-card-cta > p { color: rgba(255,255,255,.55); }

.btn-cta-card {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  background: #25d366;
  color: #fff;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .88rem;
  margin-top: 1.5rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 18px rgba(37,211,102,.35);
}
.btn-cta-card i { width: 16px; height: 16px; }
.btn-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37,211,102,.45);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  padding: 6rem 0;
  background: var(--bg);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 3rem;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative;
  transition: box-shadow .3s, transform .35s var(--ease-out-back);
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.process-connector {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  flex-shrink: 0;
  margin-top: 5.5rem;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -5px; top: -4px;
  width: 10px; height: 10px;
  background: var(--secondary);
  border-radius: 50%;
}
.step-number {
  position: absolute;
  top: -14px;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 800;
  padding: .2rem .65rem;
  border-radius: var(--r-full);
  letter-spacing: .05em;
}
.step-icon {
  width: 60px; height: 60px;
  background: var(--primary-light);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin: 0 auto 1.25rem;
}
.step-icon i { width: 26px; height: 26px; }
.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.process-step p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.process-cta { text-align: center; }
.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .875rem 2rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .95rem;
  transition: transform .25s, box-shadow .25s, background .25s;
  box-shadow: 0 6px 18px rgba(37,99,235,.35);
}
.btn-primary-outline i { width: 17px; height: 17px; }
.btn-primary-outline:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37,99,235,.45);
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-section {
  padding: 6rem 0;
  background: var(--white);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.portfolio-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .35s var(--ease-out-back), box-shadow .35s;
  background: var(--white);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.pc-visual {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: rgba(255,255,255,.9);
}
.pc-visual i { width: 48px; height: 48px; opacity: .85; }
.pc-label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255,255,255,.15);
  padding: .25rem .75rem;
  border-radius: var(--r-full);
}
.pc-blue   { background: linear-gradient(135deg, #1e40af, var(--primary)); }
.pc-amber  { background: linear-gradient(135deg, #92400e, var(--amber)); }
.pc-green  { background: linear-gradient(135deg, #065f46, var(--accent)); }
.pc-info { padding: 1.75rem; }
.pc-info h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.pc-info p { font-size: .875rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.pc-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap .2s;
}
.pc-link i { width: 14px; height: 14px; transition: transform .2s; }
.pc-link:hover i { transform: translateX(3px); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 6rem 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tc-featured {
  background: linear-gradient(145deg, var(--bg-dark), var(--bg-mid));
  border-color: transparent;
}
.tc-featured p, .tc-featured strong { color: #fff; }
.tc-featured small { color: rgba(255,255,255,.5); }
.tc-featured .tc-avatar {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.tc-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.tc-avatar {
  width: 40px; height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tc-author strong { font-size: .875rem; display: block; }
.tc-author small { font-size: .78rem; color: var(--text-pale); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 6rem 0;
  background: var(--white);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.faq-left .section-tag { display: inline-block; margin-bottom: .9rem; }
.faq-left .section-title { margin-bottom: .75rem; }
.faq-left .section-sub { text-align: left; margin: 0 0 2rem; }

.faq-right { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  text-align: left;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: background .2s;
}
.faq-question:hover { background: var(--bg); }
.faq-question i {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform .3s var(--ease-out-back);
}
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-in-out), padding .3s;
}
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 5rem 0;
  background: var(--bg);
}
.cta-box {
  background: linear-gradient(135deg, #1e3a8a, var(--primary), var(--secondary));
  border-radius: var(--r-xl);
  padding: 5rem 3rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}
.cta-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  filter: blur(60px);
}
.orb-1 {
  width: 400px; height: 400px;
  background: #fff;
  top: -150px; left: -100px;
}
.orb-2 {
  width: 350px; height: 350px;
  background: var(--secondary);
  bottom: -150px; right: -80px;
}
.cta-content { position: relative; z-index: 1; }
.cta-tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.cta-box h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: .9rem;
  line-height: 1.2;
}
.cta-box p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 1.75rem;
  background: #25d366;
  color: #fff;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
}
.btn-cta-white i { width: 17px; height: 17px; }
.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.75rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: .95rem;
  backdrop-filter: blur(8px);
  transition: background .25s, transform .25s;
}
.btn-cta-outline i { width: 16px; height: 16px; }
.btn-cta-outline:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  padding: 4.5rem 0 3rem;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p {
  margin-top: 1rem;
  font-size: .875rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .25s, color .25s, transform .2s;
}
.footer-social a i { width: 17px; height: 17px; }
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color .25s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact { gap: .75rem !important; }
.footer-contact li {
  display: flex !important;
  align-items: flex-start;
  gap: .5rem !important;
  font-size: .875rem;
}
.footer-contact li i {
  width: 15px; height: 15px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: .1rem;
}
.footer-contact li a, .footer-contact li span {
  color: rgba(255,255,255,.5);
  transition: color .25s;
}
.footer-contact li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  width: 60px; height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
  transition: transform .3s var(--ease-out-back), box-shadow .3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,.6);
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-dark);
  color: #fff;
  padding: .4rem .85rem;
  border-radius: var(--r-sm);
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(5px);
  transition: opacity .25s, transform .25s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--bg-dark);
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { margin: 0 auto 2.25rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .top-bar-tag { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: flex; }
  .process-steps { flex-direction: column; align-items: stretch; }
  .process-connector { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { padding: 3rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 4rem 0 3.5rem; }
  .hero-title { font-size: 2.15rem; }
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-primary-hero, .btn-ghost-hero { justify-content: center; }
  .hero-trust { gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-cta-white, .btn-cta-outline { justify-content: center; }
  .whatsapp-float { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
}
