@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #080a0f;
  --bg-2: #0d1117;
  --bg-3: #111827;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.18);
  --text-primary: #f0f4ff;
  --text-secondary: rgba(240,244,255,0.55);
  --text-muted: rgba(240,244,255,0.3);
  --accent: #6366f1;
  --accent-2: #8b5cf6;
  --accent-glow: rgba(99,102,241,0.3);
  --green: #22c55e;
  --blue: #3b82f6;
  --max-width: 1200px;
  --radius-card: 24px;
  --radius-btn: 100px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.7s var(--ease);
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Particle Canvas */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 140px 0;
  position: relative;
  z-index: 1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(99,102,241,0.12);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(99,102,241,0.25);
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f0abfc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
@keyframes scrollLine {
  0% { height: 0; opacity: 1; }
  100% { height: 60px; opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-0 { transition-delay: 0s; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s ease;
  border-radius: inherit;
}

.btn:hover::after {
  background: rgba(255,255,255,0.08);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 40px rgba(99,102,241,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 0 30px rgba(34,197,94,0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 40px rgba(34,197,94,0.4);
}

.btn-call {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 0 30px rgba(59,130,246,0.25);
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 40px rgba(59,130,246,0.4);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(8,10,15,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.logo-wm {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.12em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

.logo-ave {
  color: #a855f7;
  text-shadow: 
    0 0 5px rgba(168, 85, 247, 0.9),
    0 0 12px rgba(168, 85, 247, 0.7),
    0 0 25px rgba(168, 85, 247, 0.5),
    0 0 45px rgba(168, 85, 247, 0.3),
    0 0 80px rgba(168, 85, 247, 0.1);
  animation: premiumPulse 4s ease-in-out infinite;
}

.logo-nor {
  color: #ffffff;
  text-shadow: 
    0 0 4px rgba(255, 255, 255, 0.4),
    0 0 12px rgba(168, 85, 247, 0.2);
}

.logo-wm-lg {
  font-size: 4rem;
  margin-bottom: 24px;
}

@keyframes premiumPulse {
  0%, 100% {
    text-shadow: 
      0 0 5px rgba(168, 85, 247, 0.9),
      0 0 12px rgba(168, 85, 247, 0.6),
      0 0 30px rgba(168, 85, 247, 0.3);
    opacity: 0.95;
    transform: scale(1);
  }
  50% {
    text-shadow: 
      0 0 12px rgba(192, 132, 252, 1),
      0 0 30px rgba(168, 85, 247, 0.8),
      0 0 60px rgba(168, 85, 247, 0.5),
      0 0 110px rgba(168, 85, 247, 0.2);
    opacity: 1;
    transform: scale(1.02);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  background: rgba(99,102,241,0.15) !important;
  color: var(--accent) !important;
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(99,102,241,0.3) !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: white !important;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav { padding: 16px 20px; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  z-index: 1;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99,102,241,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(139,92,246,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

.hero-heading {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.8rem;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-badge span { color: var(--accent); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 60px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-plus, .stat-extra {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  vertical-align: super;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stats-inner { flex-wrap: wrap; gap: 32px; }
  .stat-item { padding: 0 24px; }
  .stat-divider { display: none; }
}

/* ===== TRUST STRIP (Marquee) ===== */
.trust-strip {
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

.trust-scroll {
  width: 100%;
  overflow: hidden;
}

.trust-scrolling {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.trust-scrolling span {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  background: var(--bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.portfolio-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(99,102,241,0.15);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
}

.portfolio-image {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: top center;
  transition: transform 0.8s var(--ease);
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,10,15,0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover .card-overlay {
  opacity: 1;
}

.overlay-btn {
  background: white;
  color: var(--bg);
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease);
}

.portfolio-card:hover .overlay-btn {
  transform: translateY(0);
}

.card-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(8,10,15,0.75);
  backdrop-filter: blur(8px);
  color: var(--text-secondary);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.portfolio-info {
  padding: 28px 32px;
}

.portfolio-info h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.portfolio-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s ease, color 0.3s;
}

.card-link span {
  transition: transform 0.3s ease;
}

.card-link:hover span {
  transform: translateX(4px);
}

/* ===== CAPABILITIES ===== */
.capabilities {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .cap-grid { grid-template-columns: 1fr; }
}

.cap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
}

.cap-card:hover {
  border-color: var(--border-hover);
  background: rgba(99,102,241,0.05);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cap-image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.cap-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
  display: block;
}

.cap-card:hover .cap-image {
  transform: scale(1.05);
}

.cap-body {
  padding: 32px 36px;
}

.cap-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.cap-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process {
  background: var(--bg);
}

.process-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 5rem;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 48px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  border-color: rgba(99,102,241,0.4);
  background: rgba(99,102,241,0.06);
  transform: translateY(-6px);
}

.process-step-num {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(139,92,246,0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(99,102,241,0.4), rgba(139,92,246,0.4));
  flex-shrink: 0;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  width: 10px;
  height: 10px;
  background: var(--accent-2);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .process-timeline { flex-direction: column; gap: 16px; }
  .process-connector {
    width: 2px; height: 40px;
    background: linear-gradient(180deg, rgba(99,102,241,0.4), rgba(139,92,246,0.4));
  }
  .process-connector::after { right: -4px; top: auto; bottom: -6px; }
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-body {
  margin-top: 1.5rem;
}

.about-body p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Offer Box */
.offer-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 3s ease-in-out infinite;
}

.offer-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.offer-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.offer-box p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.offer-box strong { color: var(--text-primary); }

.offer-list {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.offer-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.offer-list li:last-child { border-bottom: none; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #0f0b2a, #0d1117);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 140px 24px;
}

.cta-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

.cta-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  top: -200px; left: -100px;
}

.cta-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
  bottom: -200px; right: -100px;
  animation-delay: 2s;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ===== STICKY BUTTONS ===== */
.sticky-buttons {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  gap: 10px;
  z-index: 1000;
  background: rgba(8,10,15,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px;
  border-radius: 100px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s var(--ease), opacity 0.4s ease, visibility 0.4s;
}

.sticky-buttons.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sticky-buttons .btn {
  padding: 12px 22px;
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg);
  position: relative;
}

.overall-rating {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

.overall-rating span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 30px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== PREMIUM LAPTOP VISUAL ===== */
.offer-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.offer-laptop {
  position: relative;
  width: 140px;
  perspective: 1000px;
}

.laptop-screen {
  background: #111;
  border: 4px solid #222;
  border-radius: 8px;
  height: 85px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
  transform: rotateX(10deg);
}

.screen-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
  opacity: 0.3;
  position: relative;
}

.screen-content::after {
  content: 'WEB DEMO';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.laptop-base {
  height: 6px;
  background: #333;
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
  position: relative;
  width: 110%;
  left: -5%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .section-title { font-size: 2.2rem; }
  .hero-heading { font-size: 2.8rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
