﻿:root {
  --primary: #0f2d24;
  --primary-light: #163d31;
  --primary-dark: #071712;
  --accent: #c5a880;
  --accent-light: #d6be9b;
  --accent-dark: #aa8c64;
  --text-dark: #1f2937;
  --text-muted: #4b5563;
  --text-light: #fcfbf9;
  --bg-light: #fdfdfc;
  --bg-muted: #f4f3f0;
  --bg-white: #ffffff;
  --success: #15803d;
  --error: #b91c1c;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  font-size: 16px;
  line-height: 1.6;
}

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

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 0.75rem 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--accent);
}

.btn-header {
  background-color: var(--accent);
  color: var(--primary);
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--accent);
}

.btn-header:hover {
  background-color: transparent;
  color: var(--accent);
}

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

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-light);
  transition: var(--transition);
}

.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.15rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  max-width: 650px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--accent);
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.25);
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent);
}

.trust-strip {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.trust-strip-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.trust-strip-items {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.9rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item svg {
  color: var(--accent);
  width: 18px;
  height: 18px;
}

.hero-visual {
  position: relative;
  border: 2px solid var(--accent);
  padding: 10px;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 2px;
}

.benefits {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

.benefit-card {
  background-color: var(--bg-muted);
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-card:hover::before {
  transform: scaleY(1);
}

.benefit-icon {
  margin-bottom: 1.5rem;
  color: var(--accent-dark);
}

.benefit-icon svg {
  width: 48px;
  height: 48px;
}

.benefit-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.how-it-works {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.step-card {
  position: relative;
}

.step-number {
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.services {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--bg-white);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.service-info {
  padding: 2rem;
}

.service-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.testimonials {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

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

.testimonial-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.02);
}

.rating {
  color: var(--accent);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: var(--primary);
}

.author-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about {
  padding: 6rem 0;
  background-color: var(--bg-white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  border: 2px solid var(--accent);
  padding: 10px;
}

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

.about-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.faq {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(197, 168, 128, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-dark);
  line-height: 1;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
  background-color: var(--bg-light);
}

.faq-answer p {
  padding: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

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

.lead-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
}

.lead-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 3.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.lead-wrapper h2 {
  color: var(--text-light);
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 1rem;
}

.lead-wrapper p {
  text-align: center;
  color: #d1d5db;
  margin-bottom: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.9rem;
  color: #e5e7eb;
  font-weight: 500;
}

.form-group input {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  background-color: rgba(255,255,255,0.05);
  color: var(--text-light);
  font-family: inherit;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.25);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: var(--accent);
}

.form-checkbox label {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.4;
}

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

.btn-submit {
  width: 100%;
  background-color: var(--accent);
  color: var(--primary);
  border: none;
  padding: 1.1rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background-color: var(--accent-light);
}

.form-success-container {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem auto;
  color: var(--accent);
}

.form-success-container h3 {
  color: var(--text-light);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.form-success-container p {
  color: #d1d5db;
}

footer {
  background-color: var(--primary-dark);
  color: #9ca3af;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1.25rem;
}

.footer-links h3, .footer-contact h3 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-family: Georgia, serif;
}

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

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

.footer-links ul li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-contact a {
  color: var(--accent);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-operator-notice {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #6b7280;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.back-to-top {
  color: var(--accent);
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 1.5rem 0;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
  border-top: 1px solid rgba(197, 168, 128, 0.3);
}

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

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

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

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

.btn-cookie-accept {
  background-color: var(--accent);
  color: var(--primary);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background-color: var(--accent-light);
}

.btn-cookie-decline {
  background-color: transparent;
  color: #9ca3af;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-decline:hover {
  color: var(--text-light);
  border-color: var(--text-light);
}

.legal-page {
  padding: 4rem 0 6rem 0;
  background-color: var(--bg-light);
}

.legal-page-body header {
  background-color: var(--primary-dark);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-white);
  padding: 3.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.05);
}

.legal-content h1 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 0;
  }
  .menu-toggle {
    display: flex;
  }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  nav.active {
    display: flex;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .section-header h2 {
    font-size: 1.85rem;
  }
  .lead-wrapper {
    padding: 2rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .cookie-actions {
    width: 100%;
  }
  .btn-cookie-accept, .btn-cookie-decline {
    flex: 1;
    text-align: center;
  }
}
