/* ============================================================
   GVIKA — Global Styles
   Theme: Navy + Gold (based on Advocate theme)
============================================================ */

/* ── RESET & ROOT ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--ff-body); }

/* ── CSS VARIABLES ────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #9A7430;
  --navy:        #0A1628;
  --navy-mid:    #112240;
  --navy-soft:   #1A3257;
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE0;
  --white:       #FFFFFF;
  --gray-100:    #F5F5F5;
  --gray-200:    #E8E8E8;
  --gray-400:    #A8A49A;
  --gray-500:    #8A8A9A;
  --gray-600:    #6B6860;
  --gray-700:    #4A4A5A;
  --text-dark:   #0F1A2E;
  --text-mid:    #3A4A60;
  --text-light:  #7A8A9E;

  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-body:     'DM Sans', system-ui, sans-serif;
  --ff-mono:     'DM Mono', monospace;

  --shadow-sm:   0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:   0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg:   0 24px 64px rgba(10,22,40,0.16);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── UTILITIES ────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.tc { text-align: center; }
.tc .s-sub { margin: 0 auto; }
.tc .s-label { justify-content: center; }

/* Section label */
.s-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.s-label::before {
  content: ''; display: inline-block; width: 28px; height: 2px;
  background: var(--gold); flex-shrink: 0;
}

/* Section title */
.s-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; line-height: 1.18;
  color: var(--text-dark); margin-bottom: 16px;
}
.s-title .hi { color: var(--gold); }

/* Section sub */
.s-sub {
  font-size: 15.5px; color: var(--text-light);
  line-height: 1.75; max-width: 550px;
}

