:root {
  --bg: #080808;
  --surface: #111111;
  --surface-hover: #1a1a1a;
  --surface-muted: #0d0d0d;
  --text: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.7);
  --muted: #A0A0A0;
  --accent: #D6B25E;
  --accent-glow: rgba(214,178,94,0.15);
  --accent-subtle: rgba(214,178,94,0.08);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.14);
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-heading: 'Bodoni Moda', 'Times New Roman', serif;
  --font-body: 'Jost', system-ui, -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;
  --space-6xl: 160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-2xl);
}

.section {
  padding: var(--space-6xl) 0;
  position: relative;
}

/* -- Section Dividers -- */
.section:not(.hero) {
  border-top: 1px solid rgba(214,178,94,0.08);
}

.section:not(.hero)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(75%, 800px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,178,94,0.55) 25%, rgba(214,178,94,0.55) 75%, transparent);
  z-index: 1;
}

.section:not(.hero)::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--bg);
  border: 1px solid rgba(214,178,94,0.55);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(214,178,94,0.18), inset 0 0 4px rgba(214,178,94,0.1);
  z-index: 2;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 560px;
}

/* -- Navigation -- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all 0.5s var(--ease-out-expo);
}
.nav.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: var(--space-md) 0;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 12px var(--accent-glow);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--text); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--text); }
.nav-link.active::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: var(--bg);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  background: #c49f4a;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(214,178,94,0.2);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* -- Hero -- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.7) 40%, rgba(8,8,8,0.75) 70%, rgba(8,8,8,0.95) 100%),
    linear-gradient(90deg, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.4) 50%, rgba(8,8,8,0.88) 100%),
    url('https://images.unsplash.com/photo-1631624217902-d14c634ab17c?q=100&w=1920&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(214,178,94,0.3), transparent);
  top: -200px; right: -150px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
  bottom: -100px; left: -100px;
  animation-delay: 3s;
  animation-duration: 10s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(214,178,94,0.2), transparent);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
  animation-duration: 12s;
}

@keyframes float {
  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-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-2xl);
  padding-top: 80px;
}
.hero-text { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--accent-subtle);
  border: 1px solid rgba(214,178,94,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--accent);
  margin-bottom: var(--space-xl);
  animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.1s both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.2s both;
}
.hero-title-accent { color: var(--accent); font-style: italic; }

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--space-2xl);
  animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s var(--ease-out-expo) 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: #c49f4a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(214,178,94,0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.04);
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.3s both;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.hero-glass {
  width: 340px;
  height: 440px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
}
.hero-glass-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-glass-shape-1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(214,178,94,0.15), transparent 70%);
  top: -40px; right: -60px;
}
.hero-glass-shape-2 {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, rgba(214,178,94,0.2), rgba(255,255,255,0.05));
  bottom: 60px; left: -40px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blob 8s ease-in-out infinite;
}
.hero-glass-shape-3 {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(214,178,94,0.1));
  top: 120px; left: 80px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blob 10s ease-in-out infinite reverse;
}
@keyframes blob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg); }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: rotate(180deg); }
}

.hero-floating-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: floatCard 6s ease-in-out infinite;
}
.hero-floating-card-1 {
  top: 40px; right: -20px;
  animation-delay: 0s;
}
.hero-floating-card-2 {
  bottom: 20px; left: -30px;
  animation-delay: -3s;
}
.hero-floating-card-inner {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-subtle), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-floating-card-inner svg {
  width: 32px; height: 32px;
  color: var(--accent);
  opacity: 0.8;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -- Section headers -- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

/* -- Services -- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(214,178,94,0.2);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.service-card:hover .service-icon-wrapper {
  background: var(--accent-subtle);
  border-color: rgba(214,178,94,0.2);
}
.service-icon-wrapper {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.service-icon-wrapper svg {
  width: 24px; height: 24px;
  color: var(--accent);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}
.service-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* -- Portfolio -- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.portfolio-card:hover {
  border-color: rgba(214,178,94,0.2);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.portfolio-mockup {
  width: 85%;
  height: 75%;
  background: linear-gradient(135deg, var(--surface-hover), var(--surface));
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
}
.portfolio-mockup-bar {
  height: 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
}
.portfolio-mockup-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.portfolio-mockup-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  opacity: 0;
  transition: all var(--transition);
}
.portfolio-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.portfolio-overlay p {
  color: var(--muted);
  font-size: 0.875rem;
}

/* -- Process -- */
.process {
  position: relative;
}
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-lg);
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: default;
}
.process-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  transition: all var(--transition);
  position: relative;
}
.process-step:hover .process-step-num {
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
  transform: scale(1.05);
}
.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.process-step p {
  color: var(--muted);
  font-size: 0.875rem;
}

