/* ===========================
   Satyam Digital Marketing
   Premium Agency Stylesheet
   =========================== */

:root {
  --navy: #0F172A;
  --navy-light: #1E293B;
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --cyan: #06B6D4;
  --gold: #F59E0B;
  --bg-light: #F8FAFC;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 30px 80px rgba(37, 99, 235, 0.18);
  --gradient-primary: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
  --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
}

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

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

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
}
.nav-brand img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}
.nav-brand .brand-sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gradient-primary);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  transition: transform 0.2s, box-shadow 0.3s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  font-family: inherit;
}
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.5);
}
.btn-outline {
  background: rgba(255,255,255,0.7);
  color: var(--navy);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px);
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(245, 158, 11, 0.5);
}

/* ============ SECTION COMMON ============ */
section { padding: 110px 0; position: relative; }
.section-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.6;
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header .section-subtitle {
  margin: 0 auto;
}
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ HERO ============ */
.hero {
  padding: 160px 0 100px;
  background: radial-gradient(ellipse at top right, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
              #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #B45309;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 900;
  margin-bottom: 24px;
}
.hero p.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.trust-item i {
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  color: var(--cyan);
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 540px;
}
.dashboard-card {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
}
.dashboard-main {
  top: 30px; left: 0; right: 0;
  height: 400px;
  background: linear-gradient(160deg, #fff 0%, #F8FAFC 100%);
  padding: 24px;
}
.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.dash-head h4 {
  font-size: 15px;
  font-weight: 700;
}
.dash-head .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #10B981;
  font-weight: 600;
}
.dash-head .live::before {
  content: '';
  width: 8px; height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.dash-stat {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--border);
}
.dash-stat .label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dash-stat .value {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 4px;
}
.dash-stat .change {
  font-size: 11px;
  color: #10B981;
  font-weight: 600;
  margin-top: 2px;
}
.dash-chart {
  height: 200px;
  position: relative;
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.float-card-1 {
  top: 0; right: -20px;
  animation-delay: 0s;
}
.float-card-2 {
  bottom: 30px; left: -30px;
  animation-delay: 2s;
}
.float-card-3 {
  bottom: -10px; right: 20px;
  animation-delay: 4s;
}
.float-card .icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.float-card .icon.blue { background: var(--gradient-primary); }
.float-card .icon.gold { background: var(--gradient-gold); color: var(--navy); }
.float-card .icon.green { background: linear-gradient(135deg, #10B981, #34D399); }
.float-card .text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.float-card .text span {
  font-size: 12px;
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* ============ TRUSTED MARQUEE ============ */
.trusted-bar {
  padding: 40px 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trusted-bar p {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
.trusted-logos span {
  font-weight: 700;
  font-size: 22px;
  color: #94A3B8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.5px;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
.trusted-logos span:hover {
  opacity: 1;
  color: var(--navy);
}

/* ============ FOUNDER ============ */
.founder {
  background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.founder-photo-wrap {
  position: relative;
}
.founder-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: var(--gradient-primary);
  border-radius: 32px;
  transform: rotate(-3deg);
  opacity: 0.12;
  z-index: 0;
}
.founder-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: var(--gradient-gold);
  border-radius: 32px;
  transform: rotate(3deg);
  opacity: 0.1;
  z-index: 0;
}
.founder-photo {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--gradient-dark);
}
.founder-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.founder-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  box-shadow: var(--shadow-md);
}
.founder-badge .name strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}
.founder-badge .name span {
  font-size: 12px;
  color: var(--text-muted);
}
.founder-badge .linkedin {
  width: 42px; height: 42px;
  background: #0A66C2;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s;
}
.founder-badge .linkedin:hover { transform: scale(1.1); }

.founder-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}
.founder-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.founder-signature {
  font-family: 'Dancing Script', cursive;
  font-size: 38px;
  color: var(--blue);
  margin-top: 24px;
  font-weight: 700;
}
.founder-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.founder-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.founder-stat .num {
  font-size: 36px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.founder-stat .lbl {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 6px;
}

/* ============ SERVICES ============ */
.services {
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 22px;
  background: var(--gradient-primary);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  transition: transform 0.4s;
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-6deg);
}
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, #1877F2, #E1306C); box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, #EA4335, #FBBC04); box-shadow: 0 10px 25px rgba(234, 67, 53, 0.3); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, #34A853, #4285F4); box-shadow: 0 10px 25px rgba(52, 168, 83, 0.3); }
.service-card:nth-child(5) .service-icon { background: linear-gradient(135deg, #8B5CF6, #06B6D4); box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3); }
.service-card:nth-child(6) .service-icon { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); }
.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.service-card > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  display: grid;
  gap: 9px;
}
.service-features li {
  font-size: 14px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ============ WHY CHOOSE ============ */
.why {
  background: var(--gradient-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 40%);
}
.why .container { position: relative; z-index: 2; }
.why .section-title { color: #fff; }
.why .section-subtitle { color: rgba(255,255,255,0.7); }
.why .section-tag {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 32px 28px;
  transition: all 0.4s;
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(6, 182, 212, 0.5);
}
.why-icon {
  width: 56px; height: 56px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 22px;
}
.why-card:nth-child(2) .why-icon { background: var(--gradient-gold); color: var(--navy); }
.why-card:nth-child(3) .why-icon { background: linear-gradient(135deg, #06B6D4, #10B981); }
.why-card:nth-child(4) .why-icon { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.why-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}
.why-card p {
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============ PROCESS ============ */
.process {
  background: var(--bg-light);
}
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0.3;
}
.process-step {
  position: relative;
  text-align: center;
}
.step-num {
  width: 78px; height: 78px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  color: var(--blue);
  margin: 0 auto 22px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: all 0.4s;
}
.process-step:hover .step-num {
  background: var(--gradient-primary);
  color: #fff;
  border-color: var(--blue);
  transform: scale(1.08);
}
.process-step h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============ PORTFOLIO ============ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s;
}
.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.portfolio-thumb {
  position: absolute;
  inset: 0;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255,255,255,0.1);
  transition: transform 0.6s;
}
.portfolio-item:nth-child(1) .portfolio-thumb { background: linear-gradient(135deg, #2563EB, #06B6D4); }
.portfolio-item:nth-child(2) .portfolio-thumb { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.portfolio-item:nth-child(3) .portfolio-thumb { background: linear-gradient(135deg, #10B981, #06B6D4); }
.portfolio-item:nth-child(4) .portfolio-thumb { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.portfolio-item:nth-child(5) .portfolio-thumb { background: linear-gradient(135deg, #0F172A, #2563EB); }
.portfolio-item:nth-child(6) .portfolio-thumb { background: linear-gradient(135deg, #DC2626, #F59E0B); }
.portfolio-item:hover .portfolio-thumb { transform: scale(1.05); }
.portfolio-thumb i {
  font-size: 120px;
  color: rgba(255,255,255,0.25);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  z-index: 2;
}
.portfolio-overlay .cat {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cyan);
  margin-bottom: 8px;
}
.portfolio-overlay h4 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}
.portfolio-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  padding: 10px 0;
}
.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}
.t-stars {
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 16px;
  letter-spacing: 2px;
}
.t-text {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 24px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 19px;
  flex-shrink: 0;
}
.t-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.t-author span {
  font-size: 13px;
  color: var(--text-muted);
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.t-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-btn:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
}

/* ============ RESULTS ============ */
.results {
  background: var(--gradient-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
}
.results .container { position: relative; z-index: 2; }
.results .section-title { color: #fff; }
.results .section-subtitle { color: rgba(255,255,255,0.7); }
.results .section-tag { background: rgba(6, 182, 212, 0.15); color: var(--cyan); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.result-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s;
}
.result-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}
.result-num {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #06B6D4, #F59E0B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.result-card .lbl {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ============ FAQ ============ */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.active {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-q i {
  color: var(--blue);
  font-size: 16px;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-a {
  max-height: 220px;
}
.faq-a p {
  padding: 0 26px 24px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--bg-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(30px, 3.5vw, 42px);
  margin-bottom: 20px;
}
.contact-info > p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-list {
  list-style: none;
  display: grid;
  gap: 20px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-list .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-list span,
.contact-list a {
  font-size: 14.5px;
  color: var(--text-muted);
}
.contact-list a:hover { color: var(--blue); }

.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg-light);
  color: var(--navy);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  display: none;
}
.form-status.show { display: block; }
.form-status.success {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  color: #B91C1C;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand img {
  height: 56px;
  width: 56px;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 18px;
}
.footer-brand h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 22px;
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cyan); }
.footer-contact li {
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact li i {
  color: var(--cyan);
  margin-top: 4px;
  width: 14px;
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.3s;
  animation: pulse-wa 2s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #0F172A;
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #0F172A;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}
@media (max-width: 768px) {
  .wa-tooltip { display: none; }
}
@keyframes pulse-wa {
  0% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid,
  .founder-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid,
  .why-grid,
  .results-grid,
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .process-timeline::before { display: none; }
  .testimonial-card { flex: 0 0 calc((100% - 24px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-visual { height: 480px; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .hero { padding: 130px 0 70px; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform 0.4s;
  }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .services-grid,
  .why-grid,
  .results-grid,
  .portfolio-grid,
  .process-timeline,
  .form-row,
  .founder-stats { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-visual { height: 420px; }
  .float-card { padding: 10px 14px; }
  .float-card .icon { width: 36px; height: 36px; font-size: 15px; }
  .float-card .text strong { font-size: 12px; }
  .float-card .text span { font-size: 11px; }
  .contact-form { padding: 28px 22px; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .container { padding: 0 18px; }
  .founder-badge { left: 12px; right: 12px; padding: 12px 14px; }
}
