/* CVibe Digital Identity Studio - Blue-Focused Professional Design */

:root {
  --blue-primary: #1E2AFF;
  --blue-light: #5C6CFF;
  --blue-dark: #0A12B3;
  --blue-bright: #4A90E2;
  --blue-muted: #667eea;
  --bg: #0A0D1F;
  --bg2: #12162E;
  --bg3: #1A1F3E;
  --white: #FFFFFF;
  --muted: #A8B2D9;
  --accent: #48BB78;
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', var(--font-main);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--blue-primary);
  color: var(--white);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  border-radius: 4px;
}

.skip-to-content:focus {
  top: 10px;
  left: 10px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 13, 31, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 42, 255, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 13, 31, 0.98);
  box-shadow: 0 8px 32px rgba(30, 42, 255, 0.3);
  border-bottom-color: var(--blue-primary);
}

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

.site-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

.site-logo:hover {
  color: var(--blue-light);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--white);
}

.nav-link.active {
  color: var(--blue-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue-primary);
  border-radius: 2px;
}

.cta-nav {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white) !important;
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-nav:hover,
.cta-nav:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 42, 255, 0.5);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg3) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(30, 42, 255, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(30, 42, 255, 0.2);
  border: 1.5px solid var(--blue-primary);
  color: var(--blue-light);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--white);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  padding: 1.125rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30, 42, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--blue-primary);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(30, 42, 255, 0.15);
  border-color: var(--blue-light);
  transform: translateY(-3px);
}

