:root {
  --primary: #1a5f2a;
  --primary-dark: #134420;
  --secondary: #f4a523;
  --accent: #2d8a3e;
  --dark: #1c1c1c;
  --light: #f9f9f7;
  --gray: #6b6b6b;
  --gray-light: #e8e8e6;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

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

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

.btn-secondary:hover {
  background: #e5961a;
  transform: translateY(-2px);
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo span {
  color: var(--secondary);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

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

.nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px;
  transform: translateY(-120%);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.nav.active {
  transform: translateY(0);
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark);
  padding: 10px 0;
  display: block;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

/* Split Section */
.split-section {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.split-content, .split-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
}

.split-content {
  background: var(--white);
}

.split-visual {
  background: var(--gray-light);
  min-height: 50vh;
  position: relative;
  overflow: hidden;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.split-inner {
  max-width: 540px;
}

.split-inner h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}

.split-inner h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.split-inner p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* Hero */
.hero {
  padding-top: 70px;
}

.hero .split-content {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.hero .split-inner h1, .hero .split-inner p {
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Services */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

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

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-header p {
  color: var(--gray);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  height: 200px;
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

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

.service-body {
  padding: 24px;
}

.service-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-body p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.price-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.price-unit {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Features */
.features-section {
  padding: 80px 0;
  background: var(--dark);
}

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

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
}

.feature-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--dark);
}

.feature-content h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: var(--light);
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gray-light);
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  color: var(--dark);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-secondary {
  font-size: 1.1rem;
  padding: 16px 40px;
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background: var(--white);
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--light);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
}

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

/* About Page */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 60px 0;
}

.content-block {
  max-width: 800px;
  margin: 0 auto 40px;
}

.content-block h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.content-block p {
  color: var(--gray);
  margin-bottom: 16px;
}

/* Contact */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.contact-details h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.contact-details p, .contact-details a {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--dark);
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--transition);
}

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

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

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

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  border: none;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--secondary);
  color: var(--dark);
}

.cookie-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
}

.sticky-cta .btn {
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
}

/* Thanks Page */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  text-align: center;
  background: var(--light);
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.thanks-content h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.thanks-content p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

/* Legal Pages */
.legal-content {
  padding: 60px 0;
}

.legal-content .container {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 32px 0 16px;
  color: var(--dark);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 12px;
  color: var(--dark);
}

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

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--gray);
}

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

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background: var(--white);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  flex: 1;
  min-width: 140px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: var(--light);
}

.process-list {
  max-width: 700px;
  margin: 0 auto;
}

.process-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-light);
}

.process-item:last-child {
  border-bottom: none;
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.process-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.process-content p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Media Queries */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    transform: none;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-list {
    flex-direction: row;
    gap: 32px;
  }

  .nav-link {
    padding: 0;
  }

  .split-section {
    flex-direction: row;
    min-height: 80vh;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-content, .split-visual {
    flex: 1;
    min-height: auto;
  }

  .split-visual {
    min-height: unset;
  }

  .split-inner h1 {
    font-size: 2.8rem;
  }

  .split-inner h2 {
    font-size: 2.2rem;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1;
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .features-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1;
    min-width: calc(50% - 12px);
  }

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

  .footer-col {
    flex: 1;
  }

  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .form-wrapper {
    padding: 50px;
  }
}

@media (min-width: 1024px) {
  .split-content, .split-visual {
    padding: 80px 60px;
  }

  .split-inner h1 {
    font-size: 3.2rem;
  }

  .service-card {
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }

  .section-header h2 {
    font-size: 2.4rem;
  }
}
