:root {
  --coral: #FF6B4A;
  --coral-light: #FF8A6F;
  --coral-dark: #E85535;
  --orange: #FF9A3C;
  --peach: #FFDDD2;
  --peach-light: #FFF0EB;
  --dark: #1A1A2E;
  --dark-mid: #2D2D44;
  --dark-light: #4A4A68;
  --white: #FFFFFF;
  --gray-100: #F7F7FA;
  --gray-200: #EDEDF3;
  --gray-400: #9C9CB5;
  --yellow: #FFD93D;
  --green: #6BCB77;
  --gradient-hero: linear-gradient(135deg, #FF6B4A 0%, #FF9A3C 50%, #FFD93D 100%);
  --gradient-dark: linear-gradient(180deg, #1A1A2E 0%, #2D2D44 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.06);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Space Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo span {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.btn-primary {
  background: var(--gradient-hero);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(255, 107, 74, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 74, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark-mid);
  transform: translateY(-2px);
}

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

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -20%; right: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,107,74,0.12) 0%, rgba(255,154,60,0.06) 50%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero-bg-2 {
  position: absolute;
  bottom: -30%; left: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,217,61,0.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--peach-light);
  color: var(--coral-dark);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fade-in-up 0.8s ease-out;
}

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

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fade-in-up 0.8s ease-out 0.1s both;
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: -4px; right: -4px;
  height: 14px;
  background: var(--yellow);
  opacity: 0.4;
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1deg);
}

.hero p {
  font-size: 1.2rem;
  color: var(--dark-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fade-in-up 0.8s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease-out 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  animation: fade-in-up 0.8s ease-out 0.4s both;
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  animation: fade-in-up 1s ease-out 0.3s both;
}

.hero-mockup {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(26, 26, 46, 0.12), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-mockup:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.mockup-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #28CA41; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  background: var(--white);
  padding: 6px 16px;
  border-radius: 8px;
  margin-left: 8px;
  font-family: 'Space Mono', monospace;
}

.mockup-body {
  padding: 32px;
}

.mockup-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.mockup-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
}

.mockup-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.mockup-title {
  font-size: 0.85rem;
  color: var(--coral);
  font-weight: 500;
}

.mockup-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.mockup-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.mockup-bar {
  height: 10px;
  border-radius: 8px;
  background: var(--gray-200);
}

.mockup-bar:nth-child(1) { width: 100%; }
.mockup-bar:nth-child(2) { width: 80%; }
.mockup-bar:nth-child(3) { width: 60%; }

.mockup-skills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mockup-skill {
  padding: 6px 14px;
  background: var(--peach-light);
  color: var(--coral-dark);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Floating elements */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

.float-card.card-pdf {
  top: 20%; right: -30px;
  animation-delay: 0.5s;
}

.float-card.card-live {
  bottom: 15%; left: -20px;
  animation-delay: 1.5s;
}

.float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.float-icon.pdf { background: #FFE8E3; }
.float-icon.live { background: #E3F9E8; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION COMMON ===== */
.section { padding: 120px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-light);
  line-height: 1.7;
  max-width: 560px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--gray-100); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  counter-reset: step;
}

.step-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  counter-increment: step;
}

.step-card::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Space Mono', monospace;
  font-size: 5rem;
  font-weight: 700;
  position: absolute;
  top: -1px; right: 16px;
  color: var(--gray-200);
  line-height: 1;
  transition: color 0.4s;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(255, 107, 74, 0.12);
}

.step-card:hover::before { color: var(--peach); }

.step-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.step-card:nth-child(1) .step-icon { background: #FFE8E3; }
.step-card:nth-child(2) .step-icon { background: #FFF3DB; }
.step-card:nth-child(3) .step-icon { background: #E3F9E8; }

.step-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.step-card p {
  color: var(--dark-light);
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.feature-card {
  padding: 36px;
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.feature-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(255, 107, 74, 0.15);
}

.feature-card:hover::after { opacity: 0.04; }

.feature-card > * { position: relative; z-index: 1; }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--dark-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.feature-card.featured {
  grid-column: 1 / -1;
  background: var(--gradient-dark);
  border: none;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-card.featured p { color: var(--gray-400); }

.feature-card.featured::after { display: none; }

.featured-visual {
  display: flex;
  gap: 16px;
  align-items: center;
}

.mini-cv, .mini-web {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  border: 1px solid rgba(255,255,255,0.08);
}

.mini-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--coral-light);
  margin-bottom: 12px;
}

.mini-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-bottom: 6px;
}

.mini-bar:nth-child(2) { width: 100%; }
.mini-bar:nth-child(3) { width: 70%; }
.mini-bar:nth-child(4) { width: 85%; }

.sync-arrow {
  font-size: 1.5rem;
  color: var(--coral);
  animation: pulse-arrow 2s infinite;
}

@keyframes pulse-arrow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ===== PRICING ===== */
.pricing { background: var(--gray-100); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.4s;
}

.pricing-card.popular {
  border-color: var(--coral);
  transform: scale(1.04);
  box-shadow: 0 24px 80px rgba(255, 107, 74, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-hero);
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-400);
}

.pricing-desc {
  color: var(--dark-light);
  font-size: 0.9rem;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--dark-mid);
}

.pricing-features li .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #E3F9E8;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: var(--gray-400);
}

.pricing-features li.disabled .check {
  background: var(--gray-200);
  color: var(--gray-400);
}

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

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-mid);
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ===== CTA ===== */
.cta {
  background: var(--gradient-dark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,74,0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.cta .container { position: relative; z-index: 1; }

.cta .section-title { color: var(--white); }
.cta .section-subtitle {
  color: var(--gray-400);
  margin: 0 auto 40px;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 60px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.cta-form input::placeholder { color: var(--gray-400); }
.cta-form input:focus { border-color: var(--coral); }

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--gray-200);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--dark-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark);
  margin-bottom: 20px;
}

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

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

.footer-col ul a {
  text-decoration: none;
  color: var(--dark-light);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--coral); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 520px; margin: 48px auto 0; }
  .float-card.card-pdf { right: -10px; }
  .float-card.card-live { left: -10px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .section { padding: 80px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card.popular { transform: scale(1); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-mockup { transform: none; }
}
