/* ========================================
   CorelDRAW Professional Website
   Modern & Responsive Design
   ======================================== */

/* CSS Variables */
:root {
  --primary-color: #00CC6A;
  --secondary-color: #00A856;
  --dark-bg: #1E1E1E;
  --light-bg: #F5F5F5;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --white: #FFFFFF;
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

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

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

/* Header & Navigation - Modern Enhanced Design */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 204, 106, 0.1);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(0, 204, 106, 0.1);
}

.header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 204, 106, 0.15);
  padding: 0;
}

.header.scrolled .nav-wrapper {
  padding: 0.75rem 0;
}

.header.scrolled .logo img {
  height: 25px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  padding: 1.2rem 0;
  transition: all 0.3s ease;
}

/* Logo Enhanced */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  position: relative;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo img {
  height: 25px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 204, 106, 0.2));
}

.logo:hover img {
  filter: drop-shadow(0 4px 8px rgba(0, 204, 106, 0.3));
}

/* Navigation Menu - Modern Pills Design */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.4rem;
  align-items: center;
  margin-left: auto;
  margin-right: 5px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  position: relative;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.nav-menu a:hover {
  color: var(--primary-color);
  background: rgba(0, 204, 106, 0.08);
  transform: translateY(-2px);
}

.nav-menu a.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 4px 15px rgba(0, 204, 106, 0.3);
}

.nav-menu a:after {
  display: none;
}

/* Download Button in Nav */
.nav-download-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
  color: var(--white) !important;
  padding: 0.75rem 1.75rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(0, 204, 106, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease !important;
  margin-left: 30px;
  cursor: pointer !important;
  pointer-events: auto !important;
  text-decoration: none !important;
  display: inline-block !important;
  z-index: 10 !important;
}

.nav-download-btn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.nav-download-btn:hover:before {
  width: 300px;
  height: 300px;
}

.nav-download-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 25px rgba(0, 204, 106, 0.4) !important;
}

.nav-download-btn svg {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  animation: bounceDownload 2s ease-in-out infinite;
}

/* Language Switcher */
.language-switcher {
  position: relative;
  margin-left: 1rem;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 204, 106, 0.1);
  border: 1px solid rgba(0, 204, 106, 0.2);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-btn:hover {
  background: rgba(0, 204, 106, 0.15);
  border-color: var(--primary-color);
}

.language-btn img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.language-btn span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.language-btn svg {
  width: 12px;
  height: 12px;
  fill: var(--text-dark);
  transition: transform 0.3s ease;
}

.language-switcher.active .language-btn svg {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}

.language-switcher.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.language-dropdown a:hover {
  background: var(--light-bg);
}

.language-dropdown img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.language-dropdown span {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.language-dropdown a.active {
  background: rgba(0, 204, 106, 0.1);
}

.language-dropdown a.active span {
  color: var(--primary-color);
  font-weight: 600;
}

/* Mobile Toggle - Animated Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: rgba(0, 204, 106, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.mobile-toggle:hover {
  background: rgba(0, 204, 106, 0.15);
  transform: scale(1.05);
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Gradient Animation */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Download Icon Animation */
@keyframes bounceDownload {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 204, 106, 0.3);
  cursor: pointer !important;
  pointer-events: auto !important;
  text-decoration: none !important;
  display: inline-block !important;
  z-index: 10 !important;
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 204, 106, 0.4);
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

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

.btn-dark:hover {
  background: #2C2C2C;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -2px 20px rgba(0, 0, 0, 0.03);
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../assets/images/vector-illustration.png') no-repeat center;
  background-size: contain;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 4.5rem;
  color: var(--dark-bg);
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #1D1D1F 0%, #2D2D2F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.hero-text .highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  font-weight: 900;
}

.hero-text .highlight:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
  opacity: 0.3;
  transform: scaleX(0);
  animation: underlineExpand 1s ease-out 0.5s forwards;
  transition: all 0.3s ease;
}

