/* ================================================
   TECHBYNAFA – Premium Agency CSS
   ================================================ */

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
::-webkit-scrollbar {
  display: none;
}

/* UI Audit Fixes */
.section-dark .section-title,
.section-title.white {
  color: #ffffff !important;
}
.section-dark .section-sub,
.section-sub.light {
  color: rgba(255, 255, 255, 0.7) !important;
}

:root {
  --gold:      #D4AF37;
  --gold-light:#E8D16A;
  --orange:    #E8952A;
  --accent:    #D4AF37;
  --navy:      #0B0F1A;
  --navy-2:    #111827;
  --navy-3:    #1E2A3A;
  --white:     #FFFFFF;
  --gray-50:   #F9FAFB;
  --gray-100:  #F3F4F6;
  --gray-200:  #E5E7EB;
  --gray-400:  #9CA3AF;
  --gray-600:  #4B5563;
  --gray-800:  #1F2937;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  --shadow-gold: 0 8px 40px rgba(212,175,55,.25);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ────────────────────────────────── */
.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

/* ── Typography helpers ───────────────────────── */
.text-accent { color: var(--accent); }
.white       { color: var(--white); }
.light       { color: rgba(255,255,255,.65); }
.center      { text-align: center; }
.mt-4        { margin-top: .5rem; }
.mt-8        { margin-top: 2rem; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.3);
  padding: .3rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
  margin-top: .75rem;
}

.section-header.center { display: flex; flex-direction: column; align-items: center; margin-bottom: 3.5rem; }
.section-header.center .section-sub { text-align: center; }
.section-header.center .section-title { text-align: center; }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lg  { padding: .85rem 2rem;  font-size: 1rem; }
.btn-xl  { padding: 1rem 2.4rem;  font-size: 1.05rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(212,175,55,.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--gray-800);
  border-color: var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* ── Navbar ───────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), var(--shadow-sm);
  padding: .7rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}

.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,.8); }
.navbar:not(.scrolled) .nav-links a:hover { color: var(--white); }
.nav-links a:hover { color: var(--accent); }

.nav-cta { font-size: .85rem !important; color: var(--navy) !important; padding: .55rem 1.3rem !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar:not(.scrolled) .hamburger span { background: var(--white); }
.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); }

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 60%, #1a2744 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .18;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; right: -150px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--orange);
  bottom: -100px; left: -100px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: #3B82F6;
  top: 50%; left: 40%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 8rem 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.3);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.meta-item i { font-size: .8rem; }

/* ── Hero Mockup ──────────────────────────────── */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.mockup-wrapper {
  position: relative;
  width: 420px;
  height: 320px;
}

.mockup-laptop {
  position: absolute;
  bottom: 0; left: 0;
  width: 340px;
}

.laptop-screen {
  background: #1a1a2e;
  border-radius: 10px 10px 0 0;
  border: 2px solid rgba(255,255,255,.1);
  padding: .5rem;
  aspect-ratio: 16/10;
}

.screen-content { height: 100%; display: flex; flex-direction: column; gap: .3rem; }

.sc-bar {
  display: flex;
  gap: .3rem;
  padding: .25rem .3rem;
  background: rgba(255,255,255,.05);
  border-radius: 4px;
}

