:root[data-theme="dark"],
:root {
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --bg-card: #1a2332;
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-light: #4ade80;
  --text: #ffffff;
  --text-muted: #94a3b8;
  --border: #30363d;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

:root[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-card: #ffffff;
  --green: #ff8c00;
  --green-dark: #e67e00;
  --green-light: #ffa500;
  --text: #1a1a1a;
  --text-muted: #666666;
  --border: #e0e0e0;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

:root[data-theme="light"] {
  --green: #ff8c00;
}

[data-theme="light"] .cta-section {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
}

[data-theme="light"] .badge-icon-wrap {
  background: rgba(255, 140, 0, 0.1);
  border-color: rgba(255, 140, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.1);
}

[data-theme="light"] .badge:hover .badge-icon-wrap {
  background: rgba(255, 140, 0, 0.18);
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.3);
}

[data-theme="light"] .badge:hover .badge-icon {
  filter: drop-shadow(0 0 6px rgba(255, 140, 0, 0.5));
}

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

html {
  scroll-behavior: smooth;
}

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

/* Navbar */
.navbar {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.navbar-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

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

.nav-links .btn {
  padding: 0.45rem 1.2rem;
  font-size: 0.9rem;
  color: var(--bg-primary) !important;
  background: var(--green) !important;
  display: inline-block;
  cursor: pointer;
}

.nav-links .btn-outline {
  background: transparent !important;
  color: var(--green) !important;
  border: 2px solid var(--green) !important;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  top: 100%;
  right: 0;
  z-index: 1001;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1px solid var(--border);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  padding-left: 1.2rem;
}

/* Theme Toggle */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.45rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: var(--green);
  color: var(--green);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--green);
  color: var(--bg-primary);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
}

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

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--bg-primary);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-danger {
  background: #ef4444;
  color: white;
}

.btn-danger:hover {
  background: #dc2626;
}

/* Forms */
input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

.form-group small {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  min-height: 600px;
}

.hero-content {
  max-width: 700px;
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.hero-resume {
  width: 200px;
  height: 280px;
  flex-shrink: 0;
  animation: floatResume 3s ease-in-out infinite;
}

.hero-resume-left {
  animation-delay: 0s;
  opacity: 0;
  animation: floatResume 3s ease-in-out infinite, fadeInOut 3s ease-in-out infinite;
}

.hero-resume-right {
  animation-delay: 1s;
  opacity: 0;
  animation: floatResume 3s ease-in-out infinite 1s, fadeInOut 3s ease-in-out infinite 1s;
}

@keyframes floatResume {
  0%, 100% {
    transform: translateY(0px) rotateZ(-5deg);
  }
  50% {
    transform: translateY(-30px) rotateZ(5deg);
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 .highlight {
  color: #ef4444;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.badges {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: nowrap;
  margin: 3rem 0;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
  padding: 1rem 0;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: default;
  min-width: max-content;
  white-space: nowrap;
}

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

.badge-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 2.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.15);
  animation: iconBounce 3s ease-in-out infinite;
}

.badge:nth-child(1) .badge-icon-wrap { animation-delay: 0s; }
.badge:nth-child(2) .badge-icon-wrap { animation-delay: 0.4s; }
.badge:nth-child(3) .badge-icon-wrap { animation-delay: 0.8s; }
.badge:nth-child(4) .badge-icon-wrap { animation-delay: 1.2s; }

.badge:hover .badge-icon-wrap {
  background: rgba(34, 197, 94, 0.2);
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.35);
  transform: scale(1.08);
}

.badge-icon {
  width: 40px;
  height: 40px;
  color: var(--green);
  transition: all 0.3s ease;
}

.badge:hover .badge-icon {
  filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.6));
}

.badge-text {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3px;
  min-width: 120px;
  transition: color 0.3s ease;
}

.badge:hover .badge-text {
  color: var(--green);
}

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

@keyframes iconRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Lead Form in Hero */
.lead-form {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-top: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0.8rem;
  margin-bottom: 0;
}

.lead-form-grid input {
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
}

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

  .hero {
    flex-direction: column;
    gap: 2rem;
    min-height: auto;
    padding: 2rem 1rem;
  }

  .hero-resume {
    width: 140px;
    height: 196px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .badges {
    gap: 1.5rem;
  }

  .badge-icon-wrap {
    width: 60px;
    height: 60px;
  }

  .badge-icon {
    width: 30px;
    height: 30px;
  }

  .badge-text {
    font-size: 0.75rem;
  }
}

/* Section Styling */
section {
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

section h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

section > p:first-of-type {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

/* How It Works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.step-number {
  width: 55px;
  height: 55px;
  background: var(--green);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 0.75rem;
}

.step h3 {
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

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

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
  position: relative;
  transition: all 0.3s;
  animation: fadeInUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  min-height: auto;
}

.price-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.15);
}

.price-card.popular {
  border: 2px solid #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(13, 17, 23, 0) 100%);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3), 0 0 60px rgba(245, 158, 11, 0.15);
}

.price-card.popular:hover {
  border-color: #f59e0b;
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.5), 0 0 80px rgba(245, 158, 11, 0.25), 0 20px 40px rgba(245, 158, 11, 0.2);
}

.price-card.popular::before {
  content: "POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.7rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.1rem;
  color: var(--text);
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  margin: 0.3rem 0 0;
}

.price-card.popular .price-amount {
  color: #f59e0b;
}

.price-amount span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.regular-price {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 0.5rem;
  font-weight: 500;
}

.price-period {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
}

.features-list {
  list-style: none;
  margin: 0.7rem 0;
  flex-grow: 1;
}

.features-list li {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.3;
}

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

.features-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0;
}

.price-card.popular .features-list li::before {
  color: #f59e0b;
}

.price-card .btn {
  width: 100%;
  margin-top: 0.8rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.price-card.popular .btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  border: none;
}

.price-card.popular .btn:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

/* Why Choose Us */
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-card {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Resume Samples */
.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.sample-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.8s ease-out;
}

.sample-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.2);
}