.hero-text:hover .highlight:after {
  opacity: 0.5;
  height: 5px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #5e5e5e;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 600px;
  animation: fadeInUp 1s ease-out 0.2s both;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
}

/* Download Buttons with Icons */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
}

.download-btn svg {
  width: 24px;
  height: 24px;
}

/* Features Section - Background Image Cards */
.features {
  padding: 70px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
}

.features:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(0, 204, 106, 0.1), transparent 70%);
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2.75rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Versions Section - White Background Override */
#versions {
  background: var(--white) !important;
}

#versions .section-title h2 {
  color: var(--dark-bg);
}

#versions .section-title p {
  color: var(--text-light);
}

#versions .version-card h3 {
  color: var(--dark-bg);
}

#versions .version-desc,
#versions .version-features li {
  color: var(--text-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.feature-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  transition: all 0.5s ease;
}

.feature-card:hover:before {
  background: linear-gradient(180deg, rgba(0, 204, 106, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 204, 106, 0.3);
}

.feature-icon {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.5s ease;
  opacity: 1 !important;
  visibility: visible !important;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1 !important;
  transition: opacity 0.3s ease;
  display: block;
}

.feature-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: var(--white);
}

.feature-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.feature-card:hover h3 {
  transform: translateX(10px);
  text-shadow: 0 4px 20px rgba(0, 204, 106, 0.5);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.feature-card:hover p {
  opacity: 1;
}

.feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 204, 106, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Showcase Section */
.showcase {
  padding: 70px 0;
  background: var(--white);
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.showcase-image {
  position: relative;
}

.showcase-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.showcase-text h2 {
  color: var(--dark-bg);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
}

.showcase-text p {
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.9;
  font-size: 1.1rem;
}

.showcase-list {
  list-style: none;
  margin: 2rem 0;
}

.showcase-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--dark-bg);
  font-size: 1.05rem;
  font-weight: 500;
}

.showcase-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.4rem;
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
}

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

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Contact Page */
.contact-section {
  padding: 120px 0 80px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  background: var(--light-bg);
  padding: 3rem;
  border-radius: 15px;
}