/* Divider */
.s-divider {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px; margin: 14px 0 28px;
}
.tc .s-divider { margin: 14px auto 28px; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 28px; border-radius: var(--radius-sm); border: none;
  font-family: var(--ff-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.3px; transition: var(--transition); cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--navy); box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,168,76,0.45); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,0.35); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ── ANIMATIONS ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.vis { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-44px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left.vis { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(44px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right.vis { opacity: 1; transform: none; }

/* ── NAVBAR ───────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: var(--transition);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 72px; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-icon { width: 36px; height: 36px; border-radius: 8px; overflow: hidden; }
.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-text { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--white); }
.nav-logo-text span { color: var(--gold); }

.nav-list { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-list li a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65);
  padding: 8px 11px; border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-list li a:hover, .nav-list li a.active { color: var(--gold-light); background: rgba(201,168,76,0.1); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
  border-radius: var(--radius-sm); transition: var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.06); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,22,40,0.99);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 20px 28px 28px; z-index: 999;
  flex-direction: column; gap: 4px;
  opacity: 0; transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.72);
  padding: 11px 14px; border-radius: var(--radius-sm); transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-menu a:hover { color: var(--gold-light); background: rgba(201,168,76,0.08); }
.mobile-menu-actions {
  display: flex; gap: 10px; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu-actions .btn { flex: 1; justify-content: center; font-size: 13px; }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute;
  top: -200px; right: -200px; width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -100px; left: -100px; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,50,87,0.6) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px; padding: 80px 0;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-full); padding: 6px 16px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 2px;
  color: var(--gold-light); text-transform: uppercase; margin-bottom: 24px;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700; line-height: 1.15; color: var(--white); margin-bottom: 22px;
}
.hero-title .hi { color: var(--gold); }
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 48px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hstat-val { font-family: var(--ff-display); font-size: 28px; font-weight: 700; color: var(--white); }
.hstat-val span { color: var(--gold); }
.hstat-lbl { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 2px; }

.hero-right { position: relative; }
.hero-img-main {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: var(--shadow-lg);
}
.hero-img-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-floating {
  position: absolute; bottom: -20px; left: -30px;
  background: var(--navy-mid); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg); padding: 18px 22px;
  box-shadow: var(--shadow-lg); min-width: 180px;
}
.hero-float-val { font-family: var(--ff-display); font-size: 28px; font-weight: 700; color: var(--white); }
.hero-float-val span { color: var(--gold); }
.hero-float-lbl { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 4px; }

/* ── CATEGORY BAR ─────────────────────────────────────── */
.cat-bar { background: var(--white); padding: 0; border-bottom: 1px solid var(--gray-200); position: sticky; top: 72px; z-index: 99; }
.cat-bar-inner { display: flex; overflow-x: auto; gap: 0; scrollbar-width: none; }
.cat-bar-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  flex-shrink: 0; background: none; border: none;
  padding: 16px 20px; font-size: 13px; font-weight: 500;
  color: var(--text-light); cursor: pointer; white-space: nowrap;
  border-bottom: 3px solid transparent; transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.cat-btn:hover { color: var(--text-dark); }
.cat-btn.active { color: var(--gold-dark); border-bottom-color: var(--gold); font-weight: 600; }
.cat-btn img { width: 18px; height: 18px; object-fit: contain; }

/* ── WHY CHOOSE ───────────────────────────────────────── */
.why { background: var(--cream-dark); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-col { position: relative; }
.why-img-main { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg); }
.why-img-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg); padding: 22px 26px; text-align: center; box-shadow: var(--shadow-lg);
}
.why-badge-val { font-family: var(--ff-display); font-size: 36px; font-weight: 700; color: var(--white); }
.why-badge-val span { color: var(--gold); }
.why-badge-lbl { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }

.why-points { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.why-point {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 16px 20px; transition: var(--transition);
}
.why-point:hover { border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow-md); transform: translateX(6px); }
.why-point-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: var(--transition);
}
.why-point:hover .why-point-icon { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.why-point-text { font-size: 14px; font-weight: 500; color: var(--text-dark); }

/* ── STATS SECTION ────────────────────────────────────── */
.stats-section { background: var(--navy); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.06); border-radius: var(--radius-lg); overflow: hidden; }
.stat-card { background: var(--navy); padding: 40px 32px; text-align: center; transition: var(--transition); }
.stat-card:hover { background: var(--navy-mid); }
.stat-icon { font-size: 28px; margin-bottom: 14px; }
.stat-val { font-family: var(--ff-display); font-size: 38px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.stat-val span { color: var(--gold); }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ── CATEGORIES SECTION ───────────────────────────────── */
.categories-section { background: var(--cream); }
.cat-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; margin-top: 56px; }
.cat-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  transition: var(--transition); cursor: pointer; position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(to top, rgba(201,168,76,0.06), transparent);
  transition: height var(--transition);
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.3); }
.cat-card:hover::before { height: 100%; }
.cat-card-icon { width: 56px; height: 56px; margin: 0 auto 18px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.cat-card-icon img { width: 28px; height: 28px; object-fit: contain; }
.cat-card-name { font-family: var(--ff-display); font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.cat-card-count { font-size: 12px; color: var(--text-light); }

/* ── PROJECT CARDS ────────────────────────────────────── */
.projects-section { background: var(--white); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.projects-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.project-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); position: relative;
}
.project-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.2); }
.project-card:hover::before { transform: scaleX(1); }
.project-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--gray-100); }
.project-body { padding: 18px 20px; }
.project-reviews { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.project-stars { color: var(--gold); font-size: 12px; }
.project-review-count { font-size: 11px; color: var(--text-light); }
.project-title { font-family: var(--ff-display); font-size: 14px; font-weight: 600; color: var(--text-dark); line-height: 1.4; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.project-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--gray-200); }
.project-price { font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: var(--text-dark); }
.project-price .original { font-size: 13px; color: var(--text-light); text-decoration: line-through; margin-left: 6px; font-family: var(--ff-body); font-weight: 400; }
.project-delivery { font-size: 11px; color: var(--text-light); text-align: right; }
.project-delivery strong { display: block; color: var(--text-dark); font-size: 12px; }

/* ── JOB CARDS ────────────────────────────────────────── */
.jobs-section { background: var(--cream); }
.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px 32px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.job-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold-light));
  transform: scaleY(0); transform-origin: top; transition: var(--transition);
}
.job-card:hover { box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.25); transform: translateX(4px); }
.job-card:hover::before { transform: scaleY(1); }
.job-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.job-title { font-family: var(--ff-display); font-size: 17px; font-weight: 600; color: var(--text-dark); }
.job-budget { font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: var(--gold-dark); white-space: nowrap; }
.job-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.job-meta-item { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.job-level-badge {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600; letter-spacing: 0.3px;
  background: rgba(201,168,76,0.12); color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,0.25);
}
.job-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.65; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.job-skills { display: flex; gap: 8px; flex-wrap: wrap; }
.skill-tag {
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 500; color: var(--text-mid);
  background: var(--gray-100); border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.skill-tag:hover { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.3); color: var(--gold-dark); }

