/* ===== VARIABLES ===== */
:root {
  --primary-color: #000000;
    --secondary-color: #1E1E2E;
    --accent-color: #59535f;
    --gradient-start: #000000;
    --gradient-end: #3b3245;
  
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 2.5rem;
  --spacing-3xl: 3rem;
  --spacing-4xl: 4rem;
  
  --touch-size: 44px;
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.gradient-text {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
}

.section-subtitle {
  color: var(--primary-color);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-md);
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  min-height: var(--touch-size);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover,
.btn--primary:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn--secondary:hover,
.btn--secondary:focus {
  background: var(--primary-color);
  color: var(--white);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg) var(--spacing-md);
  position: relative;
}

.nav__logo h2 {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--font-size-2xl);
  font-weight: 700;
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  list-style: none;
}

.nav__link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-md);
  min-height: var(--touch-size);
  touch-action: manipulation;
}

.nav__link:hover,
.nav__link:focus {
  color: var(--primary-color);
  background: rgba(139, 90, 159, 0.1);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-lg);
}

.nav__link--cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

/* Mobile Menu */
.nav__toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  gap: 4px;
  min-height: var(--touch-size);
  min-width: var(--touch-size);
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.nav__toggle:hover,
.nav__toggle:focus {
  background: rgba(139, 90, 159, 0.1);
  outline: none;
}

.nav__toggle-line {
  width: 24px;
  height: 3px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav__item--mobile {
  display: none;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  padding: calc(80px + var(--spacing-4xl)) 0 var(--spacing-4xl);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4xl);
  align-items: center;
}

.hero__title {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--spacing-xl);
}

.hero__description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-2xl);
  line-height: 1.6;
}

.hero__subtitle {
  font-size: var(--font-size-sm);
  opacity: 0.8;
  font-style: italic;
}

.hero__btn {
  font-size: var(--font-size-lg);
  padding: var(--spacing-lg) var(--spacing-2xl);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  min-height: 56px;
}

.hero__btn:hover,
.hero__btn:focus {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  color: var(--white);
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}

/* CV Previews */
.cv-previews {
  position: relative;
  width: 400px;
  height: 500px;
}

.cv-preview {
  position: absolute;
  width: 200px;
  height: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--spacing-md);
  animation: float 6s ease-in-out infinite;
}

.cv-preview--1 {
  top: 0;
  left: 0;
  z-index: 3;
  animation-delay: 0s;
}

.cv-preview--2 {
  top: 60px;
  left: 120px;
  z-index: 2;
  animation-delay: 2s;
}

