@import url('https://api.fontshare.com/v2/css?f[]=clash-display@600,700&f[]=satoshi@400,500,700&display=swap');

:root {
  --primary: #0066FF;
  --primary-dark: #0052CC;
  --accent: #FFD600;
  --accent-dark: #E6C200;
  --text: #1A1A1A;
  --text-light: #4A4A4A;
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --border: #1A1A1A;
  --shadow: rgba(0, 0, 0, 0.15);
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--text-light);
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  border: 3px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Satoshi', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--border);
}

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

.btn-accent {
  background: var(--accent);
  color: var(--text);
  box-shadow: 6px 6px 0 var(--border);
}

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

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 3px solid var(--border);
}

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

header {
  background: var(--white);
  border-bottom: 4px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
}

.logo {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
  padding: 0.5rem 0;
  position: relative;
}

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 3px solid var(--border);
  padding: 0.25rem 0.75rem;
  background: var(--bg);
}

.lang-btn {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

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

.lang-btn.active {
  color: var(--text);
}

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

.mobile-menu-btn {
  display: none;
  background: var(--text);
  border: 3px solid var(--border);
  color: var(--white);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: var(--space-md);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.mobile-close {
  background: var(--text);
  border: 3px solid var(--border);
  color: var(--white);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mobile-nav-links a {
  font-size: 1.5rem;
  font-weight: 700;
  padding: var(--space-sm);
  border: 3px solid var(--border);
  display: block;
  background: var(--bg);
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(10px);
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-bottom: 4px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, var(--bg) 2px, var(--bg) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, var(--bg) 2px, var(--bg) 4px);
  opacity: 0.5;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

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

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.2em;
  left: 0;
  right: 0;
  height: 0.3em;
  background: var(--accent);
  z-index: -1;
  transform: skewY(-2deg);
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: var(--space-lg);
  max-width: 700px;
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border: 4px solid var(--border);
  padding: var(--space-lg);
  position: relative;
  transition: all 0.3s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: var(--primary);
  z-index: -1;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translate(4px, 4px);
}

.feature-card:hover::after {
  top: 4px;
  left: 4px;
  right: -4px;
  bottom: -4px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border: 4px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background: var(--white);
  border: 4px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.team-member::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: var(--accent);
  z-index: -1;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translate(4px, 4px);
}

.team-member:hover::after {
  top: 4px;
  left: 4px;
  right: -4px;
  bottom: -4px;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 4px solid var(--border);
}

.team-info {
  padding: var(--space-md);
}

.team-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.process-section {
  background: var(--primary);
  color: var(--white);
  border-top: 4px solid var(--border);
  border-bottom: 4px solid var(--border);
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-section p {
  color: rgba(255, 255, 255, 0.9);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.process-step {
  background: var(--white);
  color: var(--text);
  border: 4px solid var(--border);
  padding: var(--space-lg);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: var(--space-md);
  width: 50px;
  height: 50px;
  background: var(--accent);
  border: 4px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.process-step h3 {
  color: var(--text);
  margin-top: var(--space-md);
}

.process-step p {
  color: var(--text-light);
}

.cta-section {
  background: var(--accent);
  border-top: 4px solid var(--border);
  border-bottom: 4px solid var(--border);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: var(--space-md);
}

.testimonial-footer {
  background: var(--bg);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 4px solid var(--border);
}

.testimonial-content {
  max-width: 900px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.testimonial-quote {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-md);
  line-height: 1.4;
  position: relative;
  padding: var(--space-lg);
  background: var(--white);
  border: 4px solid var(--border);
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  position: absolute;
  top: 0;
  left: var(--space-md);
  line-height: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text);
  font-size: 1.125rem;
}

.testimonial-role {
  color: var(--text-light);
}

footer {
  background: var(--white);
  border-top: 4px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
}

.footer-section h3 {
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--space-xs);
}

.footer-section a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-item i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 4px solid var(--border);
  padding: var(--space-md) 0;
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

.form-section {
  background: var(--white);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg);
  border: 4px solid var(--border);
  padding: var(--space-lg);
  position: relative;
}

.form-container::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: var(--primary);
  z-index: -1;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 3px solid var(--border);
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  background: var(--white);
  transition: all 0.3s ease;
}

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

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

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

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.map-container {
  margin-top: var(--space-lg);
  border: 4px solid var(--border);
  height: 400px;
  position: relative;
}

.map-container::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: var(--accent);
  z-index: -1;
}

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 4px solid var(--border);
  padding: var(--space-lg);
}

.legal-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.legal-content ul {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.legal-content li {
  margin-bottom: var(--space-xs);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 4px solid var(--border);
  padding: var(--space-md);
  z-index: 3000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px var(--shadow);
}

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.thanks-message {
  text-align: center;
  padding: var(--space-xl) 0;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  background: var(--accent);
  border: 4px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto var(--space-lg);
  color: var(--text);
}

.image-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.image-feature img {
  width: 100%;
  border: 4px solid var(--border);
  position: relative;
}

.image-wrapper {
  position: relative;
}

.image-wrapper::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: var(--primary);
  z-index: -1;
}

.image-feature:nth-child(even) {
  direction: rtl;
}

.image-feature:nth-child(even) > * {
  direction: ltr;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.stat-card {
  background: var(--white);
  border: 4px solid var(--border);
  padding: var(--space-md);
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

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

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }

  .nav-links {
    display: none;
  }

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

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 70vh;
    padding: var(--space-lg) 0;
  }

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

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

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

  .image-feature {
    grid-template-columns: 1fr;
  }

  .image-feature:nth-child(even) {
    direction: ltr;
  }

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

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

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

  .cookie-buttons .btn {
    width: 100%;
  }

  .form-container::after {
    display: none;
  }

  .feature-card::after,
  .team-member::after,
  .image-wrapper::after,
  .map-container::after {
    display: none;
  }
}