:root {
  --primary-color: #2C3E50;
  --secondary-color: #D35400;
  --bg-color: #FCF9F5;
  --text-color: #1C2833;
  --card-bg: #FFFFFF;
  --border-color: #EAE5DF;
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --title-family: 'Playfair Display', serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--secondary-color);
  color: #fff;
  padding: 10px 20px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

header {
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--title-family);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.logo img {
  width: 40px;
  height: 40px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a:focus {
  color: var(--secondary-color);
  outline: 2px solid var(--secondary-color);
  outline-offset: 4px;
}

.burger {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-color);
  aria-label: "Menü öffnen";
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}

.hero-text h1 {
  font-family: var(--title-family);
  font-size: 48px;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover, .btn:focus {
  background-color: #A04000;
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 60px 0;
  text-align: center;
}

.stat-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.stat-number {
  font-family: var(--title-family);
  font-size: 36px;
  color: var(--secondary-color);
  font-weight: bold;
}

.accent-pattern {
  background-image: radial-gradient(var(--secondary-color) 0.75px, transparent 0.75px), radial-gradient(var(--secondary-color) 0.75px, var(--bg-color) 0.75px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.1;
  height: 60px;
  margin: 40px 0;
}

.section-title {
  font-family: var(--title-family);
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.step-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  position: relative;
}

.step-num {
  font-size: 40px;
  color: var(--border-color);
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 35px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 10px 30px rgba(211,84,0,0.1);
  transform: scale(1.03);
}

.price-tag {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 20px 0;
}

.form-section {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 45px;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-family);
  font-size: 16px;
}

.form-group input:focus, .form-group textarea:focus {
  outline: 2px solid var(--secondary-color);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.form-checkbox input {
  margin-top: 5px;
  width: auto;
}

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

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 10px;
}

.trust-layer {
  background-color: #F0EDE8;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
  font-size: 15px;
  border: 1px solid var(--border-color);
}

footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 50px 20px;
  font-size: 16px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 30px;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
  z-index: 9999;
  padding: 20px;
  display: none;
}

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

.cookie-btns {
  display: flex;
  gap: 15px;
}

.cookie-btn-alt {
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
  }
  .nav-links.active { display: flex; }
  .burger { display: block; }
  .cookie-content { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}