:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-primary: #f5f7fa;
  --text-secondary: #a8b2c7;
  --text-muted: #6b7280;
  --accent-primary: #4f7cff;
  --accent-secondary: #56d6b4;
  --accent-gold: #fbbf24;
  --accent-pink: #ec4899;
  --gradient-primary: linear-gradient(135deg, #4f7cff 0%, #56d6b4 100%);
  --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #1a2340 50%, #0a0e1a 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(79, 124, 255, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

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

/* Floating blobs */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: float 20s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-primary);
  top: -150px;
  left: -150px;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: var(--accent-pink);
  top: 40%;
  right: -200px;
  animation-delay: -5s;
}

.blob-3 {
  width: 450px;
  height: 450px;
  background: var(--accent-secondary);
  bottom: -100px;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Glassmorphism utility */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: rgba(10, 14, 26, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(10, 14, 26, 0.85);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  font-family: 'Space Grotesk', sans-serif;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  font-weight: 800;
  font-size: 16px;
  color: white;
  box-shadow: var(--shadow-glow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 20px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 24px rgba(79, 124, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(79, 124, 255, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  margin-top: 16px;
}

/* Hero */
.hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.8s ease;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(86, 214, 180, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(86, 214, 180, 0); }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #a8b2c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-intro {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.stat-card {
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.5s both;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.badge-item svg {
  color: var(--accent-secondary);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
section {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(79, 124, 255, 0.12);
  color: var(--accent-primary);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 17px;
}

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

.service-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(79, 124, 255, 0.3);
  box-shadow: 0 20px 50px rgba(79, 124, 255, 0.15);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 16px;
  color: white;
  margin-bottom: 20px;
  box-shadow: var(--shadow-glow);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 14px;
}

.feature-list {
  list-style: none;
  margin-bottom: 20px;
}

.feature-list li {
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list li::before {
  content: '✓';
  color: var(--accent-secondary);
  font-weight: 700;
}

.service-cta {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s ease;
  display: inline-block;
}

.service-cta:hover {
  gap: 12px;
}

/* Stats section */
.stats-section {
  padding: 60px 0;
}

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

.big-stat {
  padding: 40px 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.big-stat:hover {
  transform: scale(1.03);
}

.big-stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.big-stat-label {
  color: var(--text-secondary);
  font-size: 15px;
}

/* Timeline / Process */
.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
  opacity: 0.4;
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
}

.timeline-dot {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: var(--shadow-glow);
  z-index: 2;
}

.timeline-content {
  flex: 1;
  padding: 24px;
}

.timeline-content h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* Article */
.article-section {
  padding: 90px 0;
}

.article {
  max-width: 820px;
  margin: 0 auto;
}

.article h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-glass);
  letter-spacing: -0.01em;
}

.article h2:first-child {
  margin-top: 0;
}

.article h3 {
  font-size: 1.25rem;
  margin: 32px 0 14px;
  color: var(--text-primary);
}

.article p {
  color: var(--text-secondary);
  font-size: 16.5px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.inline-link {
  color: var(--accent-primary);
  font-weight: 600;
  border-bottom: 1px dashed var(--accent-primary);
  transition: opacity 0.2s ease;
}

.inline-link:hover {
  opacity: 0.8;
}

.styled-list {
  list-style: none;
  margin: 16px 0 24px;
  padding-left: 0;
}

.styled-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-secondary);
  border-bottom: 1px dashed var(--border-glass);
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(79, 124, 255, 0.5);
}

/* Callout boxes */
.callout-box {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-left: 4px solid var(--accent-secondary);
  border-radius: var(--radius-md);
  margin: 28px 0;
  backdrop-filter: blur(10px);
}

.tip-box {
  border-left-color: var(--accent-secondary);
}

.callout-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.callout-content h4 {
  margin-bottom: 6px;
  color: var(--accent-secondary);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.callout-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 15px;
}

/* Comparison table */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
}

.comparison-table th {
  background: rgba(79, 124, 255, 0.1);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--border-glass);
}

.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 14.5px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Stats box */
.stats-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 28px 0;
  backdrop-filter: blur(10px);
}

.stats-box-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stats-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stats-box-grid strong {
  display: block;
  font-size: 32px;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stats-box-grid span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Checklist */
.checklist {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 28px 0;
  backdrop-filter: blur(10px);
}

.checklist-title {
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent-secondary);
  font-size: 16px;
}

.checklist ul {
  list-style: none;
}

.checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-secondary);
  font-size: 15px;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--accent-secondary);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

/* Pros Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.pros-card, .cons-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.pros-card {
  border-top: 3px solid var(--accent-secondary);
}

.cons-card {
  border-top: 3px solid var(--accent-gold);
}

.pros-card h4 {
  color: var(--accent-secondary);
  margin-bottom: 14px;
}

.cons-card h4 {
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.pros-card ul, .cons-card ul {
  list-style: none;
}

.pros-card li, .cons-card li {
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 14.5px;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.4s ease;
  border: 1px solid var(--border-glass);
}

.portfolio-card:hover {
  transform: translateY(-6px);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

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

.abstract-1 {
  background: linear-gradient(135deg, #4f7cff 0%, #0a0e1a 60%, #56d6b4 100%);
}
.abstract-2 {
  background: linear-gradient(45deg, #56d6b4 0%, #0a0e1a 50%, #ec4899 100%);
}
.abstract-3 {
  background: linear-gradient(225deg, #fbbf24 0%, #0a0e1a 50%, #4f7cff 100%);
}
.abstract-4 {
  background: linear-gradient(90deg, #ec4899 0%, #0a0e1a 60%, #56d6b4 100%);
}
.abstract-5 {
  background: linear-gradient(315deg, #4f7cff 0%, #56d6b4 50%, #0a0e1a 100%);
}
.abstract-6 {
  background: linear-gradient(180deg, #fbbf24 0%, #ec4899 50%, #0a0e1a 100%);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 26, 0.95) 0%, transparent 60%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.portfolio-overlay .tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(79, 124, 255, 0.2);
  border: 1px solid rgba(79, 124, 255, 0.3);
  border-radius: 100px;
  font-size: 11px;
  margin-bottom: 10px;
  width: fit-content;
  font-weight: 600;
}

.portfolio-overlay h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.portfolio-overlay p {
  color: var(--text-secondary);
  font-size: 13px;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(79, 124, 255, 0.3);
}

.faq-item.active {
  border-color: var(--accent-primary);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(79, 124, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--accent-primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.testimonial-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.rating {
  color: var(--accent-gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 15px;
}

.author-location {
  color: var(--text-muted);
  font-size: 13px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

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

.info-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.info-content h4 {
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.info-content a, .info-content p {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

.info-content a:hover {
  color: var(--accent-primary);
}

.contact-form {
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(79, 124, 255, 0.04);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 24px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-primary);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-contact li {
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  gap: 8px;
}

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

/* Responsive */
@media (max-width: 960px) {
  .services-grid,
  .portfolio-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .nav-links, .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-glass);
  }
}

@media (max-width: 640px) {
  .services-grid,
  .portfolio-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-box-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline-dot {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}