/* 
==========================================================================
STYLES.CSS
==========================================================================
Hoja de estilos para Auditoría Financiera Profesional
Autor: Senior Full-Stack PHP Developer
Fecha: <?php echo date('d/m/Y'); ?>
=========================================================================== 
*/

/* ==========================================================================
   VARIABLES Y RESET
   ========================================================================== */

:root {
  /* Paleta de colores */
  --color-primary: #00bfa6; /* Birdturquesa */
  --color-accent: #ff6f3c; /* Naranja */
  --color-heading: #002b5c; /* Azul oscuro */
  --color-text: #333333; /* Gris oscuro */
  --color-light: #ffffff; /* Blanco */
  --color-gray: #f5f5f5; /* Gris claro */
  --color-gray-dark: #666666; /* Gris medio */
  --gradient-primary: linear-gradient(45deg, #ff6f3c, #ffb400); /* Gradiente naranja */
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-light);
  overflow-x: hidden;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--color-accent);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-heading);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   UTILIDADES
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 1.5rem 3rem;
  background: var(--gradient-primary);
  color: var(--color-light);
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 111, 60, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-heading);
  transition: width 0.5s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-primary:hover {
  box-shadow: 0 6px 12px rgba(255, 111, 60, 0.5);
  color: var(--color-light);
}

.btn-secondary {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-light);
}

.btn-nav {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--color-light);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(255, 111, 60, 0.3);
}

.btn-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 111, 60, 0.4);
  color: var(--color-light);
}

/* ==========================================================================
   HEADER Y NAVEGACIÓN
   ========================================================================== */

.main-header {
  background-color: var(--color-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}

.logo a {
  display: block;
}

.main-nav {
  position: relative;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-accent);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
  top: 0px;
}

.menu-icon span:nth-child(2) {
  top: 8px;
}

.menu-icon span:nth-child(3) {
  top: 16px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 2.5rem;
}