/* ── TALENT CARDS ─────────────────────────────────────── */
.talents-section { background: var(--white); }
.talents-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.talent-card {
  background: var(--cream); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px 24px 28px;
  text-align: center; transition: var(--transition); position: relative; overflow: hidden;
}
.talent-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.25); }
.talent-avatar-wrap { position: relative; width: 80px; margin: 0 auto 16px; }
.talent-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; border: 3px solid rgba(201,168,76,0.3);
}
.talent-avatar-placeholder {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-soft));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 24px; font-weight: 700; color: var(--white);
  border: 3px solid rgba(201,168,76,0.3);
}
.talent-status {
  position: absolute; bottom: 2px; right: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--white);
}
.talent-status.active { background: #22c55e; }
.talent-status.inactive { background: var(--gray-400); }
.talent-name { font-family: var(--ff-display); font-size: 17px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.talent-title { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.talent-badge {
  display: inline-block; padding: 3px 12px; border-radius: var(--radius-full);
  font-size: 10px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 18px;
}
.talent-badge.active { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
.talent-badge.inactive { background: var(--gray-100); color: var(--gray-500); border: 1px solid var(--gray-200); }

/* ── APP DOWNLOAD ─────────────────────────────────────── */
.app-section { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
.app-section::before {
  content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%); pointer-events: none;
}
.app-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-title { font-family: var(--ff-display); font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.app-desc { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 28px; }
.app-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.app-badge { transition: var(--transition); }
.app-badge:hover { transform: translateY(-3px); }
.app-badge img { height: 48px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.1); }
.app-phones { display: flex; gap: 24px; justify-content: center; align-items: flex-end; }
.app-phone-img { max-height: 340px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(201,168,76,0.15); }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testi-section { background: var(--navy); position: relative; overflow: hidden; }
.testi-section::before {
  content: ''; position: absolute; bottom: -150px; left: -150px; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 65%); pointer-events: none;
}
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.testi-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 34px 30px; transition: var(--transition);
}
.testi-card:hover { border-color: rgba(201,168,76,0.22); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 20px; }
.testi-quote { font-family: var(--ff-display); font-style: italic; font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 26px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 14px; font-weight: 700; color: var(--white);
}
.testi-name { font-size: 13px; font-weight: 600; color: var(--white); }
.testi-role { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* ── PRICING ──────────────────────────────────────────── */
.pricing-section { background: var(--cream-dark); }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 32px 0 56px; }
.toggle-label { font-size: 14px; font-weight: 500; color: var(--gray-500); transition: var(--transition); }
.toggle-label.active { color: var(--text-dark); font-weight: 600; }
.toggle-track { width: 56px; height: 28px; border-radius: var(--radius-full); background: var(--gray-200); position: relative; cursor: pointer; border: none; transition: var(--transition); }
.toggle-track.on { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }
.toggle-thumb { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--white); box-shadow: 0 2px 6px rgba(0,0,0,0.2); transition: var(--transition); }
.toggle-track.on .toggle-thumb { left: calc(100% - 25px); }
.save-pill {
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  padding: 3px 12px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600; color: var(--gold-dark);
}
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.price-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 40px 36px; transition: var(--transition); position: relative; overflow: hidden; }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.highlight { background: var(--navy); border-color: rgba(201,168,76,0.25); box-shadow: 0 24px 60px rgba(13,15,12,0.35); }
.price-tag { position: absolute; top: 22px; right: 22px; padding: 4px 14px; border-radius: var(--radius-full); font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.price-tag.pop { background: var(--gold); color: var(--navy); }
.price-tag.val { background: rgba(201,168,76,0.15); color: var(--gold-dark); border: 1px solid rgba(201,168,76,0.25); }
.price-name { font-family: var(--ff-display); font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.price-card.highlight .price-name { color: var(--white); }
.price-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 24px; }
.price-card.highlight .price-desc { color: rgba(255,255,255,0.45); }
.price-trial { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--gold-dark); background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); padding: 4px 12px; border-radius: var(--radius-full); margin-bottom: 24px; }
.price-card.highlight .price-trial { color: var(--gold-light); background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.25); }
.price-amount { margin-bottom: 28px; }
.price-amount .currency { font-size: 20px; font-weight: 700; color: var(--text-dark); vertical-align: top; margin-top: 8px; display: inline-block; }
.price-card.highlight .currency { color: var(--white); }
.price-amount .amount { font-family: var(--ff-display); font-size: 52px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.price-card.highlight .amount { color: var(--white); }
.price-amount .period { font-size: 13px; color: var(--gray-400); }
.price-card.highlight .period { color: rgba(255,255,255,0.35); }
.price-limits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px; border-radius: var(--radius-md); background: var(--gray-100); margin-bottom: 24px; }
.price-card.highlight .price-limits { background: rgba(255,255,255,0.06); }
.limit-item { text-align: center; }
.limit-val { font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: var(--text-dark); }
.price-card.highlight .limit-val { color: var(--gold-light); }
.limit-lbl { font-size: 10px; color: var(--gray-400); letter-spacing: 0.3px; margin-top: 2px; }
.price-card.highlight .limit-lbl { color: rgba(255,255,255,0.3); }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-600); }
.price-card.highlight .price-features li { color: rgba(255,255,255,0.6); }
.price-features li::before { width: 18px; height: 18px; border-radius: 50%; background: rgba(201,168,76,0.12); color: var(--gold); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.price-card.highlight .price-features li::before { background: rgba(201,168,76,0.2); color: var(--gold-light); }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-section { background: var(--cream); }
.faq-inner { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: start; margin-top: 56px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: rgba(201,168,76,0.35); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-family: var(--ff-body); font-size: 14px; font-weight: 500; color: var(--text-dark); text-align: left; transition: var(--transition); }
.faq-q:hover { background: rgba(201,168,76,0.04); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: var(--gray-100); color: var(--gray-400); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease, padding 0.38s ease; font-size: 13.5px; color: var(--gray-600); line-height: 1.72; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 22px; }
.faq-cta-box { background: var(--navy); border-radius: var(--radius-xl); padding: 44px 36px; position: relative; overflow: hidden; }
.faq-cta-title { font-family: var(--ff-display); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.faq-cta-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 28px; }

/* ── NEWSLETTER ───────────────────────────────────────── */
.newsletter {
  background: linear-gradient(115deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-light) 100%);
  padding: 80px 0;
}
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.newsletter-title { font-family: var(--ff-display); font-size: 30px; font-weight: 700; color: var(--navy); margin: 10px 0 6px; }
.newsletter-sub { font-size: 14px; color: rgba(10,22,40,0.55); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.newsletter-input { flex: 1; min-width: 240px; background: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.5); border-radius: var(--radius-sm); padding: 14px 20px; font-family: var(--ff-body); font-size: 14px; color: var(--navy); outline: none; transition: var(--transition); }
.newsletter-input::placeholder { color: rgba(10,22,40,0.45); }
.newsletter-input:focus { background: rgba(255,255,255,0.5); border-color: var(--navy); }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 80px 0 0; position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%); pointer-events: none; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 2px; }
.footer-logo-icon img { width: 34px; height: 34px; object-fit: contain; }
.footer-logo-text { font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: var(--white); }
.footer-logo-text span { color: var(--gold); }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,0.4); line-height: 1.75; margin: 16px 0 22px; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.footer-contact-line { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,0.38); transition: var(--transition); }
.footer-contact-line:hover { color: var(--gold-light); }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-social:hover { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--navy); transform: translateY(-4px); box-shadow: 0 10px 25px rgba(201,168,76,0.4); border-color: transparent; }
.footer-col-title { font-family: var(--ff-display); font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links li a { font-size: 13px; color: rgba(255,255,255,0.42); transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-copy span { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.28); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .why-inner { grid-template-columns: 1fr; }
  .why-img-col { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .faq-inner { grid-template-columns: 1fr; }
  .app-inner { grid-template-columns: 1fr; }
  .app-phones { display: none; }
  .talents-grid { grid-template-columns: repeat(2,1fr); }
  .nav-list, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .projects-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .talents-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; }
}
