:root {
  --primary: #2C5F4F;
  --primary-light: #3D7A66;
  --primary-dark: #1E4238;
  --secondary: #D4A574;
  --secondary-light: #E8C9A0;
  --accent: #8B4513;
  --text-dark: #2A2A2A;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --bg-cream: #FAF7F2;
  --bg-white: #FFFFFF;
  --bg-light: #F5F2ED;
  --border: #E8E3D8;
  --shadow: rgba(44, 95, 79, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 6%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo svg {
  width: 40px;
  height: 40px;
}

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

.nav-links a {
  font-weight: 500;
  color: var(--text-medium);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  border-radius: 50px;
}

.lang-btn {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-medium);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn.active {
  background: var(--primary);
  color: var(--bg-white);
}

.lang-divider {
  color: var(--border);
}

.cta-button {
  background: var(--primary);
  color: var(--bg-white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 4rem;
  padding: 6rem 6%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 85vh;
}

.hero-content {
  padding-right: 2rem;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-white);
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-image {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
  border: 15px solid var(--bg-white);
  box-shadow: 0 20px 60px var(--shadow);
  position: relative;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: var(--bg-white);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-card-1 {
  top: 10%;
  left: -5%;
}

.floating-card-2 {
  bottom: 15%;
  right: -5%;
}

.floating-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.3rem;
}

.floating-text h4 {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.floating-text p {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.about-preview {
  background: var(--bg-white);
  padding: 8rem 6%;
  position: relative;
}

.about-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.about-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.about-content p {
  font-size: 1.25rem;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.highlight-text {
  color: var(--primary);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.features-grid {
  background: var(--bg-light);
  padding: 8rem 6%;
}

.features-intro {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
}

.features-intro h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.features-intro p {
  font-size: 1.2rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-white);
  padding: 3rem 2.5rem;
  border-radius: 30px;
  border: 2px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow);
  border-color: var(--primary);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--bg-white);
  font-size: 1.8rem;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  transform: rotate(10deg) scale(1.1);
}

.feature-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-medium);
  line-height: 1.8;
  font-size: 1.05rem;
}

.cta-section {
  background: var(--primary);
  padding: 8rem 6%;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.3;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: var(--primary-dark);
  border-radius: 50%;
  opacity: 0.2;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cta-content p {
  font-size: 1.3rem;
  color: var(--bg-cream);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-white {
  background: var(--bg-white);
  color: var(--primary);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--bg-white);
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: transparent;
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--bg-white);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--bg-white);
  transition: all 0.3s ease;
}

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

footer {
  background: var(--primary-dark);
  color: var(--bg-cream);
  padding: 5rem 6% 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--bg-cream);
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--bg-cream);
  opacity: 0.9;
}

.footer-contact-item i {
  color: var(--secondary);
  margin-top: 0.3rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: var(--bg-cream);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

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

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-legal a {
  color: var(--bg-cream);
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-legal a:hover {
  color: var(--secondary);
}

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 8rem 6% 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.2;
}

.page-header h1 {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 1.4rem;
  color: var(--bg-cream);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.page-content {
  padding: 6rem 6%;
  max-width: 1200px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 5rem;
}

.content-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.content-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

.content-section p {
  font-size: 1.15rem;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.content-section ul {
  list-style: none;
  margin: 2rem 0;
}

.content-section ul li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
  font-size: 1.1rem;
}

.content-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 4rem 0;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-light);
  border-radius: 30px;
  border: 2px solid var(--border);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-medium);
  font-weight: 600;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 4rem 0;
}

.step-card {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 30px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 5px 30px var(--shadow);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  margin-top: 0;
}

.step-card p {
  color: var(--text-medium);
  line-height: 1.8;
}

.image-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin: 5rem 0;
}

.image-content-split img {
  border-radius: 30px;
  box-shadow: 0 20px 60px var(--shadow);
}

.contact-section {
  padding: 6rem 6%;
  background: var(--bg-light);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.contact-info p {
  font-size: 1.2rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 20px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: var(--primary);
  transform: translateX(10px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item-content h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-item-content p {
  color: var(--text-medium);
  margin: 0;
  font-size: 1.05rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 10px 50px var(--shadow);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid var(--border);
  border-radius: 15px;
  font-family: 'Onest', sans-serif;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  background: var(--bg-cream);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0;
}

.checkbox-group input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin-top: 0.2rem;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
  cursor: pointer;
  margin: 0;
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: 1.3rem;
  background: var(--primary);
  color: var(--bg-white);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Onest', sans-serif;
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow);
}

.map-container {
  margin-top: 5rem;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 50px var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.thanks-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 6rem 6%;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem;
  color: var(--bg-white);
  font-size: 3rem;
}

.thanks-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.thanks-content p {
  font-size: 1.3rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 6%;
}

.legal-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.legal-date {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.legal-content ul {
  list-style: none;
  margin: 2rem 0;
}

.legal-content ul li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  padding: 2rem 6%;
  box-shadow: 0 -5px 30px var(--shadow);
  z-index: 10000;
  display: none;
  border-top: 3px solid var(--primary);
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  font-family: 'Onest', sans-serif;
  font-size: 1rem;
}

.cookie-accept {
  background: var(--primary);
  color: var(--bg-white);
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-decline {
  background: transparent;
  color: var(--primary);
}

.cookie-decline:hover {
  background: var(--bg-light);
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 6%;
    gap: 3rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .circle-image {
    width: 400px;
    height: 400px;
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .image-content-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    box-shadow: -5px 0 30px var(--shadow);
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links .cta-button {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 3rem 6%;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .circle-image {
    width: 300px;
    height: 300px;
    border: 10px solid var(--bg-white);
  }

  .floating-card {
    padding: 1rem 1.5rem;
  }

  .floating-card-1 {
    top: 5%;
    left: -10%;
  }

  .floating-card-2 {
    bottom: 5%;
    right: -10%;
  }

  .about-preview,
  .features-grid,
  .cta-section {
    padding: 4rem 6%;
  }

  .about-content h2,
  .features-intro h2 {
    font-size: 2.5rem;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-content h2 {
    font-size: 2.8rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-white,
  .btn-outline-white {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }

  .page-header {
    padding: 5rem 6% 4rem;
  }

  .page-header h1 {
    font-size: 3rem;
  }

  .page-header p {
    font-size: 1.1rem;
  }

  .page-content {
    padding: 3rem 6%;
  }

  .content-section h2 {
    font-size: 2.2rem;
  }

  .content-section h3 {
    font-size: 1.6rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .thanks-content h1 {
    font-size: 3rem;
  }

  .legal-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .circle-image {
    width: 250px;
    height: 250px;
  }

  .floating-card {
    display: none;
  }

  .about-content h2,
  .features-intro h2 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }
}