.cv-preview--3 {
  top: 180px;
  left: 50px;
  z-index: 1;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* CV Elements */
.cv-header {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.cv-avatar {
  width: 40px;
  height: 40px;
  background: var(--gray-300);
  border-radius: 50%;
}

.cv-info {
  flex: 1;
}

.cv-name {
  width: 80px;
  height: 12px;
  background: var(--gray-400);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-xs);
}

.cv-title {
  width: 60px;
  height: 8px;
  background: var(--gray-300);
  border-radius: var(--radius-sm);
}

.cv-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.cv-section {
  height: 8px;
  background: var(--gray-200);
  border-radius: var(--radius-sm);
}

.cv-section:nth-child(2) {
  width: 90%;
}

.cv-section:nth-child(3) {
  width: 70%;
}

/* Preview 2 - Sidebar Style */
.cv-preview--2 {
  display: flex;
  gap: var(--spacing-sm);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
}

.cv-sidebar {
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.cv-avatar-large {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.cv-contact {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
}

.cv-main {
  flex: 1;
  padding-left: var(--spacing-sm);
}

.cv-header-info {
  margin-bottom: var(--spacing-md);
}

.cv-name-large {
  width: 80px;
  height: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-xs);
}

.cv-title-large {
  width: 60px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
}

.cv-sections {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

/* Preview 3 - Modern Style */
.cv-preview--3 {
  background: var(--secondary-color);
  color: var(--white);
}

.cv-header-modern {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.cv-avatar-round {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  border-radius: 50%;
}

.cv-info-modern {
  flex: 1;
}

.cv-name-modern {
  width: 70px;
  height: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-xs);
}

.cv-title-modern {
  width: 50px;
  height: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
}

.cv-content-modern {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.cv-section-modern {
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
}

.cv-section-modern:nth-child(2) {
  width: 85%;
}

.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero__wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: var(--spacing-4xl) 0;
  background: var(--gray-50);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.feature-card {
  background: var(--white);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  color: var(--white);
  font-size: var(--font-size-xl);
}

.feature-card__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-md);
}

.feature-card__description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== TEMPLATES SECTION ===== */
.templates {
  padding: var(--spacing-4xl) 0;
  background: var(--white);
}

.templates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
}

.template-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.template-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.template-card--highlighted {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
}

.template-card--highlighted:hover {
  transform: scale(1.08) translateY(-5px);
}

.template-preview {
  padding: var(--spacing-xl);
  background: var(--gray-50);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.template-image {
  width: 120px;
  height: 150px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.template-placeholder {
  text-align: center;
  color: var(--gray-400);
  padding: var(--spacing-md);
}

.template-placeholder i {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-md);
}

.template-lines {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.line {
  height: 4px;
  background: var(--gray-300);
  border-radius: var(--radius-sm);
  width: 80px;
}

.line.short {
  width: 60px;
}

.template-placeholder--colored {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
}

.color-palette {
  display: flex;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
  justify-content: center;
}

.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.color-dot--red { background: #EF4444; }
.color-dot--blue { background: #3B82F6; }
.color-dot--green { background: #10B981; }
.color-dot--purple { background: #8B5CF6; }
.color-dot--orange { background: #F59E0B; }

.template-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.content-section {
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
}

.content-section:nth-child(2) {
  width: 80%;
}

.pdf-icon {
  font-size: var(--font-size-4xl);
  color: #DC2626;
  margin-bottom: var(--spacing-md);
}

.download-arrow {
  font-size: var(--font-size-xl);
  color: var(--primary-color);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.template-info {
  padding: var(--spacing-xl);
}

.template-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-md);
}

.template-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.stats {
  padding: var(--spacing-4xl) 0;
  background: var(--secondary-color);
  color: var(--white);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-xl);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  font-size: var(--font-size-xl);
}

.stat-number {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--spacing-xs);
}

.stat-sublabel {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
}

/* ===== CTA SECTION ===== */
.cta {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  text-align: center;
}

.cta__content {
  max-width: 600px;
  margin: 0 auto;
}

.cta__title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--spacing-lg);
}

.cta__description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-2xl);
  line-height: 1.6;
}

.cta__buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.cta__buttons .btn--primary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta__buttons .btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta__buttons .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer__title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: var(--spacing-sm);
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.footer__link:hover {
  color: var(--primary-color);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--spacing-xl);
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
}

.footer__language {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
}

.language-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
}

