@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@500;600;700&display=swap');

:root {
  --color-bg-light:       #F7F9F7;
  --color-bg-card:        #FFFFFF;
  --color-bg-section:     #EFF3EF;
  --color-accent-green:   #1F6F54;
  --color-accent-green-dark: #14503B;
  --color-accent-sun:     #E3A93B;
  --color-text-primary:   #10231C;
  --color-text-secondary: #4C5C55;
  --color-text-muted:     #8B978F;
  --color-border:         #DDE6E0;
  --color-cta:            #1F6F54;
  --color-cta-hover:      #14503B;
  --color-success:        #2E8B57;
  --max-width:            1200px;
  --transition:           all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius:        12px;
  --shadow:               0 8px 30px rgba(16, 35, 28, 0.04);
  --shadow-hover:         0 16px 40px rgba(16, 35, 28, 0.08);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg-light);
  color: var(--color-text-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
}

p {
  font-size: 1rem;
}

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

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

/* Helper Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.my-4 { margin-top: 2rem; margin-bottom: 2rem; }
.py-5 { padding-top: 4rem; padding-bottom: 4rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-solid {
  background-color: var(--color-cta);
  color: var(--color-bg-card);
}

.btn-solid:hover {
  background-color: var(--color-cta-hover);
  color: var(--color-bg-card);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 111, 84, 0.2);
}

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

.btn-outline:hover {
  border-color: var(--color-text-primary);
  background-color: rgba(16, 35, 28, 0.02);
  transform: translateY(-2px);
}

.btn-buy {
  background-color: var(--color-accent-sun);
  color: var(--color-text-primary);
  border: none;
}

.btn-buy:hover {
  background-color: #d19730;
  color: var(--color-text-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 169, 59, 0.2);
}

/* Disclosure Bar */
.disclosure-bar {
  background-color: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: 8px 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-bg-light);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
  text-align: center;
  width: 200px;
}

.preloader-logo {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent-green);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
}

.preloader-bar-bg {
  width: 100%;
  height: 3px;
  background-color: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}

