/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #024da1;
  --primary-dark: #013a7a;
  --primary-light: #149BD7;
  --accent: #0bb4e3;
  --dark: #0f1923;
  --dark-2: #1a2836;
  --gray-dark: #32373c;
  --gray: #6b7c8f;
  --gray-light: #b8c5d3;
  --light: #f0f5fa;
  --white: #ffffff;
  --success: #10b981;
  --gradient-primary: linear-gradient(135deg, #024da1 0%, #149BD7 100%);
  --gradient-dark: linear-gradient(135deg, #0f1923 0%, #1a2836 100%);
  --gradient-accent: linear-gradient(135deg, #149BD7 0%, #0bb4e3 100%);
  --shadow-sm: 0 2px 8px rgba(2,77,161,0.08);
  --shadow-md: 0 8px 32px rgba(2,77,161,0.12);
  --shadow-lg: 0 16px 48px rgba(2,77,161,0.16);
  --shadow-xl: 0 24px 64px rgba(2,77,161,0.20);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand { display: flex; align-items: center; gap: 10px; transition: all 0.3s; }
.navbar-logo { height: 28px; filter: brightness(0) invert(1); transition: all 0.3s; }
.navbar-logo-color { height: 32px; display: none; }
.navbar.scrolled .navbar-logo { display: none; }
.navbar.scrolled .navbar-logo-color { display: block; }
.navbar-links { display: flex; align-items: center; gap: 32px; }
.navbar-links a {
  color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.92rem;
  transition: color 0.3s; position: relative;
}
.navbar-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s;
}
.navbar-links a:hover::after { width: 100%; }
.navbar-links .btn-nav::after { display: none; }
.navbar.scrolled .navbar-links a { color: var(--gray-dark); }
.navbar-links a:hover { color: var(--white); }
.navbar.scrolled .navbar-links a:hover { color: var(--primary); }
.btn-nav {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  transition: all 0.3s; cursor: pointer;
}
.btn-nav:hover { background: var(--white); color: var(--primary) !important; border-color: transparent; }
.navbar.scrolled .btn-nav {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white) !important;
}
.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.navbar.scrolled .mobile-toggle { color: var(--primary); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(20,155,215,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(2,77,161,0.12) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape {
  position: absolute; border-radius: 50%; opacity: 0.08;
  animation: floatShape 20s infinite ease-in-out;
}
.hero-shape:nth-child(1) { width: 400px; height: 400px; background: var(--primary-light); top: -100px; right: -50px; }
.hero-shape:nth-child(2) { width: 300px; height: 300px; background: var(--accent); bottom: -80px; left: -60px; animation-delay: -7s; }
.hero-shape:nth-child(3) { width: 200px; height: 200px; background: var(--primary); top: 40%; left: 60%; animation-delay: -14s; }
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }
.hero-content { padding: 40px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(20,155,215,0.15);
  border: 1px solid rgba(20,155,215,0.3);
  padding: 8px 18px; border-radius: 50px;
  color: var(--accent); font-size: 0.85rem; font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-badge i { font-size: 0.75rem; }
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero h1 .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem; color: var(--gray-light);
  margin-bottom: 32px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-bullets {
  display: flex; flex-direction: column; gap: 12px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  margin-bottom: 36px;
}
.hero-bullet {
  display: flex; align-items: center; gap: 12px;
  color: var(--gray-light); font-size: 0.95rem;
}
.hero-bullet-icon {
  width: 24px; height: 24px;
  background: rgba(16,185,129,0.15);
  color: var(--success);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}
.hero-stats {
  display: flex; gap: 36px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-stat { text-align: left; }
.hero-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem; font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: 0.8rem; color: var(--gray); font-weight: 500; margin-top: 2px; }

/* Hero Form Card */
.hero-form-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 32px;
  animation: fadeInUp 1s ease-out 0.3s both;
  position: relative;
}
.hero-form-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--white);
  padding: 6px 20px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(11,180,227,0.3);
}
.hero-form-card h3 {
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
  margin-top: 8px; text-align: center;
}
.hero-form-sub {
  font-size: 0.85rem; color: var(--gray-light);
  margin-bottom: 24px; text-align: center;
}
.hero-form .form-group { margin-bottom: 14px; }
.hero-form .form-group label {
  display: block; font-size: 0.8rem;
  font-weight: 600; color: var(--gray-light);
  margin-bottom: 5px;
}
.hero-form .form-group input,
.hero-form .form-group select,
.hero-form .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s;
  outline: none;
}
.hero-form .form-group input::placeholder,
.hero-form .form-group textarea::placeholder { color: var(--gray); }
.hero-form .form-group input:focus,
.hero-form .form-group select:focus,
.hero-form .form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.1);
}
.hero-form .form-group select { cursor: pointer; appearance: none; }
.hero-form .form-group select option { background: var(--dark); color: var(--white); }
.hero-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-form .btn-submit {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 14px;
  border: none; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(2,77,161,0.35);
  margin-top: 4px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.hero-form .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(2,77,161,0.5); }