/* ===== MOBILE RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    padding: var(--spacing-lg);
  }
  
  .nav__menu.active {
    transform: translateX(0);
  }
  
  .nav__list {
    flex-direction: column;
    gap: var(--spacing-lg);
    width: 100%;
  }
  
  .nav__item {
    width: 100%;
  }
  
  .nav__link {
    width: 100%;
    justify-content: center;
    padding: var(--spacing-md);
    font-size: var(--font-size-lg);
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .nav__item--mobile {
    display: block;
  }
  
  .hero__content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    text-align: center;
  }
  
  .hero__title {
    font-size: var(--font-size-4xl);
  }
  
  .cv-previews {
    width: 300px;
    height: 400px;
  }
  
  .cv-preview {
    width: 150px;
    height: 200px;
    padding: var(--spacing-sm);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .features__grid,
  .templates__grid,
  .stats__grid {
    grid-template-columns: 1fr;
  }
  
  .template-card--highlighted {
    transform: none;
  }
  
  .template-card--highlighted:hover {
    transform: translateY(-5px);
  }
  
  .cta__title {
    font-size: var(--font-size-3xl);
  }
  
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .nav {
    padding: var(--spacing-md) var(--spacing-sm);
  }
  
  .nav__logo h2 {
    font-size: var(--font-size-xl);
  }
  
  .hero {
    padding: calc(70px + var(--spacing-2xl)) 0 var(--spacing-2xl);
    min-height: auto;
  }
  
  .hero__title {
    font-size: var(--font-size-3xl);
  }
  
  .hero__description {
    font-size: var(--font-size-base);
  }
  
  .btn {
    width: 100%;
    justify-content: center;
    font-size: var(--font-size-base);
  }
  
  .hero__btn {
    font-size: var(--font-size-base);
    padding: var(--spacing-md) var(--spacing-lg);
  }
  
  .cv-previews {
    width: 250px;
    height: 300px;
  }
  
  .cv-preview {
    width: 120px;
    height: 160px;
    padding: var(--spacing-xs);
  }
  
  .cv-avatar, .cv-avatar-large {
    width: 30px;
    height: 30px;
  }
  
  .cv-avatar-round {
    width: 25px;
    height: 25px;
  }
  
  .feature-card,
  .template-card {
    margin: 0 var(--spacing-sm);
  }
  
  .feature-card__icon,
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-lg);
  }
  
  .section-header {
    margin-bottom: var(--spacing-2xl);
  }
  
  .section-title {
    font-size: var(--font-size-xl);
  }
  
  .section-description {
    font-size: var(--font-size-base);
  }
  
  .stat-number {
    font-size: var(--font-size-3xl);
  }
  
  .cta__title {
    font-size: var(--font-size-2xl);
  }
  
  .cta__description {
    font-size: var(--font-size-base);
  }
}

/* ===== TOUCH IMPROVEMENTS ===== */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .nav__link:hover,
  .feature-card:hover,
  .template-card:hover {
    transform: none;
  }
  
  .btn:active {
    transform: scale(0.98);
  }
  
  .nav__link:active {
    background: rgba(139, 90, 159, 0.2);
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .cv-preview {
    animation: none;
  }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --gray-50: #1A1A1A;
    --gray-100: #2D2D2D;
    --white: #FFFFFF;
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(135deg, #1e1e2e 0%, #514c56 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%), 
              linear-gradient(-45deg, rgba(0,0,0,0.1) 25%, transparent 25%), 
              linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.1) 75%), 
              linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.1) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.1;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact .section-title {
  color: white;
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-lg);
}

.contact .section-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-3xl);
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--spacing-3xl);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-xl);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-xl);
  font-size: var(--font-size-base);
  background: white;
  color: #333;
  font-family: inherit;
  transition: all var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact-form .btn {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-2xl);
  font-size: var(--font-size-lg);
  font-weight: 700;
  background: linear-gradient(135deg, #3b3245, #1e1e2e);
  color: white;
  border: none;
  border-radius: var(--radius-xl);
  margin-top: var(--spacing-lg);
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.contact-form .btn:hover,
.contact-form .btn:focus {
  background: linear-gradient(135deg, #a18db7, #1e1e2e);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgb(125 111 146);
  color: white;
}

.alert {
  padding: var(--spacing-lg) var(--spacing-xl);
  border-radius: var(--radius-xl);
  margin-bottom: var(--spacing-xl);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-weight: 500;
  font-size: var(--font-size-base);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-success {
  background: rgba(40, 167, 69, 0.2);
  color: #d4edda;
  border-color: rgba(40, 167, 69, 0.4);
}

.alert-success i {
  color: #28a745;
  font-size: var(--font-size-lg);
}

.alert-error {
  background: rgba(220, 53, 69, 0.2);
  color: #f8d7da;
  border-color: rgba(220, 53, 69, 0.4);
}

.alert-error i {
  color: #dc3545;
  font-size: var(--font-size-lg);
}

/* Contact responsive */
@media (max-width: 768px) {
  .contact {
    padding: var(--spacing-3xl) 0;
  }
  
  .contact .section-title {
    font-size: var(--font-size-3xl);
  }
  
  .contact-form {
    padding: var(--spacing-2xl) var(--spacing-lg);
    margin: 0 var(--spacing-md);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
  }
  
  .form-group input,
  .form-group textarea {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-sm);
  }
  
  .contact-form .btn {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .contact .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .contact .section-description {
    font-size: var(--font-size-base);
  }
  
  .contact-form {
    padding: var(--spacing-lg);
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .nav__toggle,
  .hero__btn,
  .cta,
  .footer {
    display: none;
  }
  
  .hero {
    background: none;
    color: black;
    min-height: auto;
    padding: var(--spacing-md) 0;
  }
  
  .hero__title,
  .hero__description {
    color: black;
  }
}