.contact-info h3 {
  color: var(--dark-bg);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.form-group .error {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

/* Content Pages (Terms, Privacy, Help) */
.content-page {
  padding: 120px 0 80px;
}

.content-page h1 {
  color: var(--dark-bg);
  margin-bottom: 2rem;
  text-align: center;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.content-wrapper h2 {
  color: var(--dark-bg);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-wrapper h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-wrapper p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.content-wrapper li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

/* FAQ Section */
.faq-item {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-item:hover {
  background: #e8e8e8;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-light);
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
}

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

/* System Requirements Box */
.requirements-box {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  margin: 2rem 0;
}

.requirements-box h4 {
  color: var(--dark-bg);
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero-content,
  .showcase-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 255, 250, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: 4px 0 30px rgba(0, 204, 106, 0.15);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999;
  }
  
  .nav-menu:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    width: 100%;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
  }
  
  .nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
  }
  
  .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
  .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
  
  .nav-menu a {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .nav-download-btn {
    margin-top: 1rem !important;
    text-align: center;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  /* Mobile Menu Backdrop */
  .nav-menu.active:after {
    content: '';
    position: fixed;
    top: 0;
    left: 400px;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: -1;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    gap: 1rem;
    justify-content: center;
  }
  
  .hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }
  
  .features,
  .showcase,
  .contact-section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    height: 350px;
  }
  
  .feature-card-content {
    padding: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1.5rem;
  }
  
  .feature-badge {
    top: 15px;
    right: 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .content-wrapper {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container,
  .container-fluid {
    padding: 0 15px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
}

/* Version Cards */
.version-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(0, 204, 106, 0.1);
  position: relative;
  overflow: hidden;
}

.version-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.version-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 204, 106, 0.25);
  border-color: var(--primary-color);
}

.version-card:hover:before {
  opacity: 1;
}

.version-badge {
  position: absolute;
  top: 8px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 204, 106, 0.3);
  letter-spacing: 0.5px;
  z-index: 5;
}

.version-card h3 {
  color: var(--dark-bg);
  margin-bottom: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.version-card:hover h3 {
  color: var(--primary-color);
}

.version-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.version-platforms {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.version-platforms span {
  background: linear-gradient(135deg, rgba(0, 204, 106, 0.1), rgba(0, 168, 86, 0.1));
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
  border: 1px solid rgba(0, 204, 106, 0.2);
  transition: all 0.3s ease;
}

.version-card:hover .version-platforms span {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-color: var(--primary-color);
}

.version-features {
  list-style: none;
  margin: 1rem 0;
  text-align: left;
}

.version-features li {
  padding: 0.4rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-dark);
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.version-card:hover .version-features li {
  transform: translateX(3px);
}

.version-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 204, 106, 0.1);
  border-radius: 50%;
}

.version-download-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.version-download-buttons .btn {
  flex: 1;
  margin-top: 0;
  font-weight: 600;
  padding: 0.6rem 0.9rem;
  font-size: 0.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer !important;
  pointer-events: auto !important;
  text-decoration: none;
  position: relative;
  z-index: 10;
}

.version-download-buttons .btn:hover {
  transform: translateY(-2px);
}

.version-download-buttons .btn:active {
  transform: translateY(0);
}

.version-download-buttons .single-download-btn {
  flex: none;
  width: 100%;
}

.version-download-buttons .btn svg {
  flex-shrink: 0;
}

.version-card .btn {
  width: 100%;
  margin-top: 0.75rem;
  font-weight: 600;
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.version-card .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  position: relative;
  overflow: hidden;
}

.version-card .btn-primary:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.version-card .btn-primary:hover:before {
  width: 300px;
  height: 300px;
}

.version-card:hover .btn-primary {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 204, 106, 0.4);
}

/* Possibilities Section */
/* CorelDRAW Versions Showcase Section */
.versions-showcase-section {
  padding: 70px 0;
  background: #F5F5F7;
  position: relative;
}

.versions-showcase-section .section-title h2 {
  color: var(--dark-bg);
  font-size: 2.75rem;
  font-weight: 800;
}

.versions-showcase-section .section-title p {
  color: var(--text-light);
  font-size: 1.2rem;
}

.versions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

.versions-showcase-section .versions-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
  width: 100%;
}

.version-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  width: 100%;
  max-width: 100%;
}

.version-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.version-image {
  width: 100%;
  height: 150px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.version-image img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.version-card:hover .version-image img {
  transform: scale(1.05);
}

.version-content {
  padding: 1rem 1.25rem;
  text-align: center;
}

.version-content h3 {
  color: #1D1D1F;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.version-platform {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.version-content p {
  color: #86868B;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  min-height: 35px;
}

.version-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 204, 106, 0.3);
}

.version-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 204, 106, 0.4);
}

@media (max-width: 1024px) {
  .versions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .versions-showcase-section .versions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .versions-showcase-section {
    padding: 60px 0;
  }
  
  .versions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .versions-showcase-section .versions-grid {
    grid-template-columns: 1fr;
  }
  
  .version-image {
    height: 180px;
  }
  
  .version-content {
    padding: 1.5rem;
  }
  
  .version-content h3 {
    font-size: 1.25rem;
  }
  
  .version-content p {
    min-height: auto;
  }
  
  .version-download-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .version-download-buttons .btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

/* What's New Section - Full Screen Video Background */
.whats-new-section {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.whats-new-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.whats-new-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.whats-new-section .container {
  position: relative;
  z-index: 2;
  margin-left: 0;
  padding-left: 10%;
  padding-right: 2rem;
}

.whats-new-content {
  text-align: left;
  color: var(--white);
  max-width: 900px;
  position: relative;
  margin-right: auto;
  margin-left: 0;
  padding-left: 0;
}

.whats-new-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.whats-new-content h2 {
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  letter-spacing: -1px;
}

.whats-new-content h2 span {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  opacity: 0.95;
  margin-top: 0.5rem;
}

.whats-new-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  max-width: 650px;
}

.whats-new-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.whats-new-buttons .btn {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 400;
}

.whats-new-buttons .btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(0, 204, 106, 0.4);
}

