:root {
  color-scheme: light only;
  --primary-color: #FF8C00;
  --secondary-color: #FFA500;
  --dark-color: #000000;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --orange-gradient-start: #FF8C00;
  --orange-gradient-end: #FFB347;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light only;
  }
  
  body {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(255, 140, 0, 0.6);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

html {
  scroll-behavior: smooth;
}

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;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 6px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
  border-color: rgba(0, 0, 0, 0.25);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(255, 140, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease-out;
}

.logo-img:hover {
  opacity: 0.8;
  transform: scale(1.025);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

nav ul li {
  animation: fadeIn 0.6s ease-out backwards;
}

nav ul li:nth-child(1) { animation-delay: 0.1s; }
nav ul li:nth-child(2) { animation-delay: 0.2s; }
nav ul li:nth-child(3) { animation-delay: 0.3s; }
nav ul li:nth-child(4) { animation-delay: 0.4s; }
nav ul li:nth-child(5) { animation-delay: 0.5s; }
nav ul li:nth-child(6) { animation-delay: 0.6s; }

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

nav a:hover::after {
  width: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  background: linear-gradient(135deg, var(--dark-color), #1a1a1a, #2a2a2a);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: none;
  backdrop-filter: blur(10px);
}

section {
  animation: fadeInUp 0.8s ease-out;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
  animation: none;
  filter: blur(40px);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out 0.2s backwards;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out 0.4s backwards;
}

.hero .btn {
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out 0.6s backwards;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.6);
}

section:not(.hero) {
  padding: 3rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
  text-align: center;
  animation: fadeIn 0.8s ease-out;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  animation: expandWidth 1s ease-out 0.3s backwards;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-out 0.2s backwards;
}

.features {
  background-color: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid .feature-card:first-child:nth-last-child(3),
.features-grid .feature-card:first-child:nth-last-child(3) ~ .feature-card {
  grid-column: auto;
}

.features-grid:has(.feature-card:first-child:nth-last-child(3)) {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .features-grid:has(.feature-card:first-child:nth-last-child(3)) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--white);
  padding: 1.25rem 2rem 1.25rem 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeIn 0.6s ease-out backwards;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.features-grid .feature-card:nth-child(1):nth-last-child(4),
.features-grid .feature-card:nth-child(1):nth-last-child(4) ~ .feature-card:nth-child(1) {
  background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
}

.features-grid .feature-card:nth-child(2):nth-last-child(3),
.features-grid .feature-card:nth-child(1):nth-last-child(4) ~ .feature-card:nth-child(2) {
  background: linear-gradient(135deg, #ffffff 0%, #fffaf5 100%);
}

.features-grid .feature-card:nth-child(3):nth-last-child(2),
.features-grid .feature-card:nth-child(1):nth-last-child(4) ~ .feature-card:nth-child(3) {
  background: linear-gradient(135deg, #ffffff 0%, #fff5eb 100%);
}

.features-grid .feature-card:nth-child(4):nth-last-child(1) {
  background: linear-gradient(135deg, #ffffff 0%, #fff9f0 100%);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:nth-child(1) { 
  animation-delay: 0.1s; 
}
.feature-card:nth-child(2) { 
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) { 
  animation-delay: 0.3s;
}
.feature-card:nth-child(4) { 
  animation-delay: 0.4s;
}

.feature-card:nth-child(2),
.feature-card:nth-child(4) {
  transform: translateY(0);
}

.feature-card:hover:nth-child(2),
.feature-card:hover:nth-child(4) {
  transform: translateY(-8px) scale(1.02);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 140, 0, 0.2);
  border-color: var(--primary-color);
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  margin-top: 0.5rem !important;
}

.feature-card:hover h3 {
  transform: translateX(5px);
}

.feature-card:has(h3) {
  padding-bottom: 2.5rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 0 !important;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.step {
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.8s ease-out backwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.3s; }
.step:nth-child(3) { animation-delay: 0.5s; }
.step:nth-child(4) { animation-delay: 0.7s; }

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  line-height: 60px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  opacity: 0;
  transition: all 0.4s ease;
}

.step:hover .step-number {
  background: var(--secondary-color);
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

.step:hover .step-number::after {
  width: 120%;
  height: 120%;
  opacity: 1;
  border-color: var(--secondary-color);
}

.step h3 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.step p {
  color: var(--text-light);
  line-height: 1.7;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(255, 165, 0, 0.1));
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 2px 10px rgba(255, 140, 0, 0.1);
  animation: slideInLeft 0.8s ease-out;
  transition: all 0.3s ease;
}

.highlight-box:hover {
  box-shadow: 0 4px 20px rgba(255, 140, 0, 0.2);
  transform: translateX(5px);
}

.highlight-box h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-out 0.2s backwards;
}

.highlight-box ul:last-child {
  list-style: none;
  margin-bottom: 0;
}

.highlight-box li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  animation: fadeIn 0.6s ease-out backwards;
}

.highlight-box li:nth-child(1) { animation-delay: 0.3s; }
.highlight-box li:nth-child(2) { animation-delay: 0.4s; }
.highlight-box li:nth-child(3) { animation-delay: 0.5s; }
.highlight-box li:nth-child(4) { animation-delay: 0.6s; }
.highlight-box li:nth-child(5) { animation-delay: 0.7s; }

.highlight-box li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  animation: pulse 2s ease-in-out infinite;
}

.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 20px;
}

.content-section h2 {
  color: var(--dark-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.content-section h3 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.content-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.content-section ul,
.content-section ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  line-height: 1.8;
}

.content-section li {
  margin-bottom: 0.5rem;
}

.info-card {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 3px solid var(--primary-color);
  animation: slideInLeft 0.6s ease-out;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.15);
}

.info-card strong {
  color: var(--primary-color);
}

.info-card ul,
.info-card ol {
  margin-bottom: 0;
}

.info-card p {
  margin-bottom: 0 !important;
}

.legal-content ul:last-child,
.legal-content ol:last-child {
  margin-bottom: 0;
}

.contact-box {
  background-color: var(--light-bg);
  padding: 0 2rem 2rem 2rem;
  border-radius: 10px;
  text-align: center;
  margin: 2rem 0;
  animation: fadeIn 0.8s ease-out;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-box:hover::before {
  opacity: 1;
}

.contact-box:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
  transform: translateY(-5px);
}

.contact-box h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.contact-box a {
  color: var(--primary-color);
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.contact-box a:hover {
  color: var(--secondary-color);
  transform: scale(1.05);
}

.legal-section {
  background-color: var(--white);
  padding: 4rem 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-content h1 {
  color: var(--dark-color);
  margin-bottom: 2rem;
  font-size: 2.5rem;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 1rem;
}

.legal-content h2 {
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.legal-content h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.legal-content .highlight-box h3 {
  margin-top: 0.75rem;
}

.legal-content p,
.legal-content li {
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 2.5rem 0 0;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

footer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-section {
  animation: fadeIn 0.8s ease-out backwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-section:hover h4::after {
  width: 60px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.footer-section li:hover {
  transform: translateX(5px);
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section a::before {
  content: '→';
  position: absolute;
  left: -25px;
  opacity: 0;
  transition: all 0.3s ease;
  margin-right: 8px;
}

.footer-section a:hover::before {
  opacity: 1;
  left: -20px;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding: 1.25rem 1rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeIn 1s ease-out 0.5s backwards;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 100%;
  margin: 0 auto;
}

.footer-bottom p strong {
  color: var(--primary-color);
  font-weight: 600;
}

.cta-section {
  background: linear-gradient(135deg, var(--dark-color), #1a1a1a);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: none;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  animation: none;
  filter: blur(40px);
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  animation: none;
  filter: blur(40px);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 15px;
  }

  header {
    padding: 0.5rem 0;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.5rem 0;
  }

  .logo-img {
    height: 40px;
  }

  .hamburger {
    display: flex;
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark-color), #1a1a1a);
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  .menu-toggle:checked ~ nav {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    text-align: left;
  }

  nav ul li {
    animation: none;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    width: 100%;
  }

  nav a {
    display: block;
    padding: 1rem 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  nav a:hover {
    color: #cc7000;
    transform: translateX(10px);
  }

  nav a::after {
    display: none;
  }

  .menu-toggle:checked ~ nav ul li {
    animation: slideInRight 0.4s ease-out backwards;
  }

  .menu-toggle:checked ~ nav ul li:nth-child(1) { animation-delay: 0.1s; }
  .menu-toggle:checked ~ nav ul li:nth-child(2) { animation-delay: 0.15s; }
  .menu-toggle:checked ~ nav ul li:nth-child(3) { animation-delay: 0.2s; }
  .menu-toggle:checked ~ nav ul li:nth-child(4) { animation-delay: 0.25s; }
  .menu-toggle:checked ~ nav ul li:nth-child(5) { animation-delay: 0.3s; }
  .menu-toggle:checked ~ nav ul li:nth-child(6) { animation-delay: 0.35s; }

  .hero {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero::before {
    width: 120px;
    height: 120px;
  }

  section:not(.hero) {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .section-title::after {
    width: 50px;
    height: 2px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .features {
    padding: 2rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 100%;
  }

  .features-grid:has(.feature-card:first-child:nth-last-child(3)) {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
    border-radius: 10px;
  }

  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4) {
    background: var(--white);
  }

  .feature-card:hover {
    transform: translateY(-3px);
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .btn {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
  }

  .step {
    padding: 1.5rem 1rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.2rem;
  }

  .step h3 {
    font-size: 1.1rem;
  }

  .step p {
    font-size: 0.95rem;
  }

  .highlight-box {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .highlight-box h3 {
    font-size: 1.2rem;
  }

  .highlight-box li {
    font-size: 0.95rem;
  }

  .info-card {
    padding: 1.25rem;
    margin: 1.25rem 0;
  }

  .contact-box {
    padding: 1.5rem;
  }

  .contact-box h3 {
    font-size: 1.3rem;
  }

  .contact-box a {
    font-size: 1rem;
    word-break: break-all;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .cta-section h2 {
    font-size: 1.65rem;
    line-height: 1.3;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-section::before,
  .cta-section::after {
    width: 120px;
    height: 120px;
  }

  .legal-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .legal-content h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
  }

  .legal-content h3 {
    font-size: 1.1rem;
  }

  .legal-content p,
  .legal-content li {
    font-size: 0.95rem;
  }

  footer {
    padding: 2rem 0 0;
    margin-top: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section {
    animation: none;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-section:hover h4::after {
    width: 50px;
  }

  .footer-section li {
    margin-bottom: 0.75rem;
  }

  .footer-section a {
    font-size: 0.9rem;
  }

  .footer-section a::before {
    display: none;
  }

  .footer-section li:hover {
    transform: none;
  }

  .footer-bottom {
    padding: 1rem;
    margin-top: 1rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  ::-webkit-scrollbar {
    width: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