.trust-line {
  color: var(--muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.trust-line span {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.trust-line i {
  color: var(--blue-light);
  font-size: 1.125rem;
}

.hero-visual {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-image-large {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(30, 42, 255, 0.4);
  border: 2px solid rgba(30, 42, 255, 0.3);
}

/* Sections */
section {
  padding: 7rem 0;
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--white), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.section-intro {
  font-size: 1.25rem;
  color: var(--muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

/* Why Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.why-item {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(30, 42, 255, 0.08);
  border: 1px solid rgba(30, 42, 255, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.why-item:hover {
  transform: translateY(-12px);
  border-color: var(--blue-light);
  box-shadow: 0 20px 50px rgba(30, 42, 255, 0.3);
  background: rgba(30, 42, 255, 0.12);
}

.why-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30, 42, 255, 0.4);
}

.why-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.package-card {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border-radius: 28px;
  padding: 0;
  position: relative;
  border: 1px solid rgba(30, 42, 255, 0.2);
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--blue-primary);
}

.package-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 28px 70px rgba(30, 42, 255, 0.4);
  border-color: var(--blue-light);
}

.package-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
}

.package-content {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white);
}

.package-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.package-price {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.package-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex: 1;
}

.package-features li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(169, 179, 209, 0.1);
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
}

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

.package-features i {
  color: var(--blue-light);
  margin-top: 0.25rem;
  font-size: 1.125rem;
}

.package-btn {
  width: 100%;
  text-align: center;
}

/* Resume Check CTA */
.resume-check-section {
  background: rgba(30, 42, 255, 0.15);
  border-radius: 28px;
  padding: 5rem 4rem;
  text-align: center;
  margin: 5rem 0;
  border: 2px solid rgba(30, 42, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.resume-check-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

/* About Section */
.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.about-point {
  padding: 2.5rem;
  background: rgba(30, 42, 255, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(30, 42, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.about-point:hover {
  transform: translateY(-8px);
  border-color: var(--blue-light);
  box-shadow: 0 16px 40px rgba(30, 42, 255, 0.3);
}

.about-point i {
  font-size: 2.5rem;
  color: var(--blue-light);
  margin-bottom: 1.5rem;
}

.about-point h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.375rem;
  font-weight: 700;
}

.about-point p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.review-card {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(30, 42, 255, 0.2);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-light);
  box-shadow: 0 16px 40px rgba(30, 42, 255, 0.3);
}

.review-header {
  margin-bottom: 1.5rem;
}

.review-name {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.review-role {
  color: var(--muted);
  font-size: 0.95rem;
}

.review-stars {
  color: var(--blue-light);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  font-size: 1.05rem;
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.step-card {
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
}

.step-number {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 900;
  margin: 0 auto 2rem;
  box-shadow: 0 12px 32px rgba(30, 42, 255, 0.4);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.faq-item {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border-radius: 16px;
  margin-bottom: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(30, 42, 255, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--blue-light);
  transform: translateX(8px);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question i {
  color: var(--blue-light);
}

.faq-answer {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
  padding-left: 2.25rem;
}

/* Contact */
.contact-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(30, 42, 255, 0.4);
}

.contact-email:hover,
.contact-email:focus {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 12px 32px rgba(30, 42, 255, 0.5);
}

.contact-form {
  margin-top: 3rem;
  text-align: left;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--white);
  font-size: 1.05rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1.125rem;
  background: var(--bg2);
  border: 2px solid rgba(30, 42, 255, 0.3);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(30, 42, 255, 0.15);
  background: var(--bg3);
}

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

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  border-top: 2px solid rgba(30, 42, 255, 0.2);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

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

.footer-brand {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-tagline {
  color: var(--muted);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.social-promo {
  margin: 3rem 0;
  padding: 3rem 2rem;
  background: rgba(30, 42, 255, 0.08);
  border: 2px solid rgba(30, 42, 255, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.social-heading {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, #833AB4, #E1306C, #FD1D1D, #F77737);
  border-radius: 50px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.3);
  margin: 1rem 0;
}

.instagram-cta:hover,
.instagram-cta:focus {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(225, 48, 108, 0.5);
  color: var(--white);
}

.instagram-cta i {
  font-size: 1.75rem;
  animation: pulse 2s ease-in-out infinite;
}

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

.social-tagline {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.social-link {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(30, 42, 255, 0.15);
  border: 2px solid rgba(30, 42, 255, 0.3);
  color: var(--muted);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover,
.social-link:focus {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  border-color: var(--blue-light);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(30, 42, 255, 0.4);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1.05rem;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--blue-light);
}

.copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(169, 179, 209, 0.1);
  color: var(--muted);
  font-size: 0.95rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg2);
  color: var(--white);
  padding: 1.25rem 2rem;
  border-radius: 12px;
  border: 2px solid var(--blue-primary);
  box-shadow: 0 12px 32px rgba(30, 42, 255, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 2000;
  font-weight: 600;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  border-color: var(--accent);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .about-points {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-h1 {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(30, 42, 255, 0.2);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-h1 {
    font-size: 2.5rem;
    line-height: 1.25;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  
  .section-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-image-large {
    height: 400px;
  }
  
  .package-image {
    height: 220px;
  }
  
  .about-points {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .site-logo img {
    height: 55px !important;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .hero-h1 {
    font-size: 2rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .section-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .resume-check-section {
    padding: 2.5rem 1.5rem;
  }
  
  .trust-line {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .trust-item {
    font-size: 0.9rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .hero-section {
    padding-top: 120px !important;
    padding-bottom: 2rem;
    min-height: auto;
  }
  
  .site-logo img {
    height: 50px !important;
  }
}

/* Focus Styles */
:focus {
  outline: 3px solid var(--blue-primary);
  outline-offset: 3px;
}

button:focus,
a:focus {
  outline-offset: 5px;
}

/* Message Modal */
.message-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.message-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 13, 31, 0.95);
  backdrop-filter: blur(10px);
}

.message-modal-content {
  position: relative;
  z-index: 10001;
  background: var(--bg2);
  border: 1px solid rgba(30, 42, 255, 0.3);
  border-radius: 20px;
  padding: 3rem;
  max-width: 550px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(30, 42, 255, 0.4);
  animation: modalSlideIn 0.3s ease;
}

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

.message-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.message-modal-close:hover {
  background: rgba(30, 42, 255, 0.2);
  color: var(--white);
}

.message-modal-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.message-modal-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.message-form .form-group {
  margin-bottom: 1.5rem;
}

.message-form label {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.message-form input,
.message-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(30, 42, 255, 0.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: var(--font-main);
}

.message-form input:focus,
.message-form textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(30, 42, 255, 0.2);
}

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

.message-form .btn-primary {
  width: 100%;
  margin-top: 1rem;
}

.message-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

.message-status.success {
  background: rgba(72, 187, 120, 0.2);
  border: 1px solid rgba(72, 187, 120, 0.4);
  color: #48BB78;
}

.message-status.error {
  background: rgba(245, 101, 101, 0.2);
  border: 1px solid rgba(245, 101, 101, 0.4);
  color: #F56565;
}

@media (max-width: 640px) {
  .message-modal-content {
    padding: 2rem 1.5rem;
  }
  
  .message-modal-title {
    font-size: 1.75rem;
  }
}
