/* ============================================================
   SHARP OWL MEDIA — Main Stylesheet
   Color: #0A66C2 (LinkedIn Blue)
   Design: Professional Digital Marketing Agency
   ============================================================ */

@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');

/* ─── Variables ─── */
:root {
  --blue:        #0A66C2;
  --blue-dark:   #064D95;
  --blue-light:  #1A8FE3;
  --blue-pale:   #E8F3FC;
  --navy:        #040D1A;
  --navy-mid:    #0B1E35;
  --white:       #FFFFFF;
  --off-white:   #F5F9FE;
  --gray-100:    #F0F4F9;
  --gray-300:    #BDC9D7;
  --gray-500:    #6B7E94;
  --gray-700:    #2D3E50;
  --text:        #12243A;

  --gradient:    linear-gradient(135deg, #0A66C2 0%, #1A8FE3 100%);
  --gradient-dk: linear-gradient(135deg, #040D1A 0%, #0A66C2 100%);
  --gradient-3:  linear-gradient(135deg, #040D1A 0%, #064D95 45%, #1A8FE3 100%);

  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --shadow:      0 8px 40px rgba(10, 102, 194, 0.13);
  --shadow-lg:   0 24px 80px rgba(10, 102, 194, 0.20);
  --transition:  all 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);

  --font-head:   'Roboto';
  --font-body:   'Roboto';
}

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

/* ─── Utilities ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(10, 102, 194, 0.09);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow--light { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.12); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title--light { color: #fff !important; }
.section-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}
.section-sub--light { color: rgba(255,255,255,0.62) !important; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  padding: 14px 28px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 28px rgba(10,102,194,0.30);
}
.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(10,102,194,0.42);
}
.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline:hover {
  background: var(--blue);
  color: #fff;
}
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover { background: rgba(255,255,255,0.22); color: #fff; }
.btn--white {
  background: #fff;
  color: var(--blue);
}
.btn--white:hover { background: var(--blue-pale); color: var(--blue-dark); transform: translateY(-2px); }
.btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.30);
}
.btn--wa:hover { background: #1ab854; color: #fff; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 32px rgba(10,102,194,0.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  transition: var(--transition);
}
.site-header.scrolled .nav-logo { color: var(--text); }
.nav-logo svg { flex-shrink: 0; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-menu a:hover { color: #fff; }
.nav-menu a:hover::after { width: 100%; }
.site-header.scrolled .nav-menu a { color: var(--gray-500); }
.site-header.scrolled .nav-menu a:hover { color: var(--blue); }
.nav-cta { margin-left: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.site-header.scrolled .hamburger span { background: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--gradient-dk);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(10,102,194,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,143,227,0.20) 0%, transparent 70%);
  pointer-events: none;
}
/* Grid dots */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #00f5aa;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(.7); }
}
.hero-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #60C6FF, #00f5aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255,255,255,0.68);
  margin-bottom: 38px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card-main {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #60C6FF, #0A66C2, #00f5aa);
}
.hero-card-owl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.hero-owl-svg {
  width: 100px; height: 100px;
  filter: drop-shadow(0 12px 40px rgba(10,102,194,0.50));
}
.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-metric {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}
.hero-metric .num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}
.hero-metric .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 3px;
}
/* Floating chips */
.hero-chip {
  position: absolute;
  background: #fff;
  border-radius: 100px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(10,102,194,0.22);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.hero-chip--1 { top: -20px; right: 20px; animation-delay: 0s; }
.hero-chip--2 { bottom: -5px; left: -30px; animation-delay: 1s; }
.hero-chip .chip-dot { width: 8px; height: 8px; border-radius: 50%; }
.hero-chip .chip-dot--green { background: #00D68F; }
.hero-chip .chip-dot--blue { background: var(--blue); }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.60);
  border-radius: 2px;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { opacity:1; transform:translateY(0); }
  100% { opacity:0; transform:translateY(12px); }
}
.hero-scroll span {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
}

/* ============================================================
   CLIENTS STRIP
   ============================================================ */
.clients-strip { background: var(--white); padding: 48px 0; border-bottom: 1px solid var(--gray-100); }
.clients-label {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black-300);
  margin-bottom: 32px;
}
.clients-track-wrap { overflow: hidden; position: relative; }
.clients-track-wrap::before,
.clients-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.clients-track-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.clients-track-wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.clients-track {
  display: flex;
  align-items: center;
  gap: 70px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  align-items:center;
  display: flex;
  overflow:hidden;
  filter: grayscale(1);
  opacity: 0.55;
  transition: var(--transition);
}

.client-logo:hover { 
opacity: 1; 
filter: none; }

