/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0f0f1a;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ========== TYPOGRAPHY ========== */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.03em; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6c63ff;
  background: rgba(108, 99, 255, 0.08);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: #5a5a6e;
  max-width: 580px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ========== NAV ========== */
#navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  z-index: 1000;
  transition: box-shadow 0.3s, background 0.3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f0f1a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon { font-size: 1.3rem; }
.logo span { color: #6c63ff; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a4a5e;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #6c63ff;
  transition: width 0.3s;
}
.nav-links a:hover { color: #0f0f1a; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: #6c63ff;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: transform 0.25s, background 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #5a52e0 !important; transform: translateY(-2px); color: #fff !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #0f0f1a;
  padding: 4px;
}

/* ========== HERO ========== */
#hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.shape-1 {
  width: 500px; height: 500px;
  background: rgba(108,99,255,0.08);
  top: -200px; right: -100px;
  animation: morphShape 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: rgba(245,87,108,0.05);
  bottom: -100px; left: -100px;
  animation: morphShape 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 300px; height: 300px;
  background: rgba(79,172,254,0.06);
  top: 40%; left: 50%;
  animation: morphShape 12s ease-in-out infinite 2s;
}
@keyframes morphShape {
  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-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text { position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(108, 99, 255, 0.08);
  color: #6c63ff;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(108,99,255,0.12);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #28c840;
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.gradient-text {
  background: linear-gradient(135deg, #6c63ff, #f5576c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: #5a5a6e;
  max-width: 520px;
  margin: 20px 0 32px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: #6c63ff;
  color: #fff;
  box-shadow: 0 4px 16px rgba(108,99,255,0.3);
}
.btn-primary:hover {
  background: #5a52e0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(108,99,255,0.35);
}
.btn-arrow { transition: transform 0.3s; display: inline-block; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-outline {
  background: transparent;
  color: #0f0f1a;
  border: 2px solid #e2e2ea;
}
.btn-outline:hover {
  border-color: #6c63ff;
  color: #6c63ff;
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat p {
  font-size: 0.82rem;
  color: #777;
  margin-top: 2px;
  font-weight: 500;
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #0f0f1a;
  line-height: 1;
}
.stat-plus { font-size: 1.1rem; font-weight: 700; color: #6c63ff; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: #e2e2ea;
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-card-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-card-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ddd;
}
.hero-card-dots span:first-child { background: #ff5f57; }
.hero-card-dots span:nth-child(2) { background: #ffbd2e; }
.hero-card-dots span:nth-child(3) { background: #28c840; }
.mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.mock-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #f5576c);
  flex-shrink: 0;
}
.mock-lines { flex: 1; }
.mock-line {
  height: 10px;
  background: #f0f0f5;
  border-radius: 6px;
  margin-bottom: 8px;
}
.mock-line-lg { height: 14px; }
.mock-hero { margin-bottom: 20px; }
.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mock-card-item {
  height: 60px;
  background: #f5f4ff;
  border-radius: 10px;
  border: 1px solid #e8e6ff;
}
.hero-card-float {
  position: absolute;
  bottom: -18px;
  left: -10px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 6s ease-in-out infinite 2s;
}
.float-icon { font-size: 1.2rem; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.04);
}
.trust-avatars {
  display: flex;
}
.trust-avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid #fff;
  margin-right: -10px;
}
.trust-avatars span:last-child { margin-right: 0; }
.hero-trust p { font-size: 0.85rem; color: #5a5a6e; }

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ========== SERVICES ========== */
#services {
  padding: 100px 0;
  background: #ffffff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid #eeeef4;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  border-color: #d8d6ff;
}
.service-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card > p { font-size: 0.9rem; color: #5a5a6e; line-height: 1.7; margin-bottom: 16px; }
.service-features { list-style: none; }
.service-features li {
  font-size: 0.85rem;
  color: #5a5a6e;
  padding: 5px 0;
}

/* ========== PROCESS ========== */
#process {
  padding: 100px 0;
  background: #f8faff;
}
.process-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
}
.step-number {
  width: 64px; height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #6c63ff;
  border: 2px solid #e8e6ff;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}
.process-step:hover .step-number {
  background: #6c63ff;
  color: #fff;
  border-color: #6c63ff;
  box-shadow: 0 8px 24px rgba(108,99,255,0.25);
}
.step-content h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.step-content p {
  font-size: 0.95rem;
  color: #5a5a6e;
  line-height: 1.7;
  max-width: 450px;
}
.process-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, #d8d6ff, transparent);
  margin-left: 31px;
}

/* ========== WORK ========== */
#work {
  padding: 100px 0;
  background: #ffffff;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.work-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eeeef4;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.work-card-link { text-decoration: none; color: inherit; display: block; }
.work-card-link:hover { color: inherit; }
.work-card:hover .work-overlay { opacity: 1; }
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.work-card-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.work-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(108,99,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 16px 16px 0 0;
  backdrop-filter: blur(4px);
  z-index: 5;
}
.overlay-text {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 8px;
}
.work-placeholder {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
  letter-spacing: 0.02em;
}
.template-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.02em;
}
.work-card-info { padding: 24px; }
.work-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6c63ff;
  background: rgba(108,99,255,0.08);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.work-card-info h3 { margin-bottom: 8px; }
.work-card-info p { font-size: 0.9rem; color: #5a5a6e; line-height: 1.7; }
.work-case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c63ff;
  transition: gap 0.25s;
}
.work-case-link:hover { gap: 10px; }

/* ========== TESTIMONIALS ========== */
#testimonials {
  padding: 100px 0;
  background: #f8faff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #eeeef4;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.05);
}
.testimonial-stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card > p {
  font-size: 0.92rem;
  color: #4a4a5e;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: #888;
}

/* ========== PRICING ========== */
#pricing {
  padding: 100px 0;
  background: #ffffff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border: 1px solid #eeeef4;
  border-radius: 20px;
  padding: 40px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.pricing-card.featured {
  border-color: #6c63ff;
  background: linear-gradient(135deg, #f8f7ff, #fff);
  box-shadow: 0 8px 32px rgba(108,99,255,0.10);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: #6c63ff;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 100px;
}
.pricing-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.pricing-card > p {
  font-size: 0.88rem;
  color: #5a5a6e;
  line-height: 1.7;
  margin-bottom: 20px;
  min-height: 48px;
}
.pricing-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f0f1a;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.pricing-amount small {
  font-size: 1rem;
  font-weight: 500;
  color: #888;
}
.pricing-detail {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: #4a4a5e;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f5f5f8;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li span { color: #43e97b; font-weight: 700; }
.pricing-card .btn-primary {
  display: block;
  text-align: center;
}

/* ========== ABOUT ========== */
#about {
  padding: 100px 0;
  background: #ffffff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual { position: relative; }
.about-image-placeholder {
  background: linear-gradient(135deg, #f0eeff, #f5f4ff);
  border-radius: 24px;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid #eeeef4;
}
.about-avatar {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, #6c63ff, #f5576c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(108,99,255,0.25);
  animation: float 6s ease-in-out infinite;
}
.about-tagline {
  font-size: 1rem;
  color: #6c63ff;
  font-weight: 600;
}
.about-experience-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: #fff;
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border: 1px solid #eeeef4;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.exp-num { font-size: 1.8rem; font-weight: 800; color: #6c63ff; line-height: 1; }
.exp-label { font-size: 0.75rem; color: #888; margin-top: 4px; }
.about-tools {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.about-tools span {
  font-size: 0.8rem;
  padding: 6px 14px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eeeef4;
  font-weight: 500;
  color: #5a5a6e;
}
.about-text .section-label { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 20px; }
.about-text > p {
  color: #5a5a6e;
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 0.98rem;
}
.about-features { margin-top: 24px; margin-bottom: 28px; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}
.feature-check {
  color: #6c63ff;
  font-weight: 700;
  width: 20px;
}

/* ========== CONTACT ========== */
#contact {
  padding: 100px 0;
  background: #f8faff;
}
.contact-card {
  background: linear-gradient(135deg, #0f0f1a, #1a1a35);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}
.contact-left h2 { margin-bottom: 16px; }
.contact-left > p {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 0.98rem;
}
.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.contact-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}
.contact-item-icon { font-size: 1.1rem; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border 0.3s, background 0.3s;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6c63ff;
  background: rgba(255,255,255,0.10);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form select option { color: #0f0f1a; }
.contact-form .btn-primary { margin-top: 4px; }

/* ========== FOOTER ========== */
footer {
  background: #0f0f1a;
  color: #fff;
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-top: 16px; max-width: 300px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  font-size: 1.1rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.footer-social a:hover { opacity: 1; }
.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}
.footer-links ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; padding: 40px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  #hero { padding: 130px 0 60px; min-height: auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 24px 32px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    gap: 18px;
    align-items: flex-start;
  }
  .nav-links.open .nav-cta { align-self: flex-start; }
  .hamburger { display: block; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .work-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .step-number { width: 48px; height: 48px; font-size: 0.9rem; }
  .process-connector { margin-left: 23px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .contact-card { padding: 28px 20px; }
}
