:root {
  --primary: #FF3366;
  --primary-dark: #E62958;
  --secondary: #FFD93D;
  --accent: #6BCF7F;
  --dark: #1A1A2E;
  --dark-light: #2D2D44;
  --light: #F8F9FA;
  --white: #FFFFFF;
  --border: #1A1A2E;
  --shadow-offset: 6px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 3px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--border);
}

.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--border);
}

.btn:active {
  transform: translate(var(--shadow-offset), var(--shadow-offset));
  box-shadow: 0 0 0 var(--border);
}

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

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

.btn-secondary {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--dark);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--dark);
}

.header {
  background: var(--white);
  border-bottom: 4px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
}

.logo-link:hover {
  color: var(--primary);
}

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

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.nav a.active {
  background: var(--dark);
  color: var(--white);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 3px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.lang-btn {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 4px 8px;
  transition: var(--transition);
}

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

.lang-btn.active {
  color: var(--primary);
  background: var(--light);
  border-radius: var(--radius-sm);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-content .highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: var(--dark-light);
}

.hero-visual {
  position: relative;
  height: 600px;
  border: 4px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--border);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--dark-light);
}

.about-preview {
  background: var(--light);
  border: 4px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--border);
  position: relative;
}

.about-preview::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  z-index: 0;
}

.about-preview-content {
  position: relative;
  z-index: 1;
}

.about-preview h2 {
  margin-bottom: 24px;
}

.about-preview p {
  font-size: 1.125rem;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: var(--transition);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--border);
}

.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: calc(var(--shadow-offset) + 3px) calc(var(--shadow-offset) + 3px) 0 var(--border);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border: 3px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 24px;
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--secondary);
  color: var(--dark);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--accent);
  color: var(--dark);
}

.feature-card h3 {
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--dark-light);
  margin-bottom: 0;
}

.faq-section {
  background: var(--light);
  border-top: 4px solid var(--border);
  border-bottom: 4px solid var(--border);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--border);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light);
}

.faq-icon {
  font-size: 20px;
  transition: var(--transition);
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--dark-light);
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.team-card {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--border);
}

.team-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: calc(var(--shadow-offset) + 3px) calc(var(--shadow-offset) + 3px) 0 var(--border);
}

.team-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-bottom: 4px solid var(--border);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.team-info {
  padding: 24px;
}

.team-info h3 {
  margin-bottom: 8px;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-info p {
  color: var(--dark-light);
  font-size: 15px;
  margin-bottom: 0;
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.expertise-item {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: var(--transition);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--border);
}

.expertise-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--border);
}

.expertise-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border: 3px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.expertise-item:nth-child(2) .expertise-number {
  background: var(--secondary);
  color: var(--dark);
}

.expertise-item:nth-child(3) .expertise-number {
  background: var(--accent);
  color: var(--dark);
}

.expertise-item:nth-child(4) .expertise-number {
  background: var(--dark);
  color: var(--white);
}

.tools-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.tools-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.tools-section .section-header h2,
.tools-section .section-header p {
  color: var(--white);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.tool-card {
  background: var(--white);
  border: 4px solid var(--dark);
  border-radius: var(--radius-md);
  padding: 32px;
  color: var(--dark);
  transition: var(--transition);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.tool-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.2);
}

.tool-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--primary);
}

.tool-card h3 {
  margin-bottom: 12px;
}

.tool-card p {
  color: var(--dark-light);
  margin-bottom: 0;
  font-size: 15px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 1.125rem;
  color: var(--dark-light);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border: 3px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}

.contact-item:nth-child(2) .contact-icon {
  background: var(--secondary);
  color: var(--dark);
}

.contact-item:nth-child(3) .contact-icon {
  background: var(--accent);
  color: var(--dark);
}

.contact-text h4 {
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark-light);
}

.contact-text a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-text a:hover {
  color: var(--primary);
}

.form-card {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--border);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 3px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  transition: var(--transition);
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 4px 4px 0 var(--light);
}

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

.form-checkbox-group {
  display: flex;
  align-items: start;
  gap: 12px;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  border: 3px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-checkbox-label {
  font-size: 14px;
  color: var(--dark-light);
  line-height: 1.6;
}

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

.form-submit {
  width: 100%;
}

.map-container {
  margin-top: 60px;
  border: 4px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--border);
}

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

.thanks-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 20px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--accent);
  border: 4px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--dark);
  margin: 0 auto 32px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--border);
}

.thanks-content h1 {
  margin-bottom: 16px;
}

.thanks-content p {
  font-size: 1.125rem;
  color: var(--dark-light);
  margin-bottom: 32px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h1 {
  margin-bottom: 8px;
}

.legal-date {
  color: var(--dark-light);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--dark-light);
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--dark-light);
}

.footer {
  background: var(--dark);
  color: var(--white);
  border-top: 4px solid var(--border);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-section h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 24px;
  border-top: 4px solid var(--primary);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border: 2px solid var(--white);
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--white);
}

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

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

.cookie-btn-accept:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

@media (max-width: 968px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-wrapper {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 4px solid var(--border);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-wrapper.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav a {
    width: 100%;
    padding: 16px;
    text-align: center;
    border-bottom: 2px solid var(--light);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
    min-height: auto;
  }

  .hero-visual {
    height: 400px;
  }

  .section {
    padding: 60px 0;
  }

  .about-preview {
    padding: 40px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .expertise-list {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .form-card {
    padding: 24px;
  }

  .hero-visual {
    height: 300px;
  }
}