.client-logo img{
  height:100px;
  width:auto;
  max-width:100px;
  object-fit:contain;
  display:block;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 26px 32px;
  border: 1.5px solid rgba(10,102,194,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,102,194,0.22);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: var(--gradient);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(10,102,194,0.25);
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-icon svg { width: 30px; height: 30px; stroke: #fff; fill: none; stroke-width: 2; }
.service-num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(10,102,194,0.06);
  line-height: 1;
}
.service-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card:hover .service-link { gap: 10px; }
.service-link svg { width: 16px; height: 16px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual { position: relative; }
.why-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gradient-dk);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.why-img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.why-float-card--1 { top: 40px; right: -30px; }
.why-float-card--2 { bottom: 60px; left: -30px; }
.why-float-icon {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-float-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; }
.why-float-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.why-float-text span { font-size: 12px; color: var(--gray-500); }
.why-content .section-title { text-align: left; }
.why-content .section-sub { text-align: left; margin: 0 0 36px; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(10,102,194,0.08);
  transition: var(--transition);
}
.why-item:hover {
  background: var(--blue-pale);
  border-color: rgba(10,102,194,0.20);
}
.why-item-icon {
  width: 46px; height: 46px;
  background: rgba(10,102,194,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.why-item:hover .why-item-icon { background: var(--gradient); }
.why-item:hover .why-item-icon svg { stroke: #fff; }
.why-item-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; transition: var(--transition); }
.why-item-body h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.why-item-body p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--gradient-3);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='20' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.stat-item {
  flex: 1 1 180px;
  text-align: center;
  padding: 20px 32px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: inline;
}
.stat-suf {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
}
.stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.60);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 8px;
  font-weight: 500;
}
.stat-div {
  width: 1px;
  height: 55px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--navy); position: relative; overflow: hidden; }
.process-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,102,194,0.20) 0%, transparent 70%);
}
.process-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,143,227,0.15) 0%, transparent 70%);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--blue-light));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px; height: 72px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 10px 32px rgba(10,102,194,0.40);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.process-step:hover .process-num {
  transform: scale(1.12);
  box-shadow: 0 16px 48px rgba(10,102,194,0.55);
}
.process-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 10px;
}
.process-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.process-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.50);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { background: var(--off-white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid rgba(10,102,194,0.08);
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(10,102,194,0.22);
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.testi-stars svg { width: 18px; height: 18px; fill: #F4B400; }
.testi-quote {
  font-size: 14px;
  line-height: 1.78;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}
.testi-quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -8px;
  font-size: 3rem;
  color: var(--blue);
  opacity: 0.25;
  font-family: var(--font-head);
  line-height: 1;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.testi-role { font-size: 12px; color: var(--gray-500); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--white); }
.faq-inner { max-width: 780px; margin: 0 auto; padding: 0 20px; }
.faq-wrap { display: flex; flex-direction: column; gap: 14px; margin-top: 52px; }
.faq-item {
  border: 1.5px solid rgba(10,102,194,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(10,102,194,0.12);
}
.faq-q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--blue); }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(10,102,194,0.10);
  position: relative;
  transition: var(--transition);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
}
.faq-icon::before { width: 10px; height: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 2px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--gradient); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.faq-a { display: none; padding: 0 24px 22px; }
.faq-a p { font-size: 14px; line-height: 1.72; color: var(--gray-500); }
.faq-item.open .faq-a { display: block; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gradient-3);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='35' fill='none' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.08'/%3E%3C/svg%3E") repeat;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 0 20px; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}
.cta-sub { font-size: 17px; color: rgba(255,255,255,.62); line-height: 1.7; margin-bottom: 42px; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,.50);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.60);
  transition: var(--transition);
}
.social-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.social-btn svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.50);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--blue-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.50);
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--blue-light); flex-shrink: 0; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p, .footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,.30);
}
.footer-bottom a:hover { color: rgba(255,255,255,.70); }

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section { background: var(--white); }
.portfolio-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-100);
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gradient-3);
  height: 280px;
  position: relative;
  cursor: pointer;
}
.portfolio-item-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: .25;
  transition: var(--transition);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,13,26,0.70);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover .portfolio-item-bg { opacity: .10; transform: scale(1.08); }
.portfolio-overlay h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.portfolio-overlay span {
  font-size: 12px;
  color: rgba(255,255,255,.60);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  z-index: 9999;
  transition: var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 14px 48px rgba(37,211,102,.65); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,.45); }
  50% { box-shadow: 0 8px 52px rgba(37,211,102,.72); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; }
  .stat-div { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 70px 0; }
  .hero-stats { gap: 20px; }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: rgba(4,13,26,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.80);
  transition: var(--transition);
}
.mobile-nav a:hover { color: #fff; }