.sample-preview {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  min-height: 280px;
  flex-grow: 1;
}

.resume-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--green);
}

.resume-header h4 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.resume-header .job-title {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
}

.resume-section {
  margin-bottom: 1rem;
}

.resume-section h5 {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.resume-section p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.sample-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--green);
  color: var(--bg-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.sample-download {
  padding: 0.75rem 1.5rem;
  background: var(--green);
  color: var(--bg-primary);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sample-download:hover {
  background: var(--green-dark);
  transform: scale(1.02);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  animation: fadeInUp 0.8s ease-out;
}

.testimonial p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-style: italic;
  font-size: 0.9rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--green);
  font-size: 0.9rem;
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
}

/* FAQ */
.faq-container {
  max-width: 700px;
  margin: 2rem auto 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(34, 197, 94, 0.1);
}

.faq-toggle {
  transition: transform 0.3s;
  font-size: 1.2rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(22, 163, 74, 0.04) 100%);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 16px;
  padding: 5rem 2rem;
  margin: 2rem 0 0;
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.cta-btn {
  margin-top: 0.5rem;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.5);
}

/* Footer */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--green);
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--green);
}

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

/* Get Started Floating Button */
.floating-cta-button {
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 998;
  background: var(--green);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.floating-cta-button:hover {
  background: var(--green-dark);
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(34, 197, 94, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.floating-cta-icon {
  font-size: 1.8rem;
  animation: rocketFloat 3s ease-in-out infinite;
}

.floating-cta-text {
  display: none;
  font-size: 0.65rem;
  color: var(--bg-primary);
  font-weight: 700;
}

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

/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background: #20ba5a;
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5), 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-button .whatsapp-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

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

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ===== HAMBURGER MOBILE NAV ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}
.nav-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    z-index: 1050;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links li a,
  .nav-links li .theme-toggle {
    display: block;
    width: 100%;
    padding: 0.9rem 1.5rem;
    border-radius: 0;
    font-size: 1rem;
    text-align: left;
    color: var(--text-muted);
  }
  .nav-links li a:hover { color: var(--green); background: rgba(34,197,94,.07); }
  .nav-links .btn {
    margin: 0.4rem 1rem;
    width: calc(100% - 2rem);
    text-align: center;
    border-radius: 6px !important;
  }
  .nav-links .theme-toggle {
    width: auto;
    border: none;
    padding: 0.9rem 1.5rem;
  }
  .navbar { position: sticky; top: 0; z-index: 1000; }
  .navbar-container { position: relative; }

  /* Hero */
  .hero { flex-direction: column; gap: 1.5rem; min-height: auto; padding: 2rem 1rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 0.95rem; }
  .hero-resume-left { display: block; width: 100px; height: 140px; margin: 0 auto; }
  .hero-resume-right { display: none; }

  /* Badges - single row on mobile */
  .badges { gap: 0.4rem; flex-wrap: nowrap; justify-content: center; overflow-x: auto; padding: 0.5rem 0; }
  .badge { min-width: unset; padding: 0.4rem 0.3rem; flex: 1; }
  .badge-icon-wrap { width: 46px; height: 46px; }
  .badge-icon { width: 24px; height: 24px; }
  .badge-text { font-size: 0.62rem; min-width: unset; white-space: nowrap; }

  /* Lead form */
  .lead-form-grid { grid-template-columns: 1fr; }

  /* Sections */
  section { padding: 2rem 1rem; }
  section h2 { font-size: 1.6rem; }

  /* Pricing */
  .pricing-cards { grid-template-columns: 1fr; }

  /* Footer - compact horizontal on mobile */
  footer { padding: 1.25rem 1rem 1rem; margin-top: 2rem; }
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 1rem;
  }
  .footer-section:first-child {
    width: 100%;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
  }
  .footer-section:first-child p { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
  .footer-section:not(:first-child) { width: 33.33%; padding: 0 0.5rem 0 0; }
  .footer-section h3 { font-size: 0.78rem; margin-bottom: 0.5rem; }
  .footer-section a { font-size: 0.75rem; margin-bottom: 0.3rem; }
  .footer-bottom { padding-top: 0.75rem; font-size: 0.72rem; }

  /* CTA */
  .cta-section { padding: 3rem 1rem; }
  .cta-section h2 { font-size: 1.6rem; }

  /* Floating buttons */
  .floating-cta-button { bottom: 90px; right: 12px; width: 48px; height: 48px; }
  .floating-cta-icon { font-size: 1.4rem; }
  .whatsapp-button { bottom: 18px; right: 12px; width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .navbar-container { padding: 0 1rem; }
  section { padding: 1.5rem 0.75rem; }
  .badges { gap: 0.3rem; }
  .badge-text { font-size: 0.58rem; }
}