.whats-new-buttons .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 204, 106, 0.5);
}

.whats-new-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.whats-new-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
}

.whats-new-badge {
  display: inline-block;
  margin-top: 1.5rem;
}

.whats-new-badge img {
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
}

/* Float Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive What's New Section */
@media (max-width: 1024px) {
  .whats-new-section {
    min-height: 80vh;
  }
  
  .whats-new-section .container {
    padding-left: 10%;
  }
  
  .whats-new-content {
    margin-left: 0;
  }
  
  .whats-new-content h2 {
    font-size: 2.5rem;
  }
  
  .whats-new-content h2 span {
    font-size: 2rem;
  }
  
  .whats-new-content p {
    font-size: 1.05rem;
  }
  
  .whats-new-badge img {
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .whats-new-section {
    min-height: 70vh;
    padding: 60px 0;
  }
  
  .whats-new-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
  }
  
  .whats-new-section .container {
    padding-left: 20px;
  }
  
  .whats-new-content {
    text-align: center;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
  }
  
  .whats-new-content h2 {
    font-size: 2.25rem;
  }
  
  .whats-new-content h2 span {
    font-size: 1.75rem;
  }
  
  .whats-new-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .whats-new-buttons {
    gap: 0.75rem;
    justify-content: center;
  }
  
  .whats-new-buttons .btn {
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
  }
  
  .whats-new-badge img {
    max-width: 120px;
  }
}

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

@keyframes underlineExpand {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 0.3;
  }
}

/* Loading State */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* RTL Support for Arabic */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .nav-menu {
  margin-left: 0;
  margin-right: 150px;
}

[dir="rtl"] .nav-download-btn {
  margin-left: 0;
  margin-right: 30px;
}

[dir="rtl"] .hero-content {
  text-align: right;
}

[dir="rtl"] .showcase-list li:before {
  margin-right: 0;
  margin-left: 1rem;
}

[dir="rtl"] .footer-links {
  text-align: right;
}

[dir="rtl"] .language-dropdown {
  right: auto;
  left: 0;
}

/* Russian, Japanese, Thai, French, and German Language Specific Fixes */
html[lang="ru"] .nav-download-btn,
html[lang="ja"] .nav-download-btn,
html[lang="th"] .nav-download-btn,
html[lang="fr"] .nav-download-btn,
html[lang="de"] .nav-download-btn {
  font-size: 0.8rem !important;
  padding: 0.6rem 1.2rem !important;
  white-space: nowrap;
  line-height: 1.3;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

html[lang="ru"] .nav-menu,
html[lang="ja"] .nav-menu,
html[lang="th"] .nav-menu,
html[lang="fr"] .nav-menu,
html[lang="de"] .nav-menu {
  margin-left: 2rem !important;
  margin-right: 5px;
}

html[lang="ru"] .logo,
html[lang="ja"] .logo,
html[lang="th"] .logo,
html[lang="fr"] .logo,
html[lang="de"] .logo {
  margin-right: 0;
  flex-shrink: 0;
}

html[lang="ru"] .nav-menu a,
html[lang="ja"] .nav-menu a,
html[lang="th"] .nav-menu a,
html[lang="fr"] .nav-menu a,
html[lang="de"] .nav-menu a {
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  white-space: nowrap;
}

html[lang="ru"] .nav-wrapper,
html[lang="ja"] .nav-wrapper,
html[lang="th"] .nav-wrapper,
html[lang="fr"] .nav-wrapper,
html[lang="de"] .nav-wrapper {
  gap: 1rem;
}