.nav-menu a {
  color: var(--color-heading);
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background-color: var(--color-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 2rem;
  z-index: 1000;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.cookie-content {
  text-align: center;
}

.cookie-content p {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.btn-cookies {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--color-light);
  border: none;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(255, 111, 60, 0.3);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  background-color: var(--color-primary);
  padding: 14rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 45%;
  height: 70%;
  background: rgba(255, 111, 60, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphing 15s infinite alternate;
}

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  color: var(--color-light);
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content h1 {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: var(--color-light);
}

.hero-content h2 {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-content p {
  margin-bottom: 3rem;
  font-size: 1.8rem;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  animation: fadeInUp 1s ease-out 0.5s both;
  position: relative;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image img {
  border-radius: 10px;
  box-shadow: 10px 10px 0 var(--color-accent);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: rotate(0deg);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about {
  padding: 8rem 0;
}

.about h2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.about h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-text {
  flex: 1;
}

.about-text p {
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: 10px;
  box-shadow: -10px 10px 0 var(--color-primary);
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */

.benefits {
  padding: 8rem 0;
  background-color: var(--color-gray);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40%;
  height: 60%;
  background: rgba(0, 191, 166, 0.1);
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  z-index: 0;
}

.benefits h2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.benefits h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 6rem;
  position: relative;
  z-index: 1;
}

.benefit-item {
  background: var(--color-light);
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.benefit-item:hover::before {
  height: 100%;
}

.benefit-icon {
  margin-bottom: 1.5rem;
}

.benefit-icon span {
  font-size: 3.5rem;
  color: var(--color-accent);
}

.benefit-item h3 {
  font-size: 2rem;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
}

.benefit-item p {
  font-size: 1.6rem;
}

.mission {
  background-color: var(--color-primary);
  color: var(--color-light);
  border-radius: 10px;
  padding: 4rem;
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.mission h2 {
  color: var(--color-light);
  margin-bottom: 2rem;
}

.mission h2::after {
  background: var(--color-light);
}

.mission p {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services {
  padding: 8rem 0;
}

.services h2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.services h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 4rem;
}

.service-item {
  background: var(--color-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-item h3 {
  font-size: 2.2rem;
  color: var(--color-heading);
  padding: 2rem 2rem 1rem;
}

.service-item p {
  padding: 0 2rem 2rem;
}

.service-item .btn-secondary {
  margin: 0 2rem 2rem;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */

.process {
  padding: 8rem 0;
  background-color: var(--color-heading);
  color: var(--color-light);
}

.process h2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-light);
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.process h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.process-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 3rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  z-index: 0;
}

.process-step {
  width: 18%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 111, 60, 0.5);
}

.process-step h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.process-step p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials {
  padding: 8rem 0;
  background-color: var(--color-gray);
}

.testimonials h2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.testimonial {
  background: var(--color-light);
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-content::before {
  content: """;
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 6rem;
  color: rgba(0, 191, 166, 0.2);
  font-family: serif;
  line-height: 1;
}

.testimonial-content p {
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 1.8rem;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.testimonial-author p {
  font-size: 1.4rem;
  color: var(--color-gray-dark);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact {
  padding: 8rem 0;
}

.contact h2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.contact h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-form {
  background: var(--color-light);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  z-index: -1;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--color-heading);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(255, 111, 60, 0.1);
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 1rem;
  margin-top: 0.5rem;
}

.form-submit {
  margin-top: 3rem;
  text-align: center;
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  font-size: 2.4rem;
  color: var(--color-heading);
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
}

.contact-map {
  margin-top: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ==========================================================================
   THANK YOU PAGE
   ========================================================================== */

.thank-you {
  padding: 15rem 0;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content h1 {
  font-size: 4rem;
  color: var(--color-heading);
  margin-bottom: 2rem;
}

.success-icon {
  margin-bottom: 3rem;
}

.success-icon span {
  font-size: 8rem;
  color: var(--color-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-content p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

.legal-page {
  padding: 12rem 0 6rem;
}

.legal-page h1 {
  font-size: 3.6rem;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 4rem;
}

.legal-content {
  background: var(--color-light);
  border-radius: 10px;
  padding: 4rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-content p {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 2.4rem;
  color: var(--color-heading);
  margin: 3.5rem 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 2rem;
  color: var(--color-heading);
  margin: 2.5rem 0 1.5rem;
}

.legal-content ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.legal-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  list-style-type: disc;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
  background-color: var(--color-heading);
  color: var(--color-light);
  padding: 6rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about h3,
.footer-contact h3,
.footer-links h3,
.footer-legal h3 {
  color: var(--color-light);
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.footer-about h3::after,
.footer-contact h3::after,
.footer-links h3::after,
.footer-legal h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-accent);
}

.footer-about p {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-list li {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-nav li,
.legal-links li {
  margin-bottom: 1rem;
}

.footer-nav a,
.legal-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.footer-nav a:hover,
.legal-links a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

/* Tablet */
@media (max-width: 992px) {
  html {
    font-size: 58%;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .about-content {
    flex-direction: column-reverse;
    gap: 3rem;
  }
  
  .process-timeline {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    width: 45%;
    margin-bottom: 3rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .menu-icon {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .nav-menu li {
    margin-left: 0;
    margin-bottom: 1.5rem;
    width: 100%;
  }
  
  .nav-menu a {
    display: block;
    width: 100%;
  }
  
  .menu-toggle:checked ~ .nav-menu {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
  
  .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  
  .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .hero-content h1 {
    font-size: 3.8rem;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .about h2,
  .benefits h2,
  .services h2,
  .process h2,
  .testimonials h2,
  .contact h2 {
    font-size: 3rem;
  }
  
  .benefits-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    width: 100%;
  }
  
  .legal-content {
    padding: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  html {
    font-size: 50%;
  }
  
  .hero {
    padding: 12rem 0 6rem;
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
  }
  
  .about,
  .benefits,
  .services,
  .process,
  .testimonials,
  .contact {
    padding: 5rem 0;
  }
  
  .mission {
    padding: 2.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
} 