.sc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.sc-dot.red    { background: #FF5F57; }
.sc-dot.yellow { background: #FFBD2E; }
.sc-dot.green  { background: #28C840; }

.sc-body { flex: 1; padding: .4rem; display: flex; flex-direction: column; gap: .4rem; }

.sc-nav {
  height: 16px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
}

.sc-hero-block { padding: .3rem 0; }

.sc-line {
  height: 7px;
  background: rgba(255,255,255,.2);
  border-radius: 4px;
  margin-bottom: .3rem;
}
.sc-line.w-60 { width: 60%; }
.sc-line.w-40 { width: 40%; }

.sc-btn {
  width: 50px;
  height: 12px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 3px;
  margin-top: .4rem;
}

.sc-cards {
  display: flex;
  gap: .3rem;
  flex: 1;
}

.sc-card {
  flex: 1;
  background: rgba(255,255,255,.06);
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,.08);
}

.laptop-base {
  background: #2a2a3e;
  height: 8px;
  border-radius: 0 0 2px 2px;
  border: 2px solid rgba(255,255,255,.1);
  border-top: none;
}

.laptop-foot {
  background: #1a1a2e;
  height: 4px;
  width: 70%;
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
}

/* Phone mockup */
.mockup-phone {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 110px;
  background: #1e293b;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,.12);
  padding: .6rem .4rem;
  box-shadow: var(--shadow-lg);
}

.phone-content {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.ph-header {
  height: 10px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 4px;
  margin-bottom: .2rem;
}

.ph-block {
  height: 8px;
  background: rgba(255,255,255,.15);
  border-radius: 3px;
}

.ph-block.short { width: 60%; }

.ph-card {
  height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  margin-top: .2rem;
  border: 1px solid rgba(255,255,255,.06);
}

.ph-card.sm { height: 30px; }

/* Floating badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-md);
  padding: .6rem 1rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.floating-badge i { font-size: 1.3rem; }

.badge-top    { top: 10px; right: 0; }
.badge-bottom { bottom: 50px; left: -10px; }

.fb-label { font-size: .65rem; color: var(--gray-400); font-weight: 500; }
.fb-value { font-size: 1.05rem; font-weight: 700; color: var(--navy); font-family: var(--font-head); }

/* ── Trust Section ────────────────────────────── */
.trust {
  padding: 5rem 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.trust-label {
  text-align: center;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,.3);
}

.stat-icon {
  width: 52px; height: 52px;
  background: rgba(212,175,55,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
  font-size: 1.2rem;
}

.stat-value {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
}

.stat-label {
  font-size: .85rem;
  color: var(--gray-600);
  margin-top: .25rem;
  font-weight: 500;
}

/* ── Services ─────────────────────────────────── */
.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}

.services { padding: 6rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
  justify-content: center;
}


.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(212,175,55,.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.service-card:hover::before { transform: scaleX(1); }

.svc-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(212,175,55,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .svc-icon-wrap {
  background: rgba(212,175,55,.2);
  transform: scale(1.05);
}

.svc-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .6rem;
}

.svc-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.svc-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-light) !important;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}
.svc-link i { font-size: .75rem; transition: transform var(--transition); }
.svc-link:hover i { transform: translateX(3px); }

.svc-price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 20px;
  margin-bottom: .85rem;
  letter-spacing: .02em;
}

.svc-price-inline {
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .9rem;
}

.svc-price-note {
  font-size: .75rem;
  font-weight: 400;
  color: rgba(255,255,255,.4);
}

/* ── Why Choose Us ────────────────────────────── */
.why-us { padding: 6rem 0; background: var(--white); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Why visual */
.why-img-wrapper {
  position: relative;
  height: 380px;
}

.why-img-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.card-main {
  left: 0; top: 0;
  width: 300px;
}

.wic-bar {
  background: var(--navy);
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
}

.wic-dots span {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: .3rem;
}
.wic-dots span:nth-child(1) { background: #FF5F57; }
.wic-dots span:nth-child(2) { background: #FFBD2E; }
.wic-dots span:nth-child(3) { background: #28C840; }

.wic-body { padding: 1.25rem; }

.wic-chart {
  display: flex;
  align-items: flex-end;
  gap: .4rem;
  height: 80px;
  margin-bottom: .75rem;
}

.chart-bar {
  flex: 1;
  background: rgba(30,42,58,.15);
  border-radius: 4px 4px 0 0;
  transition: var(--transition);
}
.chart-bar.accent { background: linear-gradient(180deg, var(--gold), var(--orange)); }
.chart-bar.h-40  { height: 40%; }
.chart-bar.h-65  { height: 65%; }
.chart-bar.h-50  { height: 50%; }
.chart-bar.h-80  { height: 80%; }
.chart-bar.h-55  { height: 55%; }
.chart-bar.h-90  { height: 90%; }

.wic-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
}

.card-secondary {
  right: 0; bottom: 30px;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
}

.ws-icon {
  width: 40px; height: 40px;
  background: rgba(212,175,55,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ws-title { font-size: .95rem; font-weight: 600; color: var(--navy); }
.ws-sub   { font-size: .78rem; color: var(--gray-400); }

.why-accent-circle {
  position: absolute;
  bottom: 0; right: 60px;
  width: 140px; height: 140px;
  border: 2px dashed rgba(212,175,55,.25);
  border-radius: 50%;
  animation: spin 12s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Why content */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  font-size: .95rem;
  color: var(--gray-700);
}

.why-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: var(--navy);
  font-weight: 700;
  margin-top: .15rem;
}

/* ── Portfolio ────────────────────────────────── */
.portfolio { padding: 6rem 0; background: var(--gray-50); }

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.pf-btn {
  padding: .5rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.pf-btn:hover,
.pf-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.portfolio-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pi-image {
  position: relative;
  height: 240px;
  background: var(--navy-2);
  overflow: hidden;
  cursor: pointer;
}

.pi-mockup {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.pm-browser {
  width: 100%;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}

.pm-bar {
  background: rgba(0,0,0,.2);
  padding: .4rem .5rem;
  display: flex;
  gap: .3rem;
}

.pm-bar span {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}

.pm-body { padding: .6rem; }

.pm-line {
  height: 6px;
  background: rgba(255,255,255,.2);
  border-radius: 3px;
}
.pm-line.w-80 { width: 80%; }
.pm-line.w-60 { width: 60%; }
.pm-line.w-40 { width: 40%; }
.pm-line.mt-2 { margin-top: .3rem; }
.pm-line.mb-2 { margin-bottom: .3rem; }
.mb-1 { margin-bottom: .2rem; }

.pm-cards { display: flex; gap: .4rem; margin-top: .5rem; }
.pm-card  { flex: 1; height: 40px; background: rgba(255,255,255,.08); border-radius: 4px; }
.pm-card.tall { height: 60px; width: 70%; flex: none; }

.pm-phone {
  width: 70px;
  height: 120px;
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.15);
  padding: .5rem .35rem;
}

.pm-phone-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.pm-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.pm-logo-shape {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 14px;
}

.pm-brand-lines { width: 100%; display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.pm-line.w-50 { width: 50%; }
.pm-line.w-35 { width: 35%; }

.pi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11,15,26,.93) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .pi-overlay { opacity: 1; }

.pi-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .4rem;
}

.pi-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .6rem;
}

.pi-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}
.pi-link:hover { gap: .7rem; }

.portfolio-cta { margin-top: 3rem; }

/* ── Testimonials ─────────────────────────────── */
.testimonials { padding: 6rem 0; }

.testimonials-slider { position: relative; overflow: hidden; }

.ts-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.ts-card {
  flex: 0 0 calc(50% - .75rem);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.ts-stars { margin-bottom: 1rem; font-size: .85rem; gap: .2rem; display: flex; }

.ts-quote {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.ts-author {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.ts-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-head);
  flex-shrink: 0;
}

.ts-name { font-weight: 600; color: var(--white); font-size: .9rem; }
.ts-role { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: .1rem; }

.ts-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.ts-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  background: transparent;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-btn:hover { border-color: var(--accent); color: var(--accent); }

.ts-dots { display: flex; gap: .4rem; }
.ts-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: var(--transition);
  cursor: pointer;
}
.ts-dot.active { background: var(--accent); width: 20px; border-radius: 4px; }

/* ── CTA Section ──────────────────────────────── */
.cta-section {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 60%, var(--navy-3) 100%);
  overflow: hidden;
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .15;
}
.cta-shape-1 { width: 500px; height: 500px; background: var(--gold); top: -200px; left: -100px; }
.cta-shape-2 { width: 400px; height: 400px; background: var(--orange); bottom: -150px; right: -100px; }

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-gold);
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .9rem;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.cta-note {
  margin-top: 1.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.cta-note i { font-size: .75rem; }

/* ── Footer ───────────────────────────────────── */
.footer { background: var(--navy); padding: 5rem 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .9rem;
}

.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 250px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-color: transparent;
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

.footer-contact i { margin-top: .15rem; flex-shrink: 0; font-size: .85rem; }

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

/* ── Scroll to top ────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border: none;
  border-radius: 50%;
  color: var(--navy);
  font-size: .9rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 99;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover   { transform: translateY(-3px); }

/* ── Animations ───────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-animate="fade-left"]  { transform: translateX(24px); }
[data-animate="fade-right"] { transform: translateX(-24px); }

[data-animate].animated {
  opacity: 1;
  transform: translate(0);
}

/* ── Portfolio item hidden ────────────────────── */
.portfolio-item.hidden {
  display: none;
}

/* ================================================================
   RESPONSIVE
================================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding-block: 7rem 4rem; }
  .hero-visual { display: none; }
  .why-inner   { grid-template-columns: 1fr; }
  .why-visual  { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) { grid-column: auto; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-col.footer-brand { grid-column: 1 / -1; }
  .ts-card { flex: 0 0 80%; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 99;
    pointer-events: none;
  }
  .nav-links.open { transform: translateX(0); pointer-events: auto; }
  .nav-links a { font-size: 1.2rem; color: rgba(255,255,255,.8) !important; }
  .nav-cta { font-size: 1rem !important; padding: .7rem 2rem !important; }
  .hamburger { display: flex; z-index: 100; position: relative; }

  /* Hero */
  .hero-inner { padding-block: 5.5rem 3rem; }
  .hero-title { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .hero-sub   { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-meta { flex-direction: column; gap: .75rem; }

  /* Section spacing */
  .services, .why-us, .portfolio, .testimonials { padding: 4rem 0; }
  .trust { padding: 3rem 0; }
  .cta-section { padding: 5rem 0; }
  .section-header.center { margin-bottom: 2.25rem; }

  /* Why */
  .why-inner { gap: 2rem; }

  /* Grids */
  .services-grid  { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-row      { grid-template-columns: 1fr 1fr; }
  .footer-inner   { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 2.5rem; }
  .footer-col.footer-brand { grid-column: 1; }
  .footer { padding-top: 3.5rem; }

  /* Testimonials */
  .ts-card { flex: 0 0 90%; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { justify-content: center; width: 100%; max-width: 300px; }

  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  /* Stats */
  .stats-row { grid-template-columns: 1fr; }

  /* Hero */
  .hero-inner { padding-block: 5rem 2.5rem; }
  .hero-badge { font-size: .7rem; padding: .3rem .75rem; }

  /* Section spacing */
  .services, .why-us, .portfolio, .testimonials { padding: 3rem 0; }
  .trust { padding: 2.5rem 0; }
  .cta-section { padding: 4rem 0; }
  .section-header.center { margin-bottom: 2rem; }

  /* Footer */
  .footer { padding-top: 3rem; }
  .footer-inner { gap: 1.25rem; padding-bottom: 2rem; }

  /* CTA buttons fill width */
  .cta-actions .btn { max-width: none; }

  /* Testimonials full card */
  .ts-card { flex: 0 0 95%; }

  /* Service card tighter */
  .service-card { padding: 1.5rem; }
}