.preloader-bar {
  width: 0%;
  height: 100%;
  background-color: var(--color-accent-green);
  animation: fillBar 1.2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

.preloader-text {
  font-size: 12px;
  color: var(--color-text-muted);
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fillBar {
  to { width: 100%; }
}

/* Header & Nav */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(247, 249, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.header-wrapper.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  position: relative;
  padding: 6px 0;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 24px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-title {
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

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

.cookie-buttons button {
  flex: 1;
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  transition: var(--transition);
}

.cookie-accept {
  background-color: var(--color-accent-green);
  color: #fff;
  border: none;
}

.cookie-accept:hover {
  background-color: var(--color-accent-green-dark);
}

.cookie-reject {
  background-color: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

.cookie-reject:hover {
  background-color: var(--color-bg-section);
  border-color: var(--color-text-muted);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 80px 0;
}

.hero-content {
  display: flex;
  flex-direction: flex-start;
  flex-direction: column;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 14px;
  background-color: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-green);
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero-description {
  font-size: 17px;
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  max-width: 580px;
}

.hero-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-price {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.hero-price-sub {
  font-size: 14px;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.trust-item svg {
  color: var(--color-accent-green);
  flex-shrink: 0;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background-color: var(--color-bg-section);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Features Grid */
.features-header {
  max-width: 650px;
  margin: 0 auto 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 36px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-accent-green);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: var(--color-bg-section);
  color: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.feature-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* Gallery Showcase Strip */
.gallery-section {
  background-color: var(--color-bg-section);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1/1;
  background-color: var(--color-bg-card);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-card);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  background-color: var(--color-bg-light);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 14px;
}

.comparison-table td {
  font-size: 14px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .highlight {
  background-color: rgba(31, 111, 84, 0.03);
  font-weight: 500;
  color: var(--color-text-primary);
}

.comparison-table .badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.comparison-table .badge-success {
  background-color: rgba(46, 139, 87, 0.1);
  color: var(--color-success);
}

.comparison-table .badge-muted {
  background-color: var(--color-bg-section);
  color: var(--color-text-muted);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: var(--color-accent-sun);
  margin-bottom: 16px;
  font-size: 18px;
}

.testimonial-text {
  font-size: 14px;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--color-text-secondary);
}

.testimonial-author {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}

.testimonial-location {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* FAQ Accordion */
.faq-container {
  max-width: 760px;
  margin: 40px auto 0;
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  font-size: 16px;
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 600;
  padding-right: 16px;
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-text-primary);
  transition: var(--transition);
}

.faq-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon::before {
  background-color: var(--color-accent-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: rgba(247, 249, 247, 0.5);
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* Call to Action Banner */
.cta-banner {
  background-color: var(--color-accent-green);
  color: #fff;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Footer */
footer {
  background-color: var(--color-text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
  font-size: 13px;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.footer-brand h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 320px;
}

.footer-links h5 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

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

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

.footer-impressum-snippet {
  font-size: 12px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

/* Order Page Layout */
.order-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 40px 0;
}

.order-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  background-color: var(--color-bg-card);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease-in-out;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.thumbnail-btn {
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: var(--color-bg-card);
  transition: var(--transition);
}

.thumbnail-btn.active {
  border-color: var(--color-accent-green);
}

.thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.order-title-wrapper {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 20px;
}

.order-subtitle {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: var(--color-accent-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 6px;
}

.order-info-price {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-top: 10px;
}

.order-info-price span {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 400;
}

.order-description {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.order-cta-box {
  margin-bottom: 30px;
}

.order-cta-box .btn {
  width: 100%;
  margin-bottom: 12px;
}

.trust-note {
  font-size: 12px;
  color: var(--color-success);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.highlights-box {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.highlights-box h4 {
  font-size: 15px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
}

.highlights-list {
  list-style: none;
}

.highlights-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.highlights-list li:last-child {
  border-bottom: none;
}

.highlights-list .label {
  color: var(--color-text-muted);
  font-weight: 500;
}

.highlights-list .value {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* Review Page Layout */
.review-header {
  max-width: 800px;
  margin: 0 auto 32px;
}

.review-meta-info {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.review-category {
  color: var(--color-accent-green);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.review-main-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}

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

.review-layout {
  display: grid;
  grid-template-columns: 2.2fr 0.8fr;
  gap: 48px;
}

.review-content {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.review-content h2 {
  font-size: 24px;
  margin: 40px 0 16px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
}

.review-content p {
  margin-bottom: 20px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.pros-box, .cons-box {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.pros-box h4, .cons-box h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

.pros-box h4 { color: var(--color-success); }
.cons-box h4 { color: #c0392b; }

.pros-cons-list {
  list-style: none;
}

.pros-cons-list li {
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
}

.pros-cons-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.verdict-box {
  background-color: rgba(31, 111, 84, 0.03);
  border: 2px solid var(--color-accent-green);
  border-radius: var(--border-radius);
  padding: 32px;
  margin: 48px 0;
  box-shadow: var(--shadow);
}

.verdict-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.verdict-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-score {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.review-sidebar-card {
  position: sticky;
  top: 100px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.sidebar-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

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

.review-sidebar-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.review-sidebar-card .price {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.review-sidebar-card .btn {
  width: 100%;
}

/* Contact Page Layout */
.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  padding: 40px 0;
}

.contact-form-wrapper {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
  margin-bottom: 8px;
}

.contact-form-wrapper p {
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  background-color: var(--color-bg-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent-green);
  background-color: var(--color-bg-card);
  box-shadow: 0 0 0 3px rgba(31, 111, 84, 0.1);
}

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

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(46, 139, 87, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(46, 139, 87, 0.2);
}

.form-status.error {
  display: block;
  background-color: rgba(192, 57, 43, 0.1);
  color: #c0392b;
  border: 1px solid rgba(192, 57, 43, 0.2);
}

.contact-info-wrapper {
  background-color: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 40px;
  height: fit-content;
}

.contact-info-wrapper h3 {
  font-size: 18px;
  margin-bottom: 24px;
}

.contact-info-block {
  margin-bottom: 30px;
}

.contact-info-block:last-child {
  margin-bottom: 0;
}

.contact-info-block h4 {
  font-size: 14px;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.contact-info-block p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Legal Pages */
.legal-container {
  max-width: 800px;
  margin: 40px auto;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 48px;
  box-shadow: var(--shadow);
}

.legal-container h1 {
  font-size: 28px;
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 20px;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 18px;
  margin: 28px 0 12px;
}

.legal-content p {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 20px;
  font-size: 14px;
}

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

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
  }
  
  .hero-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .order-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .review-layout {
    grid-template-columns: 1fr;
  }

  .review-sidebar-card {
    position: static;
    margin-top: 40px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-card);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
  }

  .nav-toggle {
    display: block;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-form-wrapper {
    padding: 24px;
  }
}
