:root {
  --primary: #2D5F5D;
  --secondary: #E8956C;
  --accent: #F4D06F;
  --dark: #1A3A38;
  --text: #2A2A2A;
  --text-light: #5A5A5A;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
  
  --shadow-sm: 0 2px 8px rgba(45, 95, 93, 0.08), 0 1px 3px rgba(45, 95, 93, 0.06);
  --shadow-md: 0 4px 16px rgba(45, 95, 93, 0.12), 0 2px 6px rgba(45, 95, 93, 0.08);
  --shadow-lg: 0 12px 32px rgba(45, 95, 93, 0.16), 0 4px 12px rgba(45, 95, 93, 0.1);
  --shadow-xl: 0 20px 48px rgba(45, 95, 93, 0.2), 0 8px 20px rgba(45, 95, 93, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 100px;
  
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 4vw, 4rem);
  --space-2xl: clamp(3rem, 6vw, 6rem);
  --space-3xl: clamp(4rem, 8vw, 8rem);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-sm);
}

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

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

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

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

.container-narrow {
  max-width: 900px;
}

button, .btn {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: #D67F56;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-md);
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--primary);
}

.logo svg {
  width: clamp(32px, 5vw, 42px);
  height: clamp(32px, 5vw, 42px);
}

nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

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

.nav-links a {
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.5rem 0;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  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;
  margin-left: var(--space-md);
  padding-left: var(--space-md);
  border-left: 2px solid var(--bg-light);
}

.lang-btn {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hero {
  margin-top: 80px;
  position: relative;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-cutout {
  position: relative;
  padding: var(--space-3xl) 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  background: var(--primary);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-text p {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-testimonial {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: var(--space-lg);
  font-size: 5rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.hero-testimonial p {
  font-style: italic;
  color: var(--text);
  margin-bottom: var(--space-sm);
  font-size: 1.0625rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9375rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--secondary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.cutout-section {
  position: relative;
  background: var(--bg-light);
}

.cutout-reveal {
  position: relative;
  clip-path: circle(70% at 30% 50%);
  background: var(--white);
  padding: var(--space-3xl) 0;
}

.cutout-reveal > .container {
  position: relative;
  z-index: 2;
}

.cutout-reverse {
  clip-path: circle(70% at 70% 50%);
}

.quad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.quad-item {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.quad-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.quad-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
}

.quad-item h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.workflow-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.workflow-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.workflow-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  z-index: 0;
}

.workflow-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step-number {
  width: 100px;
  height: 100px;
  background: var(--white);
  border: 4px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.workflow-step:hover .step-number {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.workflow-step h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.workflow-step p {
  font-size: 0.9375rem;
}

.gradient-transition {
  height: 200px;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.image-cutout-section {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--primary);
}

.image-cutout-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.cutout-image-container {
  position: relative;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.cutout-image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cutout-image-container:hover img {
  transform: scale(1.05);
}

.cutout-content {
  color: var(--white);
}

.cutout-content h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cutout-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  margin-top: var(--space-lg);
}

.feature-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

.resource-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.resource-content {
  padding: var(--space-lg);
}

.resource-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.resource-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.375rem;
}

.resource-card p {
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
}

.resource-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.resource-link:hover {
  gap: 0.875rem;
}

.contact-section {
  background: var(--bg-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.contact-info {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info h3 {
  margin-bottom: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-details p {
  margin: 0;
  color: var(--text-light);
}

.contact-details a {
  color: var(--primary);
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--secondary);
}

.contact-form-container {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: clamp(0.875rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.25rem);
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: all 0.3s ease;
  background: var(--white);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 95, 93, 0.1);
}

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

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

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

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

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

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

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

.thanks-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.thanks-content {
  max-width: 600px;
  padding: var(--space-xl);
}

.thanks-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3.5rem;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-xl);
}

.legal-section {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.legal-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

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

.legal-content li {
  margin-bottom: var(--space-sm);
  color: var(--text-light);
}

.last-updated {
  background: var(--bg-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
  font-weight: 600;
  color: var(--primary);
}

footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-about h3 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  padding: var(--space-lg);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  margin: 0;
  color: var(--text);
  font-size: 0.9375rem;
}

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

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

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

@media (max-width: 1024px) {
  .header-container {
    padding: var(--space-md);
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  nav.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    padding: 100px var(--space-lg) var(--space-lg);
    gap: var(--space-md);
    z-index: 999;
  }
  
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .quad-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .workflow-steps {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .workflow-steps::before {
    display: none;
  }
  
  .image-cutout-wrapper {
    grid-template-columns: 1fr;
  }
  
  .cutout-image-container {
    clip-path: none;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .workflow-step {
    text-align: left;
  }
  
  .step-number {
    margin: 0 0 var(--space-md) 0;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

.cutout-circle-left {
  clip-path: circle(65% at 25% 50%);
}

.cutout-circle-right {
  clip-path: circle(65% at 75% 50%);
}

.cutout-wave {
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.layered-bg {
  position: relative;
  background: var(--bg-light);
}

.layered-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 95, 93, 0.03) 0%, transparent 100%);
  pointer-events: none;
}