.hero-form .form-note {
  text-align: center; font-size: 0.75rem;
  color: var(--gray); margin-top: 12px;
}
.hero-form .form-note i { color: var(--success); }

/* ===== TRUSTED BY — Marquee ===== */
.trusted {
  padding: 40px 0;
  background: var(--light);
  border-top: 1px solid rgba(2,77,161,0.06);
  border-bottom: 1px solid rgba(2,77,161,0.06);
}
.trusted-label-wrap { text-align: center; margin-bottom: 28px; }
.trusted-label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--gray); text-transform: uppercase;
  letter-spacing: 0.1em;
}
.marquee { position: relative; max-width: 1200px; margin: 0 auto; overflow: hidden; }
.marquee-track {
  display: flex; align-items: center;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-track img {
  height: 55px; width: auto;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: all 0.3s;
  flex-shrink: 0;
  margin: 0 40px;
}
.marquee-track img:hover { opacity: 1; filter: grayscale(0%) brightness(1); transform: scale(1.05); }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION BASE ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 1200px; margin: 0 auto 64px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(2,77,161,0.08);
  color: var(--primary);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--dark);
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-desc { font-size: 1.05rem; color: var(--gray); line-height: 1.7; }

/* ===== SERVICES ===== */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border: 1px solid rgba(2,77,161,0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-primary);
  transform: scaleX(0); transition: transform 0.4s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(2,77,161,0.15); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(2,77,161,0.08) 0%, rgba(20,155,215,0.08) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary);
  margin-bottom: 24px; transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--gradient-primary); color: var(--white); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.service-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.65; }

/* ===== WHY US ===== */
.why-us { background: var(--gradient-dark); position: relative; overflow: hidden; }
.why-us::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(20,155,215,0.1) 0%, transparent 60%);
}
.why-us .container { position: relative; z-index: 2; }
.why-us .section-title { color: var(--white); }
.why-us .section-desc { color: var(--gray-light); }
.why-us .section-label { background: rgba(20,155,215,0.15); color: var(--accent); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 64px; }
.stat-card {
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 24px; transition: all 0.3s;
}
.stat-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: var(--gray-light); font-weight: 500; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 28px; transition: all 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.why-card-icon {
  width: 48px; height: 48px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white);
  margin-bottom: 20px;
}
.why-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--gray-light); line-height: 1.65; }

/* ===== PORTFOLIO — Screenshot Cards ===== */
.portfolio { background: var(--light); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.portfolio-item {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
}
.portfolio-item:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(2,77,161,0.15); }
.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.portfolio-item:hover img { transform: scale(1.03); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,25,35,0.88) 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.portfolio-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--accent);
  font-weight: 600;
  margin-top: 6px;
  transition: gap 0.3s;
}
.portfolio-item:hover .portfolio-link { gap: 10px; }
.portfolio-cta {
  text-align: center; margin-top: 48px;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 14px 36px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(2,77,161,0.3);
}

