:root {
      --bg-body: #f5f5f7;
      --bg-white: #ffffff;
      --bg-soft: #f9fafb;
      --border-soft: #e5e7eb;
      --text-main: #111827;
      --text-soft: #4b5563;
      --text-muted: #6b7280;
      --accent: #111827;
      --accent-soft: #e5e7eb;
      --accent-strong: #2563eb;
      --accent-green: #16a34a;
      --accent-gold: #f59e0b;
      --radius-xl: 18px;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
      --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.08);
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg-body);
      color: var(--text-main);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    }

    main.clown-page {
      padding-top: 80px;
      min-height: 100vh;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 16px;
    }

    /* HERO */
    .hero {
      background: linear-gradient(135deg, #ffffff, #f9fafb);
      border-bottom: 1px solid #e5e7eb;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
      gap: 40px;
      align-items: center;
      padding: 40px 0 48px;
    }

    .hero-breadcrumb {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .hero-breadcrumb a {
      color: var(--text-muted);
    }

    .hero-breadcrumb span.sep {
      margin: 0 4px;
      color: #9ca3af;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid var(--border-soft);
      background: #f9fafb;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .hero-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    }

    h1.hero-title {
      font-size: 32px;
      line-height: 1.15;
      margin: 0 0 10px;
      font-weight: 800;
      color: #020617;
    }

    @media (min-width: 768px) {
      h1.hero-title {
        font-size: 38px;
      }
    }

    .hero-title span.sub {
      font-weight: 600;
      color: #4b5563;
    }

    .hero-text {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-soft);
      max-width: 520px;
      margin-bottom: 18px;
    }

    .hero-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 12px;
      font-size: 13px;
      color: var(--text-soft);
      margin-bottom: 18px;
      padding: 0;
      list-style: none;
    }

    .hero-list li {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }

    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 16px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.18s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: #111827;
      color: #f9fafb;
      border-color: #111827;
    }

    .btn-primary:hover {
      background: #020617;
    }

    .btn-secondary {
      background: #f3f4f6;
      color: #111827;
      border-color: #e5e7eb;
    }

    .btn-secondary:hover {
      background: #e5e7eb;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 6px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 11px;
      border: 1px solid var(--border-soft);
      background: #f9fafb;
      color: var(--text-muted);
    }

    .pill strong {
      color: var(--text-main);
    }

    .hero-right {
      position: relative;
    }

    .hero-card {
      background: var(--bg-white);
      border-radius: 24px;
      border: 1px solid var(--border-soft);
      padding: 20px 20px 18px;
      box-shadow: var(--shadow-soft);
    }

    .hero-card h2 {
      font-size: 18px;
      margin: 0 0 4px;
      font-weight: 700;
      color: var(--text-main);
    }

    .hero-card p {
      font-size: 13px;
      color: var(--text-muted);
      margin: 0 0 12px;
    }

    .hero-card ul {
      margin: 0;
      padding-left: 16px;
      font-size: 13px;
      color: var(--text-soft);
    }

    .hero-card ul li + li {
      margin-top: 4px;
    }

    .hero-card-bottom {
      margin-top: 16px;
      padding-top: 12px;
      border-top: 1px dashed #e5e7eb;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .hero-card-bottom a {
      font-size: 12px;
    }

    .hero-image {
      margin-top: 16px;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
      background: #f3f4f6;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* GENEL SECTION */
    section {
      padding: 40px 0;
    }

    section.section-soft {
      background: var(--bg-soft);
      border-top: 1px solid #e5e7eb;
      border-bottom: 1px solid #e5e7eb;
    }

    h2.section-title {
      font-size: 24px;
      font-weight: 800;
      margin: 0 0 8px;
      text-align: center;
      color: #020617;
    }

    .section-subtitle {
      font-size: 14px;
      color: var(--text-soft);
      text-align: center;
      max-width: 640px;
      margin: 0 auto 20px;
    }

    /* PAKETLER */
    .paket-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    @media (max-width: 1024px) {
      .paket-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }
      .paket-grid {
        grid-template-columns: 1fr;
      }
      .hero-buttons {
        flex-direction: column;
      }
      .btn-primary,
      .btn-secondary {
        width: 100%;
      }
    }

    .paket-card {
      background: var(--bg-white);
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-soft);
      padding: 18px 18px 16px;
      box-shadow: var(--shadow-card);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .paket-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .paket-name {
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 2px;
    }

    .paket-meta {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .paket-price {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--text-main);
    }

    .paket-features {
      margin: 0;
      padding-left: 18px;
      font-size: 13px;
      color: var(--text-soft);
    }

    .paket-features li + li {
      margin-top: 4px;
    }

    .paket-note {
      margin-top: 10px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .paket-actions {
      margin-top: 14px;
    }

    .paket-card.popular {
      border-color: var(--accent-strong);
    }

    .paket-card.popular .paket-label {
      color: var(--accent-strong);
    }

    .paket-card.premium {
      border-color: var(--accent-gold);
    }

    .paket-card.premium .paket-label {
      color: var(--accent-gold);
    }

    .paket-btn {
      width: 100%;
      padding: 9px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      border: 1px solid var(--accent-green);
      background: #16a34a;
      color: #f9fafb;
      cursor: pointer;
      transition: all 0.18s ease;
    }

    .paket-btn:hover {
      background: #15803d;
      border-color: #15803d;
    }

    .paket-btn.premium {
      border-color: #f59e0b;
      background: #f59e0b;
    }

    .paket-btn.premium:hover {
      background: #d97706;
      border-color: #d97706;
    }

    .paket-footnote {
      font-size: 11px;
      color: var(--text-muted);
      text-align: center;
      margin-top: 14px;
    }

    /* İLÇE HİZMETLERİ */
    #ilce-hizmetleri {
      background: #ffffff;
    }

    .ilce-buttons {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 8px;
      margin-bottom: 16px;
    }

    @media (max-width: 900px) {
      .ilce-buttons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .ilce-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .ilce-btn {
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid #e5e7eb;
      background: #f9fafb;
      font-size: 12px;
      font-weight: 600;
      color: #374151;
      cursor: pointer;
      text-align: center;
      transition: all 0.18s ease;
    }

    .ilce-btn:hover {
      background: #111827;
      color: #f9fafb;
      border-color: #111827;
    }

    .ilce-btn.active {
      background: #111827;
      color: #f9fafb;
      border-color: #111827;
    }

    .ilce-content {
      display: none;
      background: #f9fafb;
      border-radius: 16px;
      border: 1px solid #e5e7eb;
      padding: 16px 16px 14px;
      font-size: 14px;
      color: var(--text-soft);
    }

    .ilce-content.active {
      display: block;
    }

    .ilce-content h3 {
      font-size: 16px;
      font-weight: 700;
      margin: 0 0 6px;
      color: var(--text-main);
    }

    .ilce-content p + p {
      margin-top: 4px;
    }

    /* GALERİ */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    @media (max-width: 900px) {
      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 480px) {
      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .gallery-item {
      border-radius: 16px;
      overflow: hidden;
      background: #e5e7eb;
      border: 1px solid #e5e7eb;
    }

    .gallery-item img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    /* İÇERİK & BİLGİLENDİRME */
    .two-col {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    @media (max-width: 768px) {
      .two-col {
        grid-template-columns: 1fr;
      }
    }

    .two-col h3 {
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 8px;
    }

    .two-col p {
      font-size: 14px;
      color: var(--text-soft);
      margin: 4px 0;
    }

    /* SSS */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    @media (max-width: 768px) {
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }

    details.faq-item {
      background: var(--bg-white);
      border-radius: 16px;
      padding: 12px 14px;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-card);
    }

    details.faq-item summary {
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
      list-style: none;
    }

    details.faq-item summary::-webkit-details-marker {
      display: none;
    }

    details.faq-item p {
      margin: 8px 0 2px;
      font-size: 13px;
      color: var(--text-soft);
    }

    /* İç link bölümü */
    .inline-links {
      font-size: 13px;
      color: var(--text-soft);
      text-align: center;
    }

    .inline-links a {
      color: var(--accent-strong);
      text-decoration: underline;
      text-decoration-style: dotted;
    }

    .inline-links a:hover {
      text-decoration-style: solid;
    }

    /* FORM */
    .form-wrapper {
      background: var(--bg-white);
      border-radius: 20px;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      padding: 18px 18px 16px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    @media (max-width: 640px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
    }

    .form-group {
      font-size: 13px;
    }

    .form-group label {
      display: block;
      margin-bottom: 4px;
      color: var(--text-soft);
      font-weight: 500;
      font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      border-radius: 10px;
      border: 1px solid #d1d5db;
      padding: 8px 10px;
      font-size: 13px;
      font-family: inherit;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 70px;
    }

    .form-footer {
      margin-top: 8px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
    }

    @media (min-width: 640px) {
      .form-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
    }

    .form-footer label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text-soft);
    }

    .form-footer input[type="checkbox"] {
      margin: 0;
    }

    .form-footer button {
      font-size: 13px;
    }

    .kvkk-link {
      color: var(--accent-strong);
      text-decoration: underline;
      text-decoration-style: dotted;
    }

    .kvkk-link:hover {
      text-decoration-style: solid;
    }