/* -- Tech -- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-lg);
}
.tech-logo {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.tech-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--accent-subtle), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.tech-logo:hover::before { opacity: 1; }
.tech-logo:hover {
  border-color: rgba(214,178,94,0.2);
  transform: translateY(-2px);
}
.tech-logo svg { width: 40px; height: 40px; position: relative; z-index: 1; }
.tech-logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.6;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.tech-logo:hover span { opacity: 1; color: var(--accent); }

/* -- Testimonials -- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(214,178,94,0.2);
  transform: translateY(-2px);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: rgba(214,178,94,0.1);
  pointer-events: none;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}
.testimonial-stars svg { width: 16px; height: 16px; color: var(--accent); }
.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-subtle), rgba(255,255,255,0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
}
.testimonial-company {
  color: var(--muted);
  font-size: 0.8125rem;
}

/* -- Statistics -- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.stat-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.stat-card:hover {
  border-color: rgba(214,178,94,0.2);
  transform: translateY(-2px);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.stat-label {
  color: var(--muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* -- Why Choose Us -- */
.why-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.78) 30%, rgba(8,8,8,0.78) 70%, rgba(8,8,8,0.95) 100%),
    linear-gradient(90deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.55) 50%, rgba(8,8,8,0.92) 100%),
    url('https://images.unsplash.com/photo-1541746972996-4e0b0f43e02a?q=100&w=2000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
}
.why-section .container {
  position: relative;
  z-index: 1;
}
.why-section .why-card {
  background: rgba(17,17,17,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.why-card {
  padding: var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  cursor: default;
}
.why-card:hover {
  border-color: rgba(214,178,94,0.15);
  background: var(--surface-hover);
  transform: translateY(-2px);
}
.why-card-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.why-card-icon svg {
  width: 20px; height: 20px;
  color: var(--accent);
}
.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.why-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* -- CTA -- */
.cta-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-3xl);
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  position: relative;
  overflow: hidden;
}
.cta-wrapper::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: 0; right: -200px;
  pointer-events: none;
}

/* -- Contact Info Left -- */
.cta-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.cta-contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
a.cta-contact-card:hover {
  border-color: rgba(214,178,94,0.3);
  background: var(--accent-subtle);
  transform: translateY(-1px);
}
.cta-contact-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cta-contact-whatsapp { background: rgba(37,211,102,0.15); color: #25D366; }
.cta-contact-email { background: rgba(214,178,94,0.12); color: var(--accent); }
.cta-contact-hours { background: rgba(255,255,255,0.06); color: var(--text-secondary); }
.cta-contact-label {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2px;
}
.cta-contact-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* -- Contact Form -- */
.cta-form-col {
  position: relative;
  z-index: 1;
}
.cta-form {
  width: 100%;
}
.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.cta-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.cta-form-full {
  margin-bottom: var(--space-lg);
}
.cta-form-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 4px;
}
.cta-form-input {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.cta-form-input::placeholder {
  color: rgba(255,255,255,0.25);
}
.cta-form-input:focus {
  border-color: rgba(214,178,94,0.5);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.cta-form-textarea {
  resize: vertical;
  min-height: 120px;
}
.cta-form select.cta-form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A0A0A0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.cta-form select.cta-form-input option {
  background: var(--surface);
  color: var(--text);
}
.cta-form-submit {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--accent);
  color: var(--bg);
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.cta-form-submit:hover {
  background: #c49f4a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(214,178,94,0.25);
}

/* -- Footer -- */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-4xl) 0 var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.footer-brand-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.footer-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
  color: var(--text);
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.875rem;
  padding: var(--space-xs) 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8125rem;
}
.footer-socials {
  display: flex;
  gap: var(--space-md);
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-socials a svg { width: 16px; height: 16px; transition: all var(--transition); }
.footer-socials a:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
}
.footer-socials a:hover svg { color: var(--accent); }

/* -- Scroll animations -- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all var(--transition-slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- Responsive -- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto var(--space-2xl); }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; height: 350px; }
  .hero-glass { width: 260px; height: 340px; }
  .hero-floating-card-1 { right: 0; }
  .hero-floating-card-2 { left: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .process-timeline::before { display: none; }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 var(--space-xl); }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .section { padding: var(--space-4xl) 0; }
  .cta-wrapper { grid-template-columns: 1fr; gap: var(--space-2xl); }
}

@media (max-width: 768px) {
  .hero-visual { height: 280px; }
  .hero-glass { width: 220px; height: 280px; }
  .hero-floating-card { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .cta-wrapper { padding: var(--space-xl); }
  .cta-form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .section { padding: var(--space-3xl) 0; }
  .container { padding: 0 var(--space-lg); }
  .section-title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .nav-inner { padding: 0 var(--space-lg); }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
}

/* -- WhatsApp Float -- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  transition: all var(--transition);
  cursor: pointer;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsappPulse 2s ease-out infinite;
}
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(37,211,102,0.4);
  animation: whatsappPulse 2s ease-out 0.6s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
}
@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* -- Reduced motion -- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}