/* ===== PROCESS ===== */
.process { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 64px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
/* Vertical center line */
.process-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 24px; bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--accent) 100%);
  opacity: 0.18;
  transform: translateX(-50%);
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  background: var(--light);
  transition: all 0.3s;
  position: relative;
}
/* Horizontal connector line from step to center */
.process-step::after {
  content: '';
  position: absolute;
  top: 42px;
  width: 32px;
  height: 2px;
  background: var(--primary-light);
  opacity: 0.2;
}
/* Left column steps: line goes right */
.process-step:nth-child(odd)::after {
  right: -48px;
}
/* Right column steps: line goes left */
.process-step:nth-child(even)::after {
  left: -48px;
}
.process-step:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.process-step-num {
  min-width: 48px; height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(2,77,161,0.2);
  position: relative;
  z-index: 2;
}
.process-step-text { flex: 1; }
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.process-step p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.process-step-last {
  grid-column: 1 / -1;
  max-width: 420px;
  margin: 0 auto;
}
.process-step-last::after { display: none; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(2,77,161,0.06);
  transition: all 0.3s;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars i { color: #f59e0b; font-size: 0.85rem; }
.testimonial-text {
  font-size: 0.95rem; color: var(--gray-dark);
  line-height: 1.7; margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 0.95rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testimonial-role { font-size: 0.8rem; color: var(--gray); }
.testimonial-quote-icon {
  position: absolute; top: 24px; right: 28px;
  font-size: 2rem; color: rgba(2,77,161,0.06);
}

/* ===== FAQ / SSS ===== */
.faq { background: var(--white); }
.faq-grid { max-width: 1200px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(2,77,161,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(2,77,161,0.15); }
.faq-item.faq-open { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.3s;
  gap: 16px;
}
.faq-item.faq-open .faq-question { background: rgba(2,77,161,0.03); }
.faq-question h3 {
  font-size: 1rem; font-weight: 600;
  color: var(--dark); flex: 1;
  line-height: 1.4;
}
.faq-item.faq-open .faq-question h3 { color: var(--primary); }
.faq-toggle {
  width: 32px; height: 32px;
  background: rgba(2,77,161,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--primary);
  transition: all 0.3s; flex-shrink: 0;
}
.faq-item.faq-open .faq-toggle {
  background: var(--gradient-primary);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-answer-inner {
  padding: 4px 24px 20px;
  font-size: 0.92rem; color: var(--gray);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-dark);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 30% 50%, rgba(2,77,161,0.15) 0%, transparent 60%),
              radial-gradient(ellipse 40% 60% at 70% 80%, rgba(20,155,215,0.1) 0%, transparent 50%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-inner { text-align: center; max-width: 1200px; margin: 0 auto; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p { font-size: 1.05rem; color: var(--gray-light); margin-bottom: 36px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient-primary);
  color: var(--white); padding: 16px 36px;
  border-radius: 50px; font-weight: 700;
  font-size: 1rem; border: none; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(2,77,161,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(2,77,161,0.45); }
.btn-secondary-light {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white); padding: 14px 32px;
  border-radius: 50px; font-weight: 600;
  font-size: 1rem; cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary-light:hover { border-color: var(--accent); color: var(--accent); }

/* ===== CONTACT INFO ===== */
.contact-info-section {
  padding: 72px 0;
  background: var(--light);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-info-item {
  text-align: center;
  padding: 36px 24px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.contact-info-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.contact-info-item:hover::before { transform: scaleX(1); }
.contact-info-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.contact-info-icon {
  width: 56px; height: 56px;
  background: rgba(2,77,161,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.25rem;
  color: var(--primary);
  transition: all 0.3s;
}
.contact-info-item:hover .contact-info-icon {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(2,77,161,0.25);
}
.contact-info-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.contact-info-item p {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
  font-weight: 500;
}
.contact-info-item a {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}
.contact-info-item a:hover { color: var(--primary); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-content {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 24px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--gray); font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.82rem; color: var(--gray); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.9rem;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gradient-primary); color: var(--white); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: fadeInUp 1s ease-out 1s both;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-bullets { align-items: center; }
  .hero-stats { justify-content: center; }
  .hero-form-card { max-width: 460px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .mobile-toggle { display: block; }
  .navbar-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .navbar-links.active a { color: var(--dark) !important; padding: 8px 0; }
  .navbar-links.active .btn-nav { display: block; width: 100%; text-align: center; padding: 14px 24px; margin-top: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .process-step::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: auto; padding-top: 70px; padding-bottom: 24px; }
  .hero-content { padding: 16px 0 0; }
  .hero-badge { margin-bottom: 16px; }
  .hero h1 { margin-bottom: 12px; }
  .hero-desc { margin-bottom: 16px; }
  .hero-bullets { display: none; }
  .hero-stats { display: none; }
  .hero-form-card { margin-bottom: 40px; padding: 28px 24px; text-align: left; }
  .hero-form .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .marquee-track img { height: 36px; margin: 0 20px; }
  .marquee-track { animation-duration: 20